mirror of
https://github.com/karpathy/nanochat.git
synced 2026-05-21 07:07:53 +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>
12 lines
478 B
TypeScript
12 lines
478 B
TypeScript
export default function LandingFooter() {
|
|
return (
|
|
<footer className="flex flex-col sm:flex-row justify-between items-center gap-1 px-4 md:px-9 py-3 font-caveat text-sm text-gray-400 flex-shrink-0">
|
|
<span>© 2026 samosachaat.art · Crafted with care. For India, from India.</span>
|
|
<span className="text-xs text-gray-400">
|
|
Built by Manmohan
|
|
</span>
|
|
<a href="#" className="hover:text-gray-600">Terms and Policies</a>
|
|
</footer>
|
|
);
|
|
}
|