From 74709e7d85ae7a8ce4a865ee41fbf4b9b5b94660 Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Fri, 16 Jan 2026 16:42:06 +0000 Subject: [PATCH] Update app/page.tsx --- app/page.tsx | 68 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 68 insertions(+) create mode 100644 app/page.tsx diff --git a/app/page.tsx b/app/page.tsx new file mode 100644 index 0000000..9fdd5c6 --- /dev/null +++ b/app/page.tsx @@ -0,0 +1,68 @@ +import { Hero } from "@/components/hero"; +import { Features } from "@/components/features"; +import { Footer } from "@/components/footer"; +import { MiamiGallery } from "@/components/miami-gallery"; +import { Container } from "@/components/container"; +import { Heading } from "@/components/heading"; +import { KleapForm } from "@/components/kleap-form"; + +export default function Home() { + const contactFields = [ + { name: "name", label: "Full Name", type: "text" as const, required: true }, + { name: "email", label: "Email Address", type: "email" as const, required: true }, + { name: "phone", label: "Phone Number", type: "tel" as const, required: true }, + { + name: "service", + label: "Interested Service", + type: "select" as const, + options: ["Personal Training", "Performance Coaching", "Group Sessions"], + required: true + }, + { name: "message", label: "Tell us about your goals", type: "textarea" as const, required: true }, + ]; + + return ( +
+ + + + +
+
+ +
+
+ + READY TO
+ LEVEL UP? +
+

+ Don't wait for Monday. Start your transformation today in the heart of Miami. +

+
+ {["Custom Nutrition Plans", "Elite Performance Tracking", "Beach & Gym Access"].map((item, i) => ( +
+
+ {item} +
+ ))} +
+
+
+
+ FREE
TRIAL +
+ +
+
+
+
+ +
+ ); +}