From d2902bcd489ee3f3672cfed0412a9aa3f51528e5 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 2 Mar 2026 18:25:12 +0000 Subject: [PATCH] Update src/app/gallery/page.tsx --- src/app/gallery/page.tsx | 198 +++++++++++++-------------------------- 1 file changed, 64 insertions(+), 134 deletions(-) diff --git a/src/app/gallery/page.tsx b/src/app/gallery/page.tsx index 953e1de..a8134fc 100644 --- a/src/app/gallery/page.tsx +++ b/src/app/gallery/page.tsx @@ -3,17 +3,10 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; import FeatureCardTwentyFive from "@/components/sections/feature/FeatureCardTwentyFive"; +import TestimonialCardTwelve from "@/components/sections/testimonial/TestimonialCardTwelve"; +import ContactSplitForm from "@/components/sections/contact/ContactSplitForm"; import FooterMedia from "@/components/sections/footer/FooterMedia"; -import Link from "next/link"; -import { Sparkles } from "lucide-react"; - -const navItems = [ - { name: "Home", id: "/" }, - { name: "Services", id: "/services" }, - { name: "Pricing", id: "/pricing" }, - { name: "Gallery", id: "/gallery" }, - { name: "Contact", id: "/contact" }, -]; +import { Sparkles, Check, Shield, Star } from "lucide-react"; export default function GalleryPage() { return ( @@ -23,161 +16,104 @@ export default function GalleryPage() { borderRadius="rounded" contentWidth="small" sizing="mediumLargeSizeMediumTitles" - background="fluid" + background="circleGradient" cardStyle="gradient-bordered" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="medium" > + {/* Navbar */} -