Update app/page.tsx
This commit is contained in:
parent
841d2a2d06
commit
4fe38df713
|
|
@ -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>
|
||||||
|
);
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue