From 05c967c5a8dae606e82f80d4ef95dcffc6c3f7af Mon Sep 17 00:00:00 2001 From: Avinal Kumar Date: Sat, 30 Mar 2024 13:36:20 +0530 Subject: [PATCH] fix homepage links and update information Signed-off-by: Avinal Kumar rh-pre-commit.version: 2.2.0 rh-pre-commit.check-secrets: ENABLED --- src/Layouts/Home.elm | 7 +++++-- src/Pages/Pages/AboutMe.elm | 2 +- static/resume/resume.json | 11 +++++++---- 3 files changed, 13 insertions(+), 7 deletions(-) diff --git a/src/Layouts/Home.elm b/src/Layouts/Home.elm index d7a694f..05dce98 100644 --- a/src/Layouts/Home.elm +++ b/src/Layouts/Home.elm @@ -3,12 +3,13 @@ module Layouts.Home exposing (Model, Msg, Props, layout) import Components.Footer exposing (iconLinkToCenter) import Effect exposing (Effect) import Html exposing (Html) -import Html.Attributes exposing (class, href) +import Html.Attributes exposing (class, href, target, rel) import Layout exposing (Layout) import Route exposing (Route) import Shared import Utils.Constants exposing (..) import View exposing (View) +import Html.Attributes exposing (target) type alias Props = @@ -74,6 +75,8 @@ view { toContentMsg, model, content } = Html.a [ href link.url , class "underline decoration-cyan-500 hover:decoration-pink-500 inline-flex text-xl p-3" + , target "_blank" + , rel "noopener noreferrer" ] [ Html.text link.text ] in @@ -82,7 +85,7 @@ view { toContentMsg, model, content } = [ Html.section [ class "flex items-center justify-center flex-col h-screen text-gray-400" ] [ Html.header [ class "object-cover object-center p-8" ] content.body , iconLinkToCenter - , Html.div [ class "text-center text-xl p-2" ] [ Html.text "I'm Avinal and I work at Red Hat as an Associate Software Engineer for Hybrid Cloud Engineering." ] + , Html.div [ class "text-center text-xl p-2" ] [ Html.text "Avinal Kumar, Software Engineer II at Red Hat, Open Sourcerer" ] , Html.footer [ class "flex justify-center flex-wrap" ] (List.map footerLinkToCenter Utils.Constants.footerLinks) ] diff --git a/src/Pages/Pages/AboutMe.elm b/src/Pages/Pages/AboutMe.elm index 6171afd..ff08902 100644 --- a/src/Pages/Pages/AboutMe.elm +++ b/src/Pages/Pages/AboutMe.elm @@ -110,7 +110,7 @@ view model = Html.li [ class "mb-10 ml-6" ] [ Html.span [ class "absolute flex items-center justify-center w-6 h-6 bg-pink-600 ring-pink-900 rounded-full -left-3 ring-8" ] [ Html.text <| String.left 1 edu.institution ] - , Html.h3 [ class "flex items-center mb-1 text-2xl font-semibold" ] [ Html.text <| edu.studyType ++ " at " ++ edu.institution ] + , Html.h3 [ class "flex items-center mb-1 text-xl font-semibold" ] [ Html.text <| edu.studyType ++ " at " ++ edu.institution ] , Html.time [ class "block mb-2 text font-normal leading-none text-gray-500", datetime edu.startDate ] [ Html.text <| getFormattedDate edu.startDate False ++ " - " ++ getFormattedDate edu.endDate False ] , Html.p [ class "mb-4 text-base font-normal text-gray-400" ] [ Html.text edu.area ] diff --git a/static/resume/resume.json b/static/resume/resume.json index 2e72bcd..bb43ef6 100644 --- a/static/resume/resume.json +++ b/static/resume/resume.json @@ -10,13 +10,13 @@ "city": "Bengaluru", "countryCode": "IN" }, - "summary": "I am a Software Engineer Associate at Red Hat, specialising in hybrid cloud engineering. I have been involved with Google's Summer of Code and Google Season of Docs programmes as a mentor and contributor to Open Source for many years. For fun, I like to play around with cutting-edge areas of computer science; at the moment, I'm learning about Elm. GNU/Linux and free/open-source software are two of my favourite things" + "summary": "I am a Software Engineer at Red Hat, specialising in hybrid cloud engineering. I have been involved with Google's Summer of Code and Google Season of Docs programmes as a mentor and contributor to Open Source for many years. For fun, I like to play around with cutting-edge areas of computer science; at the moment, I'm learning about Elm. GNU/Linux and free/open-source software are two of my favourite things" }, "work": [ { "name": "Red Hat", "location": "Bengaluru, IN", - "position": "Software Engineer", + "position": "Software Engineer II", "startDate": "2023-10-01", "endDate": "Today", "summary": "Working on Pipeline Service, Tekton Results Maintainer", @@ -28,7 +28,7 @@ "position": "Associate Software Engineer", "startDate": "2022-07-01", "endDate": "2023-09-30", - "summary": "Pipeline Service | Tekton Results" + "summary": "Pipeline Service, Tekton Results" }, { "name": "Red Hat", @@ -98,6 +98,9 @@ }, { "name": "Go" + }, + { + "name": "Elm" } ] -} \ No newline at end of file +}