From cdc57fa758af93d02846d2e60e8bab04d85a3a1b Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 23 Mar 2026 21:52:50 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 183 +++++++++++++---------------------------------- 1 file changed, 49 insertions(+), 134 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 7ce9bb3..10bc56e 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,149 +1,64 @@ -"use client"; +'use client'; -import { ThemeProvider } from "@/components/ThemeProvider"; +import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; -import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; -import Image from "next/image"; +import FooterCard from '@/components/sections/footer/FooterCard'; +import HeroLogoBillboardSplit from '@/components/sections/hero/HeroLogoBillboardSplit'; +import { Facebook, Twitter, Instagram } from 'lucide-react'; -export default function Home() { +const HomePageContent = () => { const navItems = [ + { name: 'Products', id: '/products' }, + { name: 'Cart', id: '/cart' }, + { name: 'Checkout', id: '/checkout' }, { name: 'Home', id: '/' } ]; return ( - + <> -
-
-

- Get started by editing  - src/app/page.tsx -

- -
- -
- Next.js Logo -
- -
- -

- Docs{" "} - - -> - -

-

- Find in-depth information about Next.js features and API. -

-
- - -

- Learn{" "} - - -> - -

-

- Learn about Next.js in an interactive course with quizzes! -

-
- - -

- Templates{" "} - - -> - -

-

- Discover and deploy boilerplate example Next.js projects. -

-
- - -

- Deploy{" "} - - -> - -

-

- Instantly deploy your Next.js site to a shareable URL with Vercel. -

-
-
+
+ +
+
+

Discover Our Products

+ {/* Placeholder for other homepage sections (e.g., product showcase, features) */} +

Explore our wide range of high-quality fishing tackle.

- + + + ); +}; + +export default function HomePage() { + return ( + + ); }