diff --git a/src/app/page.tsx b/src/app/page.tsx index c8e39cc..b8433bb 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,273 +1,216 @@ "use client"; -import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; -import HeroBillboard from '@/components/sections/hero/HeroBillboard'; -import AboutMetric from '@/components/sections/about/AboutMetric'; -import FeatureBento from '@/components/sections/feature/FeatureBento'; -import ProductCardOne from '@/components/sections/product/ProductCardOne'; -import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen'; -import ContactText from '@/components/sections/contact/ContactText'; -import ContactSplit from '@/components/sections/contact/ContactSplit'; -import FooterMedia from '@/components/sections/footer/FooterMedia'; -import { Activity, Building2, Dumbbell, Flame, Heart, Leaf, Star, Users, Zap, Phone, MessageCircle, MapPin, Mail } from 'lucide-react'; +import { ThemeProvider } from "@/context/ThemeProvider"; +import { Tag } from "@/components/tag/Tag"; +import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple"; +import HeroSplitKpi from "@/components/sections/hero/HeroSplitKpi"; +import MetricSplitMediaAbout from "@/components/sections/about/MetricSplitMediaAbout"; +import FeatureCardTwentyFive from "@/components/sections/feature/FeatureCardTwentyFive"; +import PricingCardNine from "@/components/sections/pricing/PricingCardNine"; +import TestimonialCardSixteen from "@/components/sections/testimonial/TestimonialCardSixteen"; +import ContactCenter from "@/components/sections/contact/ContactCenter"; +import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal"; +import { Sparkles, Users, Zap, CheckCircle, Trophy, Target, Heart, Phone } from "lucide-react"; -export default function LandingPage() { - const handleContactFormSubmit = (email: string) => { - console.log('Contact form submission:', email); - // Handle form submission - }; +const page = () => { + const navItems = [ + { name: "Inicio", id: "/" }, + { name: "Servicios", id: "#services" }, + { name: "Membresías", id: "#pricing" }, + { name: "Contacto", id: "#contact" }, + ]; return ( - + -
- -
+
+ {/* Hero Section */} +
+ +
-
- -
+ {/* About Section */} +
+ +
-
- -
+ {/* Services Section */} +
+ +
-
- -
+ {/* Pricing Section */} +
+ +
-
- -
+ {/* Testimonials Section */} +
+ +
-
- -
+ {/* Contact Section */} +
+ +
+
-
- + -
- -
- -
- - +
); -} +}; + +export default page;