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