Merge version_4 into main #7

Merged
bender merged 2 commits from version_4 into main 2026-03-04 01:42:35 +00:00
2 changed files with 115 additions and 1 deletions

View File

@@ -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" },
]}
/>
</div>

114
src/app/shop/page.tsx Normal file
View File

@@ -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 (
<ThemeProvider
defaultButtonVariant="text-shift"
defaultTextAnimation="entrance-slide"
borderRadius="soft"
contentWidth="medium"
sizing="large"
background="circleGradient"
cardStyle="gradient-mesh"
primaryButtonStyle="primary-glow"
secondaryButtonStyle="layered"
headingFontWeight="normal"
>
<div id="nav" data-section="nav">
<NavbarStyleApple
brandName="Marketing Pro"
navItems={[
{ name: "Services", id: "services" },
{ name: "Portfolio", id: "portfolio" },
{ name: "About", id: "about" },
{ name: "Shop", id: "/shop" },
{ name: "Contact", id: "contact" },
]}
/>
</div>
<div id="products" data-section="products">
<ProductCardOne
title="Shop Our Products"
description="Browse our collection of premium marketing tools and resources to elevate your brand"
tag="Products"
tagIcon={ShoppingCart}
tagAnimation="slide-up"
products={[
{
id: "1", name: "Brand Strategy Guide", price: "$49.99", imageSrc: "http://img.b2bpic.net/free-photo/business-books-desk-office_1098-660.jpg", imageAlt: "Brand strategy guide", onProductClick: () => 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"
/>
</div>
<div id="contact" data-section="contact">
<ContactSplit
tag="Get Support"
tagIcon={Mail}
title="Have questions about our products?"
description="Our team is here to help you find the perfect solution for your marketing needs. Reach out and let's discuss what works best for you."
tagAnimation="slide-up"
background={{ variant: "sparkles-gradient" }}
useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/businesswomen-doing-interview_1098-663.jpg"
imageAlt="Product support and consultation"
mediaAnimation="slide-up"
mediaPosition="right"
inputPlaceholder="your@email.com"
buttonText="Contact Us"
termsText="We respect your privacy. Unsubscribe anytime. See our privacy policy for details."
/>
</div>
<div id="footer" data-section="footer">
<FooterCard
logoText="Marketing Pro"
copyrightText="© 2025 Marketing Pro Agency. All rights reserved."
socialLinks={[
{
icon: Twitter,
href: "https://twitter.com/marketingpro", ariaLabel: "Follow us on Twitter"},
{
icon: Linkedin,
href: "https://linkedin.com/company/marketingpro", ariaLabel: "Connect on LinkedIn"},
{
icon: Instagram,
href: "https://instagram.com/marketingpro", ariaLabel: "Follow us on Instagram"},
{
icon: Facebook,
href: "https://facebook.com/marketingpro", ariaLabel: "Like us on Facebook"},
]}
/>
</div>
</ThemeProvider>
);
}