src/pages/about.astro 1.5 K raw
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
25
			to their problems.
26
		</p>
27
		<div class="flex justify-center">
28
			<Image
29
				src={aboutImg}
30
				alt="A cartoon cactus looking at the 'Astro.build' logo"
31
				loading="eager"
32
			/>
33
		</div>
34
		<p>Here's some more info about me:</p>
35
		<ul class="list-inside list-disc">
36
      <li>Currently in Chattanooga TN</li>
37
      <li>Pastimes include enjoying coffee shops, spending time with my wife and two sons, and tinkering with mechanical keyboards</li>
38
      <li>Taught myself frontend web development which led to being hooked on blockchain technology</li>
39
      <li>I have a killer waffle recipe handed down through my family</li>
40
		</ul>
41
		<p>
42
			Feel free to 
43
			<a
44
				class="cactus-link inline-block"
45
				href="mailto:hello@stevedsimkins.dev"
46
				target="_blank"
47
				rel="noopener noreferrer"
48
				aria-label="github repository"
49
			>
50
				reach out
51
			</a>!
52
		</p>
53
	</div>
54
</PageLayout>