From 643e905de04aab0b13aceeb8fe43e78d64e3cc6b Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 09:40:01 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 350 +++++------------------------------------------ 1 file changed, 35 insertions(+), 315 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 451e8aa..c3b6fb0 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,325 +1,45 @@ -"use client"; +'use client'; -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"; - -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 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: "#" }, - ], - }, - ]; +import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider'; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +export default function Home() { return ( - {/* Navbar */} - - - {/* Hero Section */} -
- -
- - {/* About Section */} -
- -
- - {/* Features Section */} -
- -
- - {/* Products/Resources Section */} -
- -
- - {/* Metrics Section */} -
- -
- - {/* Team Section */} -
- -
- - {/* Testimonials Section */} -
- -
- - {/* Footer */} -