Redesign landing page and add Caddy deployment for nomadro.com

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
eric
2026-07-11 11:25:50 -05:00
parent e452424f61
commit d2b381ac7b
23 changed files with 730 additions and 513 deletions

View File

@@ -2,10 +2,19 @@ import { Hero } from "~/components/sections/hero";
export default function HomePage() {
return (
<div className="min-h-screen bg-white">
<main>
<div
className="flex min-h-dvh flex-col"
style={{ minHeight: "100dvh" }}
>
<main className="flex flex-1 flex-col">
<Hero />
</main>
<footer
className="shrink-0 py-5 text-center text-[11px] text-neutral-400"
style={{ paddingBottom: "max(1.25rem, var(--safe-bottom))" }}
>
© {new Date().getFullYear()} Nomadro
</footer>
</div>
);
}