20 lines
525 B
Svelte
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>
|