nanochat/services/frontend/components/LandingFooter.tsx
Manmohan Sharma 36debd8502
fix(frontend): redesign landing and chat pages for warm, premium look
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>
2026-04-16 14:03:55 -07:00

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>&copy; 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>
);
}