diff --git a/src/app/gallery/page.tsx b/src/app/gallery/page.tsx index 3bb485a..035ded5 100644 --- a/src/app/gallery/page.tsx +++ b/src/app/gallery/page.tsx @@ -2,146 +2,35 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import BlogCardThree from '@/components/sections/blog/BlogCardThree'; -import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; -import SplitAbout from '@/components/sections/about/SplitAbout'; +import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery'; +import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; -export default function LandingPage() { +const navItems = [ + { name: "Home", id: "/" }, + { name: "Services", id: "/services" }, + { name: "Gallery", id: "/gallery" }, + { name: "Pricing", id: "/pricing" }, + { name: "Contact", id: "/contact" }, +]; + +export default function GalleryPage() { return ( - + - - -
- -
- -
- -
- - + + +
); -} +} \ No newline at end of file