Files
nextjs-vercel/app/page.tsx
Rami Bitar 1037183769 Update landing copy to template getting-started message
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-29 10:14:28 -04:00

27 lines
1.0 KiB
TypeScript

import Image from "next/image";
export default function Home() {
return (
<div className="flex min-h-screen flex-col items-center justify-center bg-zinc-50 font-sans dark:bg-black">
<main className="flex flex-1 w-full max-w-3xl flex-col items-center py-16 px-16 bg-white dark:bg-black sm:items-start">
<Image
className="dark:invert"
src="/next.svg"
alt="Next.js logo"
width={100}
height={20}
priority
/>
<div className="flex flex-1 flex-col items-center justify-center gap-6 text-center sm:items-start sm:text-left">
<h1 className="max-w-xs text-3xl font-semibold leading-10 tracking-tight text-black dark:text-zinc-50">
To get started, edit this page at app/page.tsx
</h1>
<p className="max-w-md text-lg leading-8 text-zinc-600 dark:text-zinc-400">
This is a template page for Next.js 16 using tailwind css and shadcn.
</p>
</div>
</main>
</div>
);
}