···11import About from "@/components/pageContent/AboutPage";
22+import BaseLayout from "@/components/BaseLayout";
33+import SocialLink from "@/components/SocialLink";
44+import Link from "next/link";
2536export default function Page(): React.ReactElement {
44- return <About />;
77+ return (
88+ <BaseLayout titleText={"About"}>
99+ <div className="max-w-2xl mx-auto">
1010+ <h1>About</h1>
1111+ <div className="col-span-2 sm:col-span-1 max-w-none prose prose-stone dark:prose-invert leading-relaxed">
1212+ <p>
1313+ Hello, hello! Welcome to the home of my many interests, half-baked
1414+ projects, and digital representations of myself. I hope you enjoy
1515+ it.
1616+ </p>
1717+ <p>
1818+ I am here on this weird, green planet to have fun, learn, teach,
1919+ create, and love.
2020+ </p>
2121+ <p>Highlights from the last few years:</p>
2222+ <ul>
2323+ <li>
2424+ Founding{" "}
2525+ <a href="https://generatenu.com/" target="_blank">
2626+ a product development studio
2727+ </a>{" "}
2828+ during college with some of my best friends.
2929+ </li>
3030+ <li>Teaching myself to ride a bike at the ripe age of 21.</li>
3131+ <li>
3232+ Moving from the US to Singapore on a whim in the Fall of 2019,
3333+ building a life there after COVID hit, and realizing that{" "}
3434+ <Link href="/recipes">food is pretty cool</Link>.
3535+ </li>
3636+ <li>
3737+ Hiking a section of the Appalachian Trail on a week's notice and
3838+ with no training, with the help of one brave, offroad-friendly
3939+ taxi driver (
4040+ <a
4141+ href="https://connect.clickandpledge.com/w/Form/980c7253-487d-45d4-a9d0-fd149fb53720?637680013319366350"
4242+ target="_blank"
4343+ >
4444+ donate to the AT!
4545+ </a>
4646+ ).
4747+ </li>
4848+ <li>
4949+ Discovering the art and science of terrariums, hosting a workshop
5050+ to tell all my friends about it, and building{" "}
5151+ <a href="https://terrarium-resources.webflow.io/" target="_blank">
5252+ a terrarium resource directory
5353+ </a>{" "}
5454+ so others can have the same fun I did.
5555+ </li>
5656+ </ul>
5757+ <p>
5858+ <a href="https://www.linkedin.com/in/baileykane/" target="_blank">
5959+ My professional life
6060+ </a>{" "}
6161+ has followed a similar pattern. I'm excited by solving interesting
6262+ problems with fun people. I've jumped industries and roles in nearly
6363+ every job I've had, and have embraced my nature as an enthusiastic
6464+ generalist.
6565+ </p>
6666+ <p>I now spend my time:</p>
6767+ <ul>
6868+ <li>
6969+ Supporting small business owners by upgrading their businesses
7070+ with technology and processes.
7171+ </li>
7272+ <li>
7373+ Fulfilling my lifelong dreams of being a teacher, teaching STEM
7474+ topics, music, and anything that I get excited to run a workshop
7575+ for.
7676+ </li>
7777+ <li>
7878+ Working on projects that I'm excited by in climate, education,
7979+ music, and the arts.
8080+ </li>
8181+ </ul>
8282+ <p>
8383+ If you want to say hi, work together, or give me advice on how to
8484+ organize my life,{" "}
8585+ <a href="mailto:bailey.orion.kane@gmail.com">please reach out</a>.
8686+ I'd love to hear from you.
8787+ </p>
8888+ </div>
8989+ <hr className="mt-4 pt-4 border-stone-400 dark:border-stone-500" />
9090+ <div className="flex gap-2 items-center">
9191+ <SocialLink
9292+ href="mailto:bailey.orion.kane@gmail.com"
9393+ icon="/img/emailIcon.png"
9494+ >
9595+ Email
9696+ </SocialLink>
9797+ <SocialLink href="https://www.linkedin.com/in/baileykane/">
9898+ LinkedIn{" "}
9999+ </SocialLink>
100100+ <SocialLink
101101+ href="https://bsky.app/profile/baileykane.co"
102102+ icon="/img/bluesky_favicon.png"
103103+ >
104104+ Bluesky
105105+ </SocialLink>
106106+ </div>
107107+ </div>
108108+ </BaseLayout>
109109+ );
5110}
-109
components/pageContent/AboutPage.tsx
···11-import BaseLayout from "@/components/BaseLayout";
22-import SocialLink from "@/components/SocialLink";
33-import Link from "next/link";
44-55-export default function About(): React.ReactElement {
66- return (
77- <BaseLayout titleText={"About"}>
88- <div className="max-w-2xl mx-auto">
99- <h1>About</h1>
1010- <div className="col-span-2 sm:col-span-1 max-w-none prose prose-stone dark:prose-invert leading-relaxed">
1111- <p>
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.
1515- </p>
1616- <p>
1717- I am here on this weird, green planet to have fun, learn, teach,
1818- create, and love.
1919- </p>
2020- <p>Highlights from the last few years:</p>
2121- <ul>
2222- <li>
2323- Founding{" "}
2424- <a href="https://generatenu.com/" target="_blank">
2525- a product development studio
2626- </a>{" "}
2727- during college with some of my best friends.
2828- </li>
2929- <li>Teaching myself to ride a bike at the ripe age of 21.</li>
3030- <li>
3131- Moving from the US to Singapore on a whim in the Fall of 2019,
3232- building a life there after COVID hit, and realizing that{" "}
3333- <Link href="/recipes">food is pretty cool</Link>.
3434- </li>
3535- <li>
3636- Hiking a section of the Appalachian Trail on a week's notice and
3737- with no training, with the help of one brave, offroad-friendly
3838- taxi driver (
3939- <a
4040- href="https://connect.clickandpledge.com/w/Form/980c7253-487d-45d4-a9d0-fd149fb53720?637680013319366350"
4141- target="_blank"
4242- >
4343- donate to the AT!
4444- </a>
4545- ).
4646- </li>
4747- <li>
4848- Discovering the art and science of terrariums, hosting a workshop
4949- to tell all my friends about it, and building{" "}
5050- <a href="https://terrarium-resources.webflow.io/" target="_blank">
5151- a terrarium resource directory
5252- </a>{" "}
5353- so others can have the same fun I did.
5454- </li>
5555- </ul>
5656- <p>
5757- <a href="https://www.linkedin.com/in/baileykane/" target="_blank">
5858- My professional life
5959- </a>{" "}
6060- has followed a similar pattern. I'm excited by solving interesting
6161- problems with fun people. I've jumped industries and roles in nearly
6262- every job I've had, and have embraced my nature as an enthusiastic
6363- generalist.
6464- </p>
6565- <p>I now spend my time:</p>
6666- <ul>
6767- <li>
6868- Supporting small business owners by upgrading their businesses
6969- with technology and processes.
7070- </li>
7171- <li>
7272- Fulfilling my lifelong dreams of being a teacher, teaching STEM
7373- topics, music, and anything that I get excited to run a workshop
7474- for.
7575- </li>
7676- <li>
7777- Working on projects that I'm excited by in climate, education,
7878- music, and the arts.
7979- </li>
8080- </ul>
8181- <p>
8282- If you want to say hi, work together, or give me advice on how to
8383- organize my life,{" "}
8484- <a href="mailto:bailey.orion.kane@gmail.com">please reach out</a>.
8585- I'd love to hear from you.
8686- </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>
105105- </div>
106106- </div>
107107- </BaseLayout>
108108- );
109109-}