From 13918aea18766ccc6494f0852bb8962a0f87f500 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 01:42:29 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index c2ef8dd..ffe0921 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -34,8 +34,8 @@ export default function LandingPage() { { name: "Services", id: "services" }, { name: "Portfolio", id: "portfolio" }, { name: "About", id: "about" }, + { name: "Shop", id: "/shop" }, { name: "Contact", id: "contact" }, - { name: "Blog", id: "https://blog.marketingpro.com" }, ]} /> -- 2.49.1 From e7fd763f77ef5602c3e63e1bc7b7af61d5e5ef31 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 01:42:30 +0000 Subject: [PATCH 2/2] Add src/app/shop/page.tsx --- src/app/shop/page.tsx | 114 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 114 insertions(+) create mode 100644 src/app/shop/page.tsx diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx new file mode 100644 index 0000000..857257b --- /dev/null +++ b/src/app/shop/page.tsx @@ -0,0 +1,114 @@ +"use client"; + +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import ProductCardOne from '@/components/sections/product/ProductCardOne'; +import ContactSplit from '@/components/sections/contact/ContactSplit'; +import FooterCard from '@/components/sections/footer/FooterCard'; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import { Award, Facebook, Heart, Instagram, Linkedin, Mail, ShoppingCart, Twitter } from "lucide-react"; + +export default function ShopPage() { + return ( + + + +
+ console.log('clicked'), + }, + { + id: "2", name: "Social Media Templates", price: "$29.99", imageSrc: "http://img.b2bpic.net/free-photo/laptop-social-media-marketing_23-2150063158.jpg", imageAlt: "Social media templates", onProductClick: () => console.log('clicked'), + }, + { + id: "3", name: "Content Calendar Kit", price: "$39.99", imageSrc: "http://img.b2bpic.net/free-photo/calendar-planner-office-desk_1098-661.jpg", imageAlt: "Content calendar kit", onProductClick: () => console.log('clicked'), + }, + { + id: "4", name: "Analytics Dashboard Pro", price: "$99.99", imageSrc: "http://img.b2bpic.net/free-photo/tablet-shows-analytics-data-meeting_482257-120318.jpg", imageAlt: "Analytics dashboard", onProductClick: () => console.log('clicked'), + }, + { + id: "5", name: "Email Campaign Builder", price: "$59.99", imageSrc: "http://img.b2bpic.net/free-photo/email-marketing-campaign_23-2150063159.jpg", imageAlt: "Email campaign builder", onProductClick: () => console.log('clicked'), + }, + { + id: "6", name: "Video Marketing Bundle", price: "$79.99", imageSrc: "http://img.b2bpic.net/free-photo/video-production-setup_23-2150063160.jpg", imageAlt: "Video marketing bundle", onProductClick: () => console.log('clicked'), + }, + ]} + gridVariant="three-columns-all-equal-width" + animationType="slide-up" + textboxLayout="default" + useInvertedBackground={false} + buttons={[{ text: "View All Products", href: "/shop" }]} + buttonAnimation="blur-reveal" + /> +
+ +
+ +
+ + +
+ ); +} -- 2.49.1