From 98baec1ec5f373ae7b444cbeac6f48ad2da1fafa Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 05:57:29 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index dd182ac..873df1a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -2,7 +2,7 @@ import type { Metadata } from "next"; import "./globals.css"; export const metadata: Metadata = { - title: "Your Shop - Premium Collection", description: "Explore our curated selection of premium products" + title: "Simple Landing Page", description: "A simple landing page with hero, gallery and contact sections" }; export default function RootLayout({ From fd9d341e15894f50a92cb5e55f59b309aaa72ad8 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 05:57:30 +0000 Subject: [PATCH 2/2] 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)} />
- +
); }