Update app/page.tsx

This commit is contained in:
kleap-admin 2026-01-16 17:06:59 +00:00
parent 841d2a2d06
commit 4fe38df713
1 changed files with 36 additions and 0 deletions

36
app/page.tsx Normal file
View File

@ -0,0 +1,36 @@
import { Hero } from "@/components/hero";
import { About } from "@/components/about";
import { Collections } from "@/components/collections";
import { Footer } from "@/components/footer";
import { Container } from "@/components/container";
import { Heading } from "@/components/heading";
export default function Home() {
return (
<main className="min-h-screen">
<Hero />
<About />
<Collections />
<section className="py-24 bg-white">
<Container>
<div className="max-w-3xl mx-auto text-center">
<Heading className="mb-8">Mindful Creation</Heading>
<p className="text-neutral-600 leading-relaxed mb-12">
INDWES believes in creating with intention. Our approach includes small-batch production,
quality over quantity, and designs that move beyond trends. We respect craftsmanship
and believe clothing should be made to stay not to be replaced.
</p>
<div className="grid grid-cols-1 md:grid-cols-3 gap-8 text-sm tracking-widest uppercase text-neutral-500">
<div>Small Batch</div>
<div>Quality First</div>
<div>Limited Drops</div>
</div>
</div>
</Container>
</section>
<Footer />
</main>
);
}