| 1 | --- |
| 2 | import PageLayout from "@/layouts/Base"; |
| 3 | import { Image } from "@astrojs/image/components"; |
| 4 | import aboutImg from "../assets/about-astro.png"; |
| 5 | |
| 6 | const meta = { |
| 7 | title: "About", |
| 8 | description: "More about Steve Simkins", |
| 9 | }; |
| 10 | --- |
| 11 | |
| 12 | <PageLayout meta={meta}> |
| 13 | <div class="space-y-6"> |
| 14 | <h1 class="title">About</h1> |
| 15 | <p> |
| 16 | Hey there! My name is Steve and I'm the Head of Community for |
| 17 | <a |
| 18 | class="cactus-link inline-block" |
| 19 | target="_blank" |
| 20 | rel="noopener noreferrer" |
| 21 | aria-label="Link to Pinata website" |
| 22 | href="https://pinata.cloud">Pinata.</a |
| 23 | > |
| 24 | I help creators and developers in the Web3 space, and I like to help build solutions to their problems. |
| 25 | </p> |
| 26 | <div class="flex justify-center"> |
| 27 | <Image |
| 28 | src={aboutImg} |
| 29 | alt="A cartoon cactus looking at the 'Astro.build' logo" |
| 30 | loading="eager" |
| 31 | /> |
| 32 | </div> |
| 33 | <p>Here's some more info about me:</p> |
| 34 | <ul class="list-inside list-disc"> |
| 35 | <li>Currently in Chattanooga TN</li> |
| 36 | <li> |
| 37 | Pastimes include enjoying coffee shops, spending time with my wife and two sons, and |
| 38 | tinkering with mechanical keyboards |
| 39 | </li> |
| 40 | <li> |
| 41 | Taught myself web development which has led to a love and appreciation for developer tools |
| 42 | </li> |
| 43 | <li>I have a killer waffle recipe handed down through my family</li> |
| 44 | </ul> |
| 45 | <p> |
| 46 | Feel free to |
| 47 | <a |
| 48 | class="cactus-link inline-block" |
| 49 | href="mailto:hello@stevedsimkins.dev" |
| 50 | target="_blank" |
| 51 | rel="noopener noreferrer" |
| 52 | aria-label="github repository" |
| 53 | > |
| 54 | reach out |
| 55 | </a>! |
| 56 | </p> |
| 57 | </div> |
| 58 | </PageLayout> |