From 4fe38df7135cc2480785c1f26b12e6b8650ae8fe Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Fri, 16 Jan 2026 17:06:59 +0000 Subject: [PATCH] Update app/page.tsx --- app/page.tsx | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 app/page.tsx diff --git a/app/page.tsx b/app/page.tsx new file mode 100644 index 0000000..b279326 --- /dev/null +++ b/app/page.tsx @@ -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 ( +
+ + + + +
+ +
+ Mindful Creation +

+ 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. +

+
+
Small Batch
+
Quality First
+
Limited Drops
+
+
+
+
+ +
+ ); +}