From 568f7e0e8a324d94460992b72c3002ffa1d36dac Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Fri, 16 Jan 2026 16:41:49 +0000 Subject: [PATCH] Update components/hero.tsx --- components/hero.tsx | 70 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 70 insertions(+) create mode 100644 components/hero.tsx diff --git a/components/hero.tsx b/components/hero.tsx new file mode 100644 index 0000000..18e0b16 --- /dev/null +++ b/components/hero.tsx @@ -0,0 +1,70 @@ +"use client"; +import { Container } from "@/components/container"; +import { Heading } from "@/components/heading"; +import { Subheading } from "@/components/subheading"; +import { Button } from "@/components/ui/button"; +import { motion } from "framer-motion"; +import Image from "next/image"; + +export function Hero() { + return ( +
+ {/* Background Image with Overlay */} +
+ Miami Beach Fitness +
+
+ + +
+ +
+ Miami's #1 Elite Coaching +
+ + TRAIN IN
+ + PARADISE + +
+
+ + + + Experience world-class training under the Miami sun. From South Beach to Brickell, we bring elite performance to your doorstep. + + + + + + +
+
+ + {/* Decorative Elements */} +
+
+ ); +}