Skip to content

Commit

Permalink
fix homepage links and update information
Browse files Browse the repository at this point in the history
Signed-off-by: Avinal Kumar <avinal.xlvii@gmail.com>

rh-pre-commit.version: 2.2.0
rh-pre-commit.check-secrets: ENABLED
  • Loading branch information
avinal committed Mar 30, 2024
1 parent d2c0f90 commit 05c967c
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 7 deletions.
7 changes: 5 additions & 2 deletions src/Layouts/Home.elm
Original file line number Diff line number Diff line change
Expand Up @@ -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 =
Expand Down Expand Up @@ -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
Expand All @@ -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)
]
Expand Down
2 changes: 1 addition & 1 deletion src/Pages/Pages/AboutMe.elm
Original file line number Diff line number Diff line change
Expand Up @@ -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 ]
Expand Down
11 changes: 7 additions & 4 deletions static/resume/resume.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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",
Expand Down Expand Up @@ -98,6 +98,9 @@
},
{
"name": "Go"
},
{
"name": "Elm"
}
]
}
}

0 comments on commit 05c967c

Please sign in to comment.