1
0
mirror of https://github.com/djkotowski/personal-website.git synced 2026-06-20 13:02:47 -05:00

Extract header section to own component

This commit is contained in:
2023-05-08 21:38:11 -05:00
parent 688593b001
commit 38707b3868
2 changed files with 21 additions and 16 deletions
+19
View File
@@ -0,0 +1,19 @@
<script>
import headshotPhoto from "../assets/headshot.jpg";
import Hero from "./components/Hero.svelte";
</script>
<div class="container mx-auto">
<Hero
imageUrl={headshotPhoto}
imageAlt="Headshot photograph of Dan Kotowski"
title="Dan Kotowski"
>
<p class="mt-6 text-lg lg:text-xl text-gray-300">
Senior web software engineer with strong technical and interpersonal skills
</p>
<p class="mt-6 text-yellow-600 italic">
Note: This webpage is a work in progress.
</p>
</Hero>
</div>