From ba4af75ff9465672a94053e9b2ce2adca513b3e1 Mon Sep 17 00:00:00 2001 From: kudindmitriy Date: Wed, 14 Jan 2026 23:20:40 +0100 Subject: [PATCH] Auto-commit: when user click on image it should be open in popup. width should be 80% of the screen. --- src/app/page.tsx | 3 +++ 1 file changed, 3 insertions(+) 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 (