mirror of
https://github.com/karpathy/nanochat.git
synced 2026-06-05 06:28:27 +00:00
Landing page: warm gradient background, illustrations flanking hero text (180-220px), new tagline, features section with 3 cards, footer updated to "Built by Manmohan", gold CTA and nav buttons, toran moved to hero. Chat page: removed "Chat Completions" header, added samosa logo and bigger suggestion cards to empty state, sidebar empty state message, input area top border/shadow, more prominent new chat button. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
26 lines
749 B
TypeScript
26 lines
749 B
TypeScript
import LandingNav from '@/components/LandingNav';
|
|
import LandingFooter from '@/components/LandingFooter';
|
|
import Hero from '@/components/landing/Hero';
|
|
import Features from '@/components/landing/Features';
|
|
import Doodles from '@/components/svg/Doodles';
|
|
|
|
export default function LandingPage() {
|
|
return (
|
|
<main className="relative flex min-h-dvh flex-col overflow-x-hidden bg-gradient-to-br from-[#fff8e7] via-white to-[#fff8e7]">
|
|
<Doodles />
|
|
|
|
{/* Hero section: full viewport height with warm gradient */}
|
|
<div className="relative min-h-dvh flex flex-col">
|
|
<LandingNav />
|
|
<Hero />
|
|
</div>
|
|
|
|
{/* Features section */}
|
|
<Features />
|
|
|
|
{/* Footer */}
|
|
<LandingFooter />
|
|
</main>
|
|
);
|
|
}
|