From a1db576e69232af232fb821eba85fde62fbe56fe Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 27 Apr 2026 01:26:16 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 48d61fa..a4e60dd 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -7,8 +7,7 @@ import ProductCardFour from "@/components/sections/product/ProductCardFour"; import ContactCTA from "@/components/sections/contact/ContactCTA"; import FooterSimple from "@/components/sections/footer/FooterSimple"; import TestimonialAboutCard from "@/components/sections/about/TestimonialAboutCard"; -import BlogCardThree from "@/components/sections/blog/BlogCardThree"; -import { Star, Heart, Camera, Sparkles, Crown, Phone, User, Play, ChevronRight, X, Instagram, MapPin } from "lucide-react"; +import { Star, Heart, Camera, Sparkles, Crown, Phone, User, ChevronRight, X, Instagram, MapPin } from "lucide-react"; import { useState, useEffect, useRef } from "react"; export default function LandingPage() { @@ -64,7 +63,7 @@ export default function LandingPage() { const renderModal = () => { if (!showModal || !modalType) return null; - let items = modalType === 'gallery' ? allDresses : modalType === 'shoes' ? allShoes : allVeils; + const items = modalType === 'gallery' ? allDresses : modalType === 'shoes' ? allShoes : allVeils; return (
-- 2.49.1