Files
gitlab-instance-0a899031_no…/app/page.tsx
2026-07-11 11:25:50 -05:00

21 lines
519 B
TypeScript

import { Hero } from "~/components/sections/hero";
export default function HomePage() {
return (
<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>
);
}