diff --git a/src/app/page.tsx b/src/app/page.tsx index ac5d37a..54d573e 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -13,6 +13,9 @@ import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis' import { CheckCircle, Flower2, Leaf, Palette, Sparkles } from "lucide-react"; import FaqBase from '@/components/sections/faq/FaqBase'; +const handleImageClick = (imageUrl) => { + window.open(imageUrl, '_blank', 'width=80%'); +}; export default function LandingPage() { const [isLoading, setIsLoading] = useState(false); return (