From fd9d341e15894f50a92cb5e55f59b309aaa72ad8 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 05:57:30 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 249 +++++++++++++++++------------------------------ 1 file changed, 92 insertions(+), 157 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 4c396d7..9e0aad0 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,189 +1,124 @@ "use client"; -import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; -import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll'; -import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; -import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout'; -import FeatureCardMedia from '@/components/sections/feature/FeatureCardMedia'; -import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; -import ContactText from '@/components/sections/contact/ContactText'; -import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; -import { Sparkles, Star } from 'lucide-react'; +import { ThemeProvider } from "@/components/providers/ThemeProvider"; +import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; +import HeroBillboardCarousel from "@/components/sections/hero/HeroBillboardCarousel"; +import FeatureCardOne from "@/components/sections/feature/FeatureCardOne"; +import ContactSplitForm from "@/components/sections/contact/ContactSplitForm"; +import FooterBaseCard from "@/components/sections/footer/FooterBaseCard"; + +export default function Home() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "Gallery", id: "#gallery" }, + { name: "Contact", id: "#contact" }, + ]; + + const galleryImages = [ + { imageSrc: "/placeholders/placeholder-16-9.svg", imageAlt: "Gallery item 1" }, + { imageSrc: "/placeholders/placeholder-16-9.svg", imageAlt: "Gallery item 2" }, + { imageSrc: "/placeholders/placeholder-16-9.svg", imageAlt: "Gallery item 3" }, + { imageSrc: "/placeholders/placeholder-16-9.svg", imageAlt: "Gallery item 4" }, + { imageSrc: "/placeholders/placeholder-16-9.svg", imageAlt: "Gallery item 5" }, + ]; + + const galleryItems = galleryImages.map((item, index) => ({ + title: `Item ${index + 1}`, + description: `Beautiful gallery item showcasing our work and creativity`, + imageSrc: item.imageSrc, + imageAlt: item.imageAlt, + })); + + const footerColumns = [ + { + title: "Product", items: [ + { label: "Features", href: "#gallery" }, + { label: "Gallery", href: "#gallery" }, + ], + }, + { + title: "Company", items: [ + { label: "About", href: "/" }, + { label: "Contact", href: "#contact" }, + ], + }, + ]; -export default function LandingPage() { return ( - +
-
-
- + -
- -
- -
- - - -
-
- console.log("Form submitted:", data)} />
- +
); }