21 lines
519 B
TypeScript
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>
|
|
);
|
|
}
|