From eee636ff603e396115d777553398751c1020f168 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 10 Jun 2026 23:34:25 +0000 Subject: [PATCH 1/2] Update src/app/gallery/page.tsx --- src/app/gallery/page.tsx | 305 ++++++++++++++------------------------- 1 file changed, 110 insertions(+), 195 deletions(-) diff --git a/src/app/gallery/page.tsx b/src/app/gallery/page.tsx index 3674428..d275a86 100644 --- a/src/app/gallery/page.tsx +++ b/src/app/gallery/page.tsx @@ -4,211 +4,126 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; import ContactText from '@/components/sections/contact/ContactText'; import FooterMedia from '@/components/sections/footer/FooterMedia'; +import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import ProductCardOne from '@/components/sections/product/ProductCardOne'; +import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix'; +import TextAbout from '@/components/sections/about/TextAbout'; + +export default function GalleryPage() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "About Us", id: "/about" }, + { name: "Services", id: "/services" }, + { name: "Gallery", id: "/gallery" }, + { name: "Reviews", id: "/reviews" }, + { name: "FAQ", id: "/faq" }, + { name: "Contact", id: "/contact" }, + ]; -export default function LandingPage() { return ( - + - + - + - + ); -- 2.49.1 From 227f3e0def8d0e74173b2cd2a232120f65812508 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 10 Jun 2026 23:34:26 +0000 Subject: [PATCH 2/2] Update src/app/services/page.tsx --- src/app/services/page.tsx | 425 ++++++++++++++------------------------ 1 file changed, 155 insertions(+), 270 deletions(-) diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx index cbd5393..840b476 100644 --- a/src/app/services/page.tsx +++ b/src/app/services/page.tsx @@ -2,288 +2,173 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; +import ContactText from '@/components/sections/contact/ContactText'; import FeatureBento from '@/components/sections/feature/FeatureBento'; import FooterMedia from '@/components/sections/footer/FooterMedia'; +import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import ProductCardOne from '@/components/sections/product/ProductCardOne'; -import { Award, CheckCircle, Droplet, FileText, Grid, Heart, MessageCircle, ShieldCheck, Sparkles } from "lucide-react"; +import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix'; +import TextAbout from '@/components/sections/about/TextAbout'; +import { ShieldCheck, FileText, CheckCircle, Sparkles, MessageCircle, Grid, Droplet, Award, Heart } from "lucide-react"; + +export default function ServicesPage() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "About Us", id: "/about" }, + { name: "Services", id: "/services" }, + { name: "Gallery", id: "/gallery" }, + { name: "Reviews", id: "/reviews" }, + { name: "FAQ", id: "/faq" }, + { name: "Contact", id: "/contact" }, + ]; -export default function LandingPage() { return ( - + -
- -
+
+ +
-
-
+
+
- +
+ +
+ +
); -- 2.49.1