pull/2/head
Elias Almqvist 2 months ago
parent ffcab7ad12
commit 3d470ccf73
No known key found for this signature in database
GPG Key ID: E31A99CE3E75A158
  1. 14
      src/app/page.tsx

@ -34,14 +34,14 @@ async function getRecentPosts(): Promise<PostMeta[]> {
return posts return posts
.sort((a, b) => new Date(b.createdAt).getTime() - new Date(a.createdAt).getTime()) .sort((a, b) => new Date(b.createdAt).getTime() - new Date(a.createdAt).getTime())
.slice(0, 2); // Get only the 2 most recent posts .slice(0, 4); // Get only the 4 most recent posts
} }
export default async function Home() { export default async function Home() {
const recentPosts = await getRecentPosts(); const recentPosts = await getRecentPosts();
return ( return (
<main className="w-full flex items-center justify-center px-4 mt-14"> <main className="w-full flex justify-center px-4 mt-14">
<div className="w-full max-w-screen-lg md:px-4 py-8 space-y-8"> <div className="w-full max-w-screen-lg md:px-4 py-8 space-y-8">
{/* Intro */} {/* Intro */}
<section> <section>
@ -50,13 +50,21 @@ export default async function Home() {
<ExternalNav className="flex gap-4" /> <ExternalNav className="flex gap-4" />
</div> </div>
<Separator className="-mt-3 mb-4 max-w-[20rem]" /> <Separator className="-mt-3 mb-4 max-w-[20rem]" />
<div className="space-y-4">
<p className=""> <p className="">
CEO of{" "} CEO of{" "}
<ILink href="https://exalaboratories.com" target="_blank"> <ILink href="https://exalaboratories.com" target="_blank" className="font-bold text-md">
Exa Laboratories (YC S24) Exa Laboratories (YC S24)
</ILink> </ILink>
. Building energy-efficient chips for AI training & inference. . Building energy-efficient chips for AI training & inference.
</p> </p>
<p>
I'm a dropout, autodidactic polymath, and this is my digital notebook. Everything here is written by me, and everything here is my own opinion or philosophical beliefs. They are not intended to be taken at face value, but rather as a medium for me to personally reflect on my own thoughts as a therapeutic exercise, or just for fun.
</p>
<p>
Based in the <ILink href="https://en.wikipedia.org/wiki/Silicon_Valley" target="_blank" className="font-bold text-md">Silicon Valley</ILink> (<ILink href="https://en.wikipedia.org/wiki/Bay_Area" target="_blank" className="font-bold text-md">San Francisco Bay Area</ILink>), <ILink href="https://en.wikipedia.org/wiki/United_States" target="_blank" className="font-bold text-md">United States</ILink>. Originally from <ILink href="https://en.wikipedia.org/wiki/M%C3%B6lndal" target="_blank" className="font-bold text-md">Mölndal</ILink>/<ILink href="https://en.wikipedia.org/wiki/Gothenburg" target="_blank" className="font-bold text-md">Gothenburg</ILink>, <ILink href="https://en.wikipedia.org/wiki/Sweden" target="_blank" className="font-bold text-md">Sweden</ILink>.
</p>
</div>
</section> </section>
{/* Recent Essays */} {/* Recent Essays */}

Loading…
Cancel
Save