diff --git a/src/app/gallery/page.tsx b/src/app/gallery/page.tsx index 2aea70e..537abc6 100644 --- a/src/app/gallery/page.tsx +++ b/src/app/gallery/page.tsx @@ -1,53 +1,22 @@ "use client"; +import Link from "next/link"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; -import HeroSplit from "@/components/sections/hero/HeroSplit"; import BlogCardThree from "@/components/sections/blog/BlogCardThree"; -import TestimonialCardTwelve from "@/components/sections/testimonial/TestimonialCardTwelve"; import ContactSplitForm from "@/components/sections/contact/ContactSplitForm"; import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis"; -import Link from "next/link"; -import { Sparkles, Heart } from "lucide-react"; + +const navItems = [ + { name: "Home", id: "/" }, + { name: "About Us", id: "/about" }, + { name: "Services", id: "/services" }, + { name: "Gallery", id: "/gallery" }, + { name: "Pricing", id: "/pricing" }, + { name: "Contact", id: "/contact" }, +]; export default function GalleryPage() { - const navItems = [ - { name: "Home", id: "/" }, - { name: "About Us", id: "/about" }, - { name: "Services", id: "/services" }, - { name: "Bridal Studio", id: "/bridal" }, - { name: "Gallery", id: "/gallery" }, - { name: "Pricing", id: "/pricing" }, - { name: "Contact", id: "/contact" }, - ]; - - const footerColumns = [ - { - items: [ - { label: "Home", href: "/" }, - { label: "About Us", href: "/about" }, - { label: "Services", href: "/services" }, - { label: "Gallery", href: "/gallery" }, - ], - }, - { - items: [ - { label: "Pricing", href: "/pricing" }, - { label: "Book Appointment", href: "/contact" }, - { label: "Contact Us", href: "/contact" }, - { label: "Instagram", href: "https://instagram.com" }, - ], - }, - { - items: [ - { label: "Privacy Policy", href: "#" }, - { label: "Terms of Service", href: "#" }, - { label: "Refund Policy", href: "#" }, - { label: "Contact", href: "/contact" }, - ], - }, - ]; - return ( -