19 lines
678 B
TypeScript
19 lines
678 B
TypeScript
import Link from 'next/link'
|
|
|
|
export default function HomePage() {
|
|
return (
|
|
<div className="flex min-h-screen flex-col items-center justify-center gap-6 bg-blacksite-bg px-6 text-center text-blacksite-text">
|
|
{/* Temporary placeholder until the portfolio landing is implemented in P5. */}
|
|
<h1 className="font-display text-4xl font-semibold tracking-tight sm:text-6xl">
|
|
Krishna Ayyalasomayajula
|
|
</h1>
|
|
<Link
|
|
href="/blog/"
|
|
className="font-mono text-xs uppercase tracking-[0.22em] text-signal-cyan underline-offset-4 transition hover:text-signal-orange hover:underline"
|
|
>
|
|
Field Notes
|
|
</Link>
|
|
</div>
|
|
)
|
|
}
|