this repo has no description www.baileykane.co/
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Minor copy edits. Added social links

BK610 c1845783 54b80406

+25 -6
+25 -6
components/pageContent/AboutPage.tsx
··· 1 1 import BaseLayout from "@/components/BaseLayout"; 2 + import SocialLink from "@/components/SocialLink"; 2 3 import Link from "next/link"; 3 4 4 5 export default function About(): React.ReactElement { ··· 8 9 <h1>About</h1> 9 10 <div className="col-span-2 sm:col-span-1 max-w-none prose prose-stone dark:prose-invert leading-relaxed"> 10 11 <p> 11 - Welcome to the home of my many interests, half-baked projects, and 12 - digital representations of myself. 12 + Hello, hello! Welcome to the home of my many interests, half-baked 13 + projects, and digital representations of myself. I hope you enjoy 14 + it. 13 15 </p> 14 - <p>Hope you enjoy.</p> 15 16 <p> 16 - Hello! I am here on this earth to have fun, learn, teach, create, 17 - and love. 17 + I am here on this weird, green planet to have fun, learn, teach, 18 + create, and love. 18 19 </p> 19 20 <p>Highlights from the last few years:</p> 20 21 <ul> ··· 64 65 <p>I now spend my time:</p> 65 66 <ul> 66 67 <li> 67 - Supporting small business owners by ugprading their businesses 68 + Supporting small business owners by upgrading their businesses 68 69 with technology and processes. 69 70 </li> 70 71 <li> ··· 83 84 <a href="mailto:bailey.orion.kane@gmail.com">please reach out</a>. 84 85 I'd love to hear from you. 85 86 </p> 87 + </div> 88 + <hr className="mt-4 pt-4 border-stone-400 dark:border-stone-500" /> 89 + <div className="flex gap-2 items-center"> 90 + <SocialLink 91 + href="mailto:bailey.orion.kane@gmail.com" 92 + icon="/img/emailIcon.png" 93 + > 94 + Email 95 + </SocialLink> 96 + <SocialLink href="https://www.linkedin.com/in/baileykane/"> 97 + LinkedIn{" "} 98 + </SocialLink> 99 + <SocialLink 100 + href="https://bsky.app/profile/baileykane.co" 101 + icon="/img/bluesky_favicon.png" 102 + > 103 + Bluesky 104 + </SocialLink> 86 105 </div> 87 106 </div> 88 107 </BaseLayout>