This commit is contained in:
eric
2026-03-14 00:28:34 -05:00
parent cf1e3760c2
commit 1f8c9c6d26
88 changed files with 5463 additions and 22657 deletions

25
app/about/page.tsx Normal file
View File

@@ -0,0 +1,25 @@
import Link from "next/link";
import { SiteHeader } from "~/components/layout/site-header";
import { SiteFooter } from "~/components/layout/site-footer";
export default function AboutPage() {
return (
<div className="min-h-screen bg-white">
<SiteHeader />
<main className="container mx-auto px-4 py-16 md:px-6 md:py-24">
<h1 className="text-3xl font-semibold text-neutral-900"> Nomadro</h1>
<p className="mt-6 max-w-2xl text-neutral-600">
Nomadro
</p>
<Link
href="/"
className="mt-8 inline-block text-sm font-medium text-neutral-700 hover:text-neutral-900"
>
</Link>
</main>
<SiteFooter />
</div>
);
}