app-flying-alpaca-zoom/app/page.tsx

37 lines
1.3 KiB
TypeScript

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>
);
}