Skip to content

Commit

Permalink
feat: add banner to about
Browse files Browse the repository at this point in the history
  • Loading branch information
WayneGoosen committed Sep 22, 2024
1 parent b0559a7 commit 96c3c2d
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 1 deletion.
Binary file added src/assets/images/letsshipmorebanner.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/images/pp-with-color.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
16 changes: 15 additions & 1 deletion src/pages/about/index.astro
Original file line number Diff line number Diff line change
@@ -1,14 +1,28 @@
---
import BaseLayout from '@/layouts/BaseLayout'
import TitlePage from '@/components/TitlePage'
import { Image } from 'astro:assets'
import aboutBannerImage from '../../assets/images/letsshipmorebanner.png'
import profilePicture from '../../assets/images/pp-with-color.png'
---

<BaseLayout
title='About'
description='Brief intro of Wayne Goosen, author of this blog. Explore my passion for software/DevOps and how I aim to inform through personal insights and experiences.'
>
<TitlePage title='About' />
<h2 class='text-3xl font-bold first-letter:uppercase'>Howzit, I'm Wayne! 👋</h2>
<div class='relative'>
<Image src={aboutBannerImage} alt="Let's ship more banner." class='w-full' />
<Image
src={profilePicture}
alt="Wayne Goosen's profile picture"
width={200}
height={200}
class='rounded-full absolute top-42 left-0 transform -translate-y-1/2 border-4 border-white dark:border-[#0a0910]'
/>
</div>

<h2 class='text-3xl mt-20 font-bold first-letter:uppercase'>Howzit, I'm Wayne! 👋</h2>
<ul>
<li>🔭 Software and DevOps Engineer</li>
<li>🏠 I live in Switzerland🇨🇭, but I am proudly South African!🇿🇦</li>
Expand Down

0 comments on commit 96c3c2d

Please sign in to comment.