···11import BaseLayout from "@/components/BaseLayout";
22+import SocialLink from "@/components/SocialLink";
23import Link from "next/link";
3445export default function About(): React.ReactElement {
···89 <h1>About</h1>
910 <div className="col-span-2 sm:col-span-1 max-w-none prose prose-stone dark:prose-invert leading-relaxed">
1011 <p>
1111- Welcome to the home of my many interests, half-baked projects, and
1212- digital representations of myself.
1212+ Hello, hello! Welcome to the home of my many interests, half-baked
1313+ projects, and digital representations of myself. I hope you enjoy
1414+ it.
1315 </p>
1414- <p>Hope you enjoy.</p>
1516 <p>
1616- Hello! I am here on this earth to have fun, learn, teach, create,
1717- and love.
1717+ I am here on this weird, green planet to have fun, learn, teach,
1818+ create, and love.
1819 </p>
1920 <p>Highlights from the last few years:</p>
2021 <ul>
···6465 <p>I now spend my time:</p>
6566 <ul>
6667 <li>
6767- Supporting small business owners by ugprading their businesses
6868+ Supporting small business owners by upgrading their businesses
6869 with technology and processes.
6970 </li>
7071 <li>
···8384 <a href="mailto:bailey.orion.kane@gmail.com">please reach out</a>.
8485 I'd love to hear from you.
8586 </p>
8787+ </div>
8888+ <hr className="mt-4 pt-4 border-stone-400 dark:border-stone-500" />
8989+ <div className="flex gap-2 items-center">
9090+ <SocialLink
9191+ href="mailto:bailey.orion.kane@gmail.com"
9292+ icon="/img/emailIcon.png"
9393+ >
9494+ Email
9595+ </SocialLink>
9696+ <SocialLink href="https://www.linkedin.com/in/baileykane/">
9797+ LinkedIn{" "}
9898+ </SocialLink>
9999+ <SocialLink
100100+ href="https://bsky.app/profile/baileykane.co"
101101+ icon="/img/bluesky_favicon.png"
102102+ >
103103+ Bluesky
104104+ </SocialLink>
86105 </div>
87106 </div>
88107 </BaseLayout>