"use client"; import { useEffect, useState } from 'react'; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; import HeroCarouselLogo from '@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo'; import FeatureCardEight from '@/components/sections/feature/FeatureCardEight'; import SplitAbout from '@/components/sections/about/SplitAbout'; import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen'; import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen'; import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; import { CheckCircle, Flower2, Leaf, Palette, Sparkles, MessageCircle } from "lucide-react"; import ContactFaq from "@/components/sections/contact/ContactFaq"; import ContactForm from "@/components/form/ContactForm"; const handleImageClick = (imageUrl) => { window.open(imageUrl, '_blank', 'width=80%'); }; export default function LandingPage() { const [isLoading, setIsLoading] = useState(false); return (
); }