"use client" import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import HeroLogoBillboardSplit from '@/components/sections/hero/HeroLogoBillboardSplit'; import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard'; import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix'; import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen'; import ContactCenter from '@/components/sections/contact/ContactCenter'; import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; import { ArrowRight, Coffee, Heart, Mail, Sparkles, Star } from "lucide-react"; export default function LandingPage() { const handleEmailSignup = (email: string) => { console.log('Email signup:', email); }; return (
); }