18 lines
702 B
TypeScript
18 lines
702 B
TypeScript
export default function ContactPage() {
|
|
return (
|
|
<section className="min-h-[70vh] bg-surface px-margin-mobile md:px-margin-desktop py-24">
|
|
<div className="mx-auto max-w-container-max text-center">
|
|
<p className="text-label-sm font-black uppercase tracking-widest text-primary">
|
|
Contact
|
|
</p>
|
|
<h1 className="mt-4 font-display text-4xl font-black text-brand-dark md:text-6xl">
|
|
Talk to the Nearle team.
|
|
</h1>
|
|
<p className="mx-auto mt-6 max-w-2xl text-body-lg text-on-surface-variant">
|
|
Reach out for partnerships, support, business onboarding, or neighborhood launch enquiries.
|
|
</p>
|
|
</div>
|
|
</section>
|
|
);
|
|
}
|