chore: update email 6d0bcc1f
Steve · 2025-08-22 06:38 2 file(s) · +109 −94
src/data/constants.ts +38 −38
1 1
export const MENU_LINKS = [
2 -
	{
3 -
		title: "Home",
4 -
		path: "/",
5 -
	},
6 -
	{
7 -
		title: "About",
8 -
		path: "/about",
9 -
	},
10 -
	{
11 -
		title: "Blog",
12 -
		path: "/posts",
13 -
	},
14 -
	{
15 -
		title: "Projects",
16 -
		path: "/projects",
17 -
	},
18 -
	{
19 -
		title: "Videos",
20 -
		path: "/videos",
21 -
	},
22 -
	{
23 -
		title: "Photos",
24 -
		path: "https://photos.stevedylan.dev",
25 -
	},
2 +
  {
3 +
    title: "Home",
4 +
    path: "/",
5 +
  },
6 +
  {
7 +
    title: "About",
8 +
    path: "/about",
9 +
  },
10 +
  {
11 +
    title: "Blog",
12 +
    path: "/posts",
13 +
  },
14 +
  {
15 +
    title: "Projects",
16 +
    path: "/projects",
17 +
  },
18 +
  {
19 +
    title: "Videos",
20 +
    path: "/videos",
21 +
  },
22 +
  {
23 +
    title: "Photos",
24 +
    path: "https://photos.stevedylan.dev",
25 +
  },
26 26
];
27 27
28 28
// ! Remember to add your own socials
29 29
export const SOCIAL_LINKS = {
30 -
	github: "https://github.com/stevedylandev",
31 -
	twitter: "https://twitter.com/stevedylandev",
32 -
	youtube: "https://youtube.com/@stevedylandev",
33 -
	telegram: "https://telegram.me/stevedylandev",
34 -
	farcaster: "https://farcaster.xyz/stevedylandev.eth",
35 -
	medium: "https://medium.com/@stevedylandev",
36 -
	linkedin: "https://www.linkedin.com/in/steve-simkins/",
37 -
	photos: "https://photos.stevedylan.dev",
38 -
	threads: "https://threads.net/stevedylandev",
39 -
	website: "/",
40 -
	coffee: "https://buymeacoffee.com/stevedylandev",
41 -
	orbiter: "https://orbiter.host",
42 -
	ethereum: "https://app.ens.domains/stevedylandev.eth",
43 -
	email: "mailto:steve@terminal.ceo",
30 +
  github: "https://github.com/stevedylandev",
31 +
  twitter: "https://twitter.com/stevedylandev",
32 +
  youtube: "https://youtube.com/@stevedylandev",
33 +
  telegram: "https://telegram.me/stevedylandev",
34 +
  farcaster: "https://farcaster.xyz/stevedylandev.eth",
35 +
  medium: "https://medium.com/@stevedylandev",
36 +
  linkedin: "https://www.linkedin.com/in/steve-simkins/",
37 +
  photos: "https://photos.stevedylan.dev",
38 +
  threads: "https://threads.net/stevedylandev",
39 +
  website: "/",
40 +
  coffee: "https://buymeacoffee.com/stevedylandev",
41 +
  orbiter: "https://orbiter.host",
42 +
  ethereum: "https://app.ens.domains/stevedylandev.eth",
43 +
  email: "mailto:contact@stevedylan.dev",
44 44
};
src/pages/about.astro +71 −56
5 5
import DecryptingHeader from "@/components/DecryptingHeader";
6 6
7 7
const meta = {
8 -
	title: "About",
9 -
	description: "More about Steve Simkins",
8 +
  title: "About",
9 +
  description: "More about Steve Simkins",
10 10
};
11 11
---
12 12
13 13
<PageLayout meta={meta}>
14 -
	<div class="space-y-6">
15 -
		<DecryptingHeader text="About" className="title" />
16 -
		<p>
17 -
			Hey there! My name is Steve and I’m a DX engineer, creator, and tinkerer. I’m currently
18 -
			working at
19 -
			<a
20 -
				class="style-link inline-block"
21 -
				target="_blank"
22 -
				rel="noopener noreferrer"
23 -
				aria-label="openzeppelin"
24 -
				href="https://openzeppelin.com"
25 -
			>
26 -
				OpenZeppelin</a
27 -
			>
28 -
			as a DevRel, where I work on anything from writing documentation, building developer tools, to writing blog posts, and filming videos. I'm also working on <a
29 -
				class="style-link inline-block"
30 -
				target="_blank"
31 -
				rel="noopener noreferrer"
32 -
				aria-label="Orbiter"
33 -
				href="https://orbiter.host">Orbiter</a
34 -
			>, a new approach and open approach to app hosting. Along side Orbiter I'm also building a new stack called <a
35 -
			class="style-link inline-block"
36 -
					target="_blank"
37 -
					rel="noopener noreferrer"
38 -
					aria-label="bhvr"
39 -
					href="https://bhvr.dev">bhvr</a> (Bun Hono Vite React) which is designed to be portable and deployable anywhere to avoid walled garden providers.
40 -
		</p>
41 -
		<p>My greatest desire is to help build technologies that empower people who would otherwise be powerless, whether it's financial systems, information privacy, or democratizing software.</p>
42 -
		<div class="flex justify-center">
43 -
			<Image src={aboutImg} alt="Steve pfp" loading="eager" class="animate-fade-in" />
44 -
		</div>
45 -
		<p>Here's some more info about me:</p>
46 -
		<ul class="list-inside list-disc">
47 -
			<li>Currently in Chattanooga TN</li>
48 -
			<li>
49 -
				Pastimes include enjoying coffee shops, spending time with my wife and two sons, and
50 -
				tinkering with mechanical keyboards
51 -
			</li>
52 -
			<li>
53 -
				Taught myself web development which has led to a love and appreciation for developer tools
54 -
			</li>
55 -
			<li>I have a killer waffle recipe handed down through my family</li>
56 -
		</ul>
57 -
		<p>
58 -
			Feel free to
59 -
			<button
60 -
				class="style-link inline-block"
61 -
				onclick="window.location.href='mailto:steve@terminal.ceo'"
62 -
				aria-label="github repository"
63 -
			>
64 -
				reach out
65 -
			</button>!
66 -
		</p>
67 -
	</div>
14 +
  <div class="space-y-6">
15 +
    <DecryptingHeader text="About" className="title" />
16 +
    <p>
17 +
      Hey there! My name is Steve and I’m a DX engineer, creator, and tinkerer.
18 +
      I’m currently working at
19 +
      <a
20 +
        class="style-link inline-block"
21 +
        target="_blank"
22 +
        rel="noopener noreferrer"
23 +
        aria-label="openzeppelin"
24 +
        href="https://openzeppelin.com"
25 +
      >
26 +
        OpenZeppelin</a
27 +
      >
28 +
      as a DevRel, where I work on anything from writing documentation, building
29 +
      developer tools, to writing blog posts, and filming videos. I'm also working
30 +
      on <a
31 +
        class="style-link inline-block"
32 +
        target="_blank"
33 +
        rel="noopener noreferrer"
34 +
        aria-label="Orbiter"
35 +
        href="https://orbiter.host">Orbiter</a
36 +
      >, a new approach and open approach to app hosting. Along side Orbiter I'm
37 +
      also building a new stack called <a
38 +
        class="style-link inline-block"
39 +
        target="_blank"
40 +
        rel="noopener noreferrer"
41 +
        aria-label="bhvr"
42 +
        href="https://bhvr.dev">bhvr</a
43 +
      > (Bun Hono Vite React) which is designed to be portable and deployable anywhere
44 +
      to avoid walled garden providers.
45 +
    </p>
46 +
    <p>
47 +
      My greatest desire is to help build technologies that empower people who
48 +
      would otherwise be powerless, whether it's financial systems, information
49 +
      privacy, or democratizing software.
50 +
    </p>
51 +
    <div class="flex justify-center">
52 +
      <Image
53 +
        src={aboutImg}
54 +
        alt="Steve pfp"
55 +
        loading="eager"
56 +
        class="animate-fade-in"
57 +
      />
58 +
    </div>
59 +
    <p>Here's some more info about me:</p>
60 +
    <ul class="list-inside list-disc">
61 +
      <li>Currently in Chattanooga TN</li>
62 +
      <li>
63 +
        Pastimes include enjoying coffee shops, spending time with my wife and
64 +
        two sons, and tinkering with mechanical keyboards
65 +
      </li>
66 +
      <li>
67 +
        Taught myself web development which has led to a love and appreciation
68 +
        for developer tools
69 +
      </li>
70 +
      <li>I have a killer waffle recipe handed down through my family</li>
71 +
    </ul>
72 +
    <p>
73 +
      Feel free to
74 +
      <button
75 +
        class="style-link inline-block"
76 +
        onclick="window.location.href='mailto:contact@stevedylan.dev'"
77 +
        aria-label="github repository"
78 +
      >
79 +
        reach out
80 +
      </button>!
81 +
    </p>
82 +
  </div>
68 83
</PageLayout>