From 779e6a6208d6a6c0f138f5ac57bb2dd21ca5de77 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 25 Mar 2026 06:34:43 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 66 ++++++++++++++---------------------------------- 1 file changed, 19 insertions(+), 47 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index f20e9de..3b59af8 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,8 +2,7 @@ import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; import HeroBillboard from '@/components/sections/hero/HeroBillboard'; -import FeatureCardOne from '@/components/sections/feature/FeatureCardOne'; -import SplitAbout from '@/components/sections/about/SplitAbout'; + import ProductCardOne from '@/components/sections/product/ProductCardOne'; import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo'; import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; @@ -12,6 +11,20 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { MapPin, Award, Headphones, DollarSign, Star } from "lucide-react"; export default function LandingPage() { + const commonNavItems = [ + { name: "Services", id: "/services-page" }, + { name: "About Us", id: "/about-us" }, + { name: "Projects", id: "projects" }, + { name: "Testimonials", id: "testimonials" }, + { name: "Contact", id: "contact" } + ]; + + const commonFooterColumns = [ + { items: [{ label: "Home", href: "/" }, { label: "Services", href: "/services-page" }, { label: "Projects", href: "#projects" }] }, + { items: [{ label: "About Us", href: "/about-us" }, { label: "Testimonials", href: "#testimonials" }, { label: "Contact", href: "#contact" }] }, + { items: [{ label: "Call Us: +92 300 1234567", href: "tel:+923001234567" }, { label: "Email: info@yourcompany.com", href: "mailto:info@yourcompany.com" }, { label: "WhatsApp Us", href: "https://wa.me/923001234567" }] } + ]; + return ( @@ -51,38 +58,7 @@ export default function LandingPage() { imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BQPU2XvbmkOvuR7PxX9UHMCGI0/modern-outdoor-security-cameras-and-sola-1774418442660-ab7202dd.png" /> -
- -
-
- -
+
); -} +} \ No newline at end of file