From 86b0b4edc44287f562aab6989022b77e566c7484 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 30 May 2026 22:04:05 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 113 +++++++++++++++++++++++++++++++++++++---------- 1 file changed, 89 insertions(+), 24 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 53a5621..5a84117 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,17 +2,20 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import ContactCTA from '@/components/sections/contact/ContactCTA'; + +import ContactSplit from '@/components/sections/contact/ContactSplit'; import FaqSplitText from '@/components/sections/faq/FaqSplitText'; import FeatureCardSixteen from '@/components/sections/feature/FeatureCardSixteen'; +import FeatureBento from '@/components/sections/feature/FeatureBento'; import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel'; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; import ProductCardOne from '@/components/sections/product/ProductCardOne'; +import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; import SplitAbout from '@/components/sections/about/SplitAbout'; import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne'; -import { Sparkles, Hammer, Users } from "lucide-react"; +import { Sparkles, Hammer, Users, Lightbulb, Building, Type, Flag, Store, PanelLeft, LayoutGrid, SprayCan, PanelTop, LayoutBottom, Grid3x3, BoxSelect, Monitor, Briefcase, Utensils, Megaphone, CheckCircle } from "lucide-react"; export default function LandingPage() { return ( @@ -37,9 +40,11 @@ export default function LandingPage() { { name: "About Us", id: "about"}, { - name: "Services", id: "features"}, + name: "Services", id: "all-services"}, { name: "Portfolio", id: "products"}, + { + name: "Gallery", id: "gallery"}, { name: "Testimonials", id: "testimonials"}, { @@ -61,7 +66,7 @@ export default function LandingPage() { tagIcon={Sparkles} buttons={[ { - text: "Explore Services", href: "#features"}, + text: "Explore Services", href: "#all-services"}, { text: "Get a Quote", href: "#contact"}, ]} @@ -138,6 +143,36 @@ export default function LandingPage() { /> +
+ +
+
+ +
-
@@ -254,24 +307,36 @@ export default function LandingPage() { columns={[ { title: "Services", items: [ - { - label: "PVC Paneling", href: "#features"}, - { - label: "Gypsum Work", href: "#features"}, - { - label: "POP Designs", href: "#features"}, - { - label: "Signage & Banners", href: "#features"}, - { - label: "Flooring Solutions", href: "#features"}, + { label: "LED Sign Boards", href: "#all-services" }, + { label: "ACP Signage", href: "#all-services" }, + { label: "Glow Sign Boards", href: "#all-services" }, + { label: "Acrylic Letters", href: "#all-services" }, + { label: "Flex & Banner Printing", href: "#all-services" }, + { label: "Shop Branding", href: "#all-services" }, + { label: "PVC Wall Panels", href: "#all-services" }, + { label: "ACP Cladding", href: "#all-services" }, + { label: "False Ceiling Design", href: "#all-services" }, + { label: "POP Ceiling Work", href: "#all-services" }, + { label: "PVC Ceiling Installation", href: "#all-services" }, + { label: "Flooring Replacement", href: "#all-services" }, + { label: "Tile Installation", href: "#all-services" }, + { label: "3D Interior Modeling", href: "#all-services" }, + { label: "TV Unit Design", href: "#all-services" }, + { label: "Commercial Interior Work", href: "#all-services" }, + { label: "Restaurant Branding", href: "#all-services" }, + { label: "Outdoor Advertising", href: "#all-services" }, ], }, { title: "Company", items: [ { label: "About Us", href: "#about"}, + { + label: "Services", href: "#all-services"}, { label: "Portfolio", href: "#products"}, + { + label: "Gallery", href: "#gallery"}, { label: "Testimonials", href: "#testimonials"}, { -- 2.49.1