Initial commit

This commit is contained in:
2026-06-20 15:41:55 +05:30
commit 2778527442
163 changed files with 72703 additions and 0 deletions

17
src/app/about/page.tsx Normal file
View File

@@ -0,0 +1,17 @@
export default function AboutPage() {
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">
About
</p>
<h1 className="mt-4 font-display text-4xl font-black text-brand-dark md:text-6xl">
Built for local communities.
</h1>
<p className="mx-auto mt-6 max-w-2xl text-body-lg text-on-surface-variant">
Nearle connects people with verified neighborhood businesses through a fast, reliable hyperlocal commerce network.
</p>
</div>
</section>
);
}