diff --git a/src/app/page.tsx b/src/app/page.tsx index 4836f78..451e8aa 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,144 +1,326 @@ "use client"; -import { ThemeProvider } from "@/components/theme/ThemeProvider"; -import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple"; -import HeroBillboardCarousel from "@/components/sections/hero/HeroBillboardCarousel"; -import SplitAbout from "@/components/sections/about/SplitAbout"; -import FeatureCardTwentySix from "@/components/sections/feature/FeatureCardTwentySix"; -import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; -import { Zap, Shield, Flame, Gauge } from "lucide-react"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import HeroLogoBillboardSplit from '@/components/sections/hero/HeroLogoBillboardSplit'; +import MediaAbout from '@/components/sections/about/MediaAbout'; +import FeatureCardSixteen from '@/components/sections/feature/FeatureCardSixteen'; +import ProductCardOne from '@/components/sections/product/ProductCardOne'; +import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven'; +import TeamCardOne from '@/components/sections/team/TeamCardOne'; +import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve'; +import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; +import Link from "next/link"; -const heroImages = [ - { imageSrc: "/hero/car1.jpg", imageAlt: "Classic muscle car" }, - { imageSrc: "/hero/car2.jpg", imageAlt: "High-performance supercar" }, - { imageSrc: "/hero/car3.jpg", imageAlt: "Modern sports car" }, - { imageSrc: "/hero/car4.jpg", imageAlt: "Custom tuned vehicle" }, - { imageSrc: "/hero/car5.jpg", imageAlt: "Racing machine" }, -]; +export default function HomePage() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "Knowledge Base", id: "/knowledge-base" }, + { name: "Team", id: "team" }, + { name: "Support", id: "contact" }, + { name: "Resources", id: "resources" }, + ]; -const features = [ - { - title: "Engine Performance", description: "Unleash maximum horsepower and torque", imageSrc: "/features/engine.jpg", imageAlt: "Engine performance", buttonIcon: Zap, - buttonHref: "#features"}, - { - title: "Safety Systems", description: "Advanced protection for every drive", imageSrc: "/features/safety.jpg", imageAlt: "Safety features", buttonIcon: Shield, - buttonHref: "#features"}, - { - title: "Turbo Boost", description: "Acceleration beyond expectations", imageSrc: "/features/turbo.jpg", imageAlt: "Turbo systems", buttonIcon: Flame, - buttonHref: "#features"}, - { - title: "Performance Tuning", description: "Optimize every aspect of your vehicle", imageSrc: "/features/tuning.jpg", imageAlt: "Performance tuning", buttonIcon: Gauge, - buttonHref: "#features"}, -]; + const footerColumns = [ + { + title: "Navigation", + items: [ + { label: "Home", href: "/" }, + { label: "Knowledge Base", href: "/knowledge-base" }, + { label: "Team Directory", href: "#team" }, + { label: "Support", href: "#contact" }, + ], + }, + { + title: "Resources", + items: [ + { label: "Policies", href: "/policies" }, + { label: "Benefits", href: "#" }, + { label: "IT Help", href: "#" }, + { label: "Learning Center", href: "#" }, + ], + }, + { + title: "Support", + items: [ + { label: "Contact Support", href: "mailto:support@company.com" }, + { label: "Report an Issue", href: "mailto:bugs@company.com" }, + { label: "FAQ", href: "#faq" }, + { label: "Feedback", href: "mailto:suggestions@company.com" }, + ], + }, + { + title: "Legal", + items: [ + { label: "Privacy Policy", href: "#" }, + { label: "Terms of Service", href: "#" }, + { label: "Cookie Policy", href: "#" }, + { label: "Accessibility", href: "#" }, + ], + }, + ]; -const aboutBullets = [ - { - title: "Passion Driven", description: "We live and breathe automotive excellence", icon: Flame, - }, - { - title: "Community First", description: "Connect with fellow petrolheads worldwide", icon: Zap, - }, - { - title: "Pure Performance", description: "Every modification engineered for maximum impact", icon: Gauge, - }, -]; - -const footerColumns = [ - { - title: "Platform", items: [ - { label: "Home", href: "/" }, - { label: "Checkout", href: "/checkout" }, - { label: "About", href: "#about" }, - { label: "Features", href: "#features" }, - ], - }, - { - title: "Community", items: [ - { label: "Petrolheads", href: "/" }, - { label: "Car Lovers", href: "/" }, - { label: "Events", href: "#features" }, - { label: "Forums", href: "/" }, - ], - }, - { - title: "Support", items: [ - { label: "Help Center", href: "/" }, - { label: "Contact", href: "/" }, - { label: "Privacy", href: "/" }, - { label: "Terms", href: "/" }, - ], - }, -]; - -export default function Home() { return ( - + {/* Navbar */} + + {/* Hero Section */}
- -
- -
-
+ {/* About Section */} +
+ +
+ + {/* Features Section */}
-
- + {/* Products/Resources Section */} +
+ +
+ + {/* Metrics Section */} +
+ +
+ + {/* Team Section */} +
+ +
+ + {/* Testimonials Section */} +
+ +
+ + {/* Footer */} +
); -} +} \ No newline at end of file