From cae4768016f8a03348cff74bbe05e7b23fbd60db Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Thu, 15 Jan 2026 13:41:22 +0000 Subject: [PATCH] Update app/page.tsx --- app/page.tsx | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 app/page.tsx diff --git a/app/page.tsx b/app/page.tsx new file mode 100644 index 0000000..442914e --- /dev/null +++ b/app/page.tsx @@ -0,0 +1,29 @@ +import { Container } from "@/components/container"; +import { Hero } from "@/components/hero"; +import { Background } from "@/components/background"; +import { Features } from "@/components/features"; + +import { CTA } from "@/components/cta"; + +export default function Home() { + return ( +
+
+ +
+ + + {/* - Client logos carousel - TRANSFORM or DELETE based on use case */} + + {/* - Additional features grid - OPTIONAL */} + {/* - Customer testimonials - OPTIONAL */} + +
+
+ +
+ +
+
+ ); +}