diff --git a/src/app/page.tsx b/src/app/page.tsx index 1716393..2a07835 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -10,7 +10,8 @@ import TestimonialCardTen from "@/components/sections/testimonial/TestimonialCar import FaqSplitText from "@/components/sections/faq/FaqSplitText"; import ContactSplitForm from "@/components/sections/contact/ContactSplitForm"; import FooterSimple from "@/components/sections/footer/FooterSimple"; -import { Award, Sparkles, Zap, MessageCircle } from "lucide-react"; +import { Award, Sparkles, Zap } from "lucide-react"; +import { useEffect } from "react"; export default function LandingPage() { const galleryImages = [ @@ -31,6 +32,12 @@ export default function LandingPage() { { id: "15", src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery-15.jpg", alt: "Elegante signature style showcase" } ]; + useEffect(() => { + // Chatbot integration placeholder. + // Once the link is provided, it can be injected here or via a dedicated component. + console.log("Chatbot integration pending link provision."); + }, []); + return (