Update src/app/page.tsx
This commit is contained in:
@@ -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 (
|
||||
<div className="fixed inset-0 z-[9999] flex items-center justify-center bg-black/60 backdrop-blur-sm p-4">
|
||||
<div className="relative w-full max-w-6xl max-h-[90vh] bg-[var(--background)] rounded-2xl shadow-2xl overflow-hidden flex flex-col">
|
||||
|
||||
Reference in New Issue
Block a user