1
0
mirror of https://github.com/djkotowski/personal-website.git synced 2026-06-20 13:02:47 -05:00
Files
personal-website/src/lib/HeaderSection.svelte
T
2025-03-11 00:08:02 -05:00

20 lines
525 B
Svelte

<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-4 text-lg lg:text-xl text-gray-300">
Based in San Antonio, Texas
</p>
</Hero>
</div>