From 592a54418031471db99b7c66c3dca740180d1d31 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 14:45:38 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 258 +++++++++++++++++------------------------------ 1 file changed, 94 insertions(+), 164 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index cc1c69f..c4c0df8 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,55 +1,18 @@ "use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import Link from "next/link"; import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; import HeroBillboardRotatedCarousel from "@/components/sections/hero/HeroBillboardRotatedCarousel"; -import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSplitTextAbout"; import FeatureCardEight from "@/components/sections/feature/FeatureCardEight"; +import ProductCardOne from "@/components/sections/product/ProductCardOne"; import MetricCardEleven from "@/components/sections/metrics/MetricCardEleven"; import TestimonialCardTen from "@/components/sections/testimonial/TestimonialCardTen"; import ContactCTA from "@/components/sections/contact/ContactCTA"; import FooterBase from "@/components/sections/footer/FooterBase"; -import { Shield, Wrench, Award, MessageSquare, Phone } from "lucide-react"; +import { Shield, Wrench, Image, Award, MessageSquare, Phone } from "lucide-react"; +import Link from "next/link"; export default function HomePage() { - const navItems = [ - { name: "Home", id: "/" }, - { name: "Services", id: "/services" }, - { name: "Projects", id: "/projects" }, - { name: "Contact", id: "/contact" }, - ]; - - const footerColumns = [ - { - title: "Services", - items: [ - { label: "Carport Installations", href: "/services" }, - { label: "Steel Roofing", href: "/services" }, - { label: "Shade Ports", href: "/services" }, - { label: "Steel Fabrication", href: "/services" }, - ], - }, - { - title: "Company", - items: [ - { label: "About Us", href: "/about" }, - { label: "Projects", href: "/projects" }, - { label: "Contact", href: "/contact" }, - { label: "Privacy Policy", href: "#" }, - ], - }, - { - title: "Contact", - items: [ - { label: "Phone: 082 416 8445", href: "tel:0824168445" }, - { label: "Email: info@xenosteel.co.za", href: "mailto:info@xenosteel.co.za" }, - { label: "7 Van Der Merwe, Krauseville AH, Pretoria, 0001", href: "#" }, - { label: "Visit Website", href: "https://xenosteel.co.za" }, - ], - }, - ]; - return ( + {/* Navbar */} + {/* Hero Section */}
-
- -
- + {/* Services Section */}
+ {/* Projects Section */} +
+ +
+ + {/* Metrics Section */}
+ {/* Testimonials Section */}
+ {/* Contact CTA Section */}
+ {/* Footer */}
-- 2.49.1