From f40f1f2271d10bc7e02fc385987e703b6068b031 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 09:36:22 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 353 +++++------------------------------------------ 1 file changed, 38 insertions(+), 315 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 451e8aa..d3358f8 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,326 +1,49 @@ -"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 '@/components/theme/ThemeProvider'; +import { ReactLenis } from '@react-three/drei'; +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 */} - +
+
+

Welcome to Webild

+

Explore our payment solutions and community

+
+ + Payment Methods + + + Community + +
+
+
+
); -} \ No newline at end of file +}