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 (