Files
2026-07-11 11:25:50 -05:00

28 lines
934 B
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import Link from "next/link";
export default function AboutPage() {
return (
<div
className="flex min-h-dvh flex-col bg-[#f8f7fc] px-5 py-10"
style={{
paddingTop: "max(2.5rem, calc(1.5rem + var(--safe-top)))",
paddingBottom: "max(2.5rem, calc(1.5rem + var(--safe-bottom)))",
}}
>
<div className="mx-auto w-full max-w-md">
<h1 className="text-xl font-bold text-neutral-900"> Nomadro</h1>
<p className="mt-4 text-sm leading-relaxed text-neutral-600">
Nomadro
</p>
<Link
href="/"
className="mt-8 inline-block text-sm text-violet-600 active:text-violet-800"
>
</Link>
</div>
</div>
);
}