26 Commits

Author SHA1 Message Date
d383d50135 Update src/app/shop/page.tsx 2026-02-20 23:06:03 +00:00
0b26938d7a Update src/app/shop/[id]/page.tsx 2026-02-20 23:06:02 +00:00
deccbe9277 Update src/app/features/page.tsx 2026-02-20 23:06:01 +00:00
2032ab0bdf Update src/app/blog/page.tsx 2026-02-20 23:06:00 +00:00
a299f6c239 Update src/app/shop/page.tsx 2026-02-20 23:03:28 +00:00
9619767b45 Update src/app/shop/[id]/page.tsx 2026-02-20 23:03:28 +00:00
159e8b5415 Update src/app/page.tsx 2026-02-20 23:03:27 +00:00
b0b0b41084 Add src/app/features/page.tsx 2026-02-20 23:03:25 +00:00
64f367aea4 Update src/app/blog/page.tsx 2026-02-20 23:03:25 +00:00
aa8e9ab401 Merge version_4 into main
Merge version_4 into main
2026-02-20 22:57:53 +00:00
df4b1f1581 Update src/app/shop/page.tsx 2026-02-20 22:57:49 +00:00
77e88f93a6 Update src/app/shop/[id]/page.tsx 2026-02-20 22:57:48 +00:00
43c762bff0 Merge version_4 into main
Merge version_4 into main
2026-02-20 22:55:55 +00:00
80f64d47e0 Update src/app/shop/page.tsx 2026-02-20 22:55:51 +00:00
3e186c97e0 Update src/app/shop/[id]/page.tsx 2026-02-20 22:55:50 +00:00
304cf53633 Update src/app/page.tsx 2026-02-20 22:55:50 +00:00
ac7b1d495b Merge version_3 into main
Merge version_3 into main
2026-02-20 22:43:17 +00:00
dcf168ff3a Update src/app/page.tsx 2026-02-20 22:43:13 +00:00
5da979e1e6 Merge version_2 into main
Merge version_2 into main
2026-02-20 22:39:35 +00:00
bb1164064b Update src/app/page.tsx 2026-02-20 22:39:30 +00:00
a89f077b5d Merge version_2 into main
Merge version_2 into main
2026-02-20 22:38:44 +00:00
6726a4f9d5 Update src/app/shop/page.tsx 2026-02-20 22:38:40 +00:00
e60a429629 Update src/app/page.tsx 2026-02-20 22:38:39 +00:00
0bac217386 Update src/app/layout.tsx 2026-02-20 22:38:38 +00:00
5507021a35 Merge version_1 into main
Merge version_1 into main
2026-02-20 22:36:22 +00:00
6fef0f6b42 Merge version_1 into main
Merge version_1 into main
2026-02-20 22:33:43 +00:00
6 changed files with 144 additions and 59 deletions

View File

@@ -31,13 +31,7 @@ export default function BlogPage() {
> >
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay <NavbarLayoutFloatingOverlay
navItems={[ navItems={[{name:"Home",id:"/"},{name:"Features",id:"/features"},{name:"Solutions",id:"#products"},{name:"Reviews",id:"#testimonials"},{name:"Contact",id:"#contact"}]}
{ name: "Home", id: "/" },
{ name: "Features", id: "/#features" },
{ name: "Solutions", id: "/#products" },
{ name: "Reviews", id: "/#testimonials" },
{ name: "Contact", id: "/#contact" },
]}
brandName="CRM AI" brandName="CRM AI"
button={{ text: "Get Started", href: "#contact" }} button={{ text: "Get Started", href: "#contact" }}
buttonClassName="min-w-[120px] justify-center" buttonClassName="min-w-[120px] justify-center"
@@ -80,4 +74,4 @@ export default function BlogPage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }

83
src/app/features/page.tsx Normal file
View File

@@ -0,0 +1,83 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import FooterCard from '@/components/sections/footer/FooterCard';
import FeatureBorderGlow from '@/components/sections/feature/featureBorderGlow/FeatureBorderGlow';
import {
BarChart2,
ClipboardCheck,
Github,
Linkedin,
Shield,
Twitter,
Workflow,
Zap
} from 'lucide-react';
const socialLinks = [
{ icon: Twitter, href: "https://twitter.com", ariaLabel: "Twitter" },
{ icon: Linkedin, href: "https://linkedin.com", ariaLabel: "LinkedIn" },
{ icon: Github, href: "https://github.com", ariaLabel: "GitHub" },
];
export default function FeaturesPage() {
return (
<ThemeProvider
defaultButtonVariant="text-shift"
defaultTextAnimation="reveal-blur"
borderRadius="soft"
contentWidth="medium"
sizing="largeSmall"
background="aurora"
cardStyle="subtle-shadow"
primaryButtonStyle="primary-glow"
secondaryButtonStyle="radial-glow"
headingFontWeight="bold"
>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[{name:"Home",id:"/"},{name:"Features",id:"/features"},{name:"Solutions",id:"#products"},{name:"Reviews",id:"#testimonials"},{name:"Contact",id:"#contact"}]}
brandName="CRM AI"
button={{text:"Get Started",href:"#contact"}}
buttonClassName="min-w-[120px] justify-center"
buttonTextClassName="relative top-[0.5px]"
className="z-50 backdrop-blur-md"
/>
</div>
<div id="features-glow" data-section="features-glow">
<FeatureBorderGlow
title="Discover Our Cutting-Edge AI Capabilities"
description="Explore the powerful features that make our AI CRM platform an industry leader, designed to supercharge your business growth."
textboxLayout="default"
animationType="slide-up"
useInvertedBackground={false}
features={[
{icon:Zap,title:"Intelligent Lead Scoring",description:"Automatically prioritize high-value leads with AI-driven scoring, focusing your sales efforts where they matter most."},
{icon:Workflow,title:"Automated Task Management",description:"Streamline operations by automating repetitive tasks, freeing up your team to focus on strategic initiatives."},
{icon:BarChart2,title:"Predictive Analytics Dashboard",description:"Gain foresight with advanced analytics, predicting customer churn and future trends to stay ahead of the curve."},
{icon:Shield,title:"Enhanced Data Security",description:"Protect sensitive customer information with robust encryption and AI-powered threat detection, ensuring compliance and trust."},
{icon:ClipboardCheck,title:"Customizable Workflow Automation",description:"Tailor workflows to your unique business needs, automating processes from onboarding to customer support with ease."},
{icon:BarChart2,title:"Omnichannel Customer Engagement",description:"Connect with customers across all channels seamlessly, providing consistent and personalized experiences at every touchpoint."}
]}
tag="Key Features"
className="py-16 md:py-24"
/>
</div>
<div id="footer" data-section="footer">
<FooterCard
logoText="CRM AI"
copyrightText="© 2024 | CRM AI. All rights reserved."
socialLinks={socialLinks}
className="py-16 md:py-20"
cardClassName="py-10 px-6 sm:px-10 md:px-12"
logoClassName="text-lg font-bold"
copyrightTextClassName="text-sm text-foreground/70"
socialContainerClassName="gap-x-4"
/>
</div>
</ThemeProvider>
);
}

View File

@@ -18,7 +18,7 @@ export const metadata: Metadata = {
openGraph: { openGraph: {
title: "CRM AI Platform - Intelligent Customer Management", description: "Revolutionize your CRM with AI. Automate tasks, gain deep customer insights, and drive growth with our cutting-edge AI CRM platform.", url: "https://crm-ai.com", siteName: "CRM AI", images: [ title: "CRM AI Platform - Intelligent Customer Management", description: "Revolutionize your CRM with AI. Automate tasks, gain deep customer insights, and drive growth with our cutting-edge AI CRM platform.", url: "https://crm-ai.com", siteName: "CRM AI", images: [
{ {
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SzEkxKoNyIbQ4hnQYui6BHsfB/an-abstract-futuristic-background-for-an-1771626573815-22f21f54.png", alt: "AI CRM Platform Dashboard"}, url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SzEkxKoNyIbQ4hnQYui6BHsfB/an-abstract-futuristic-background-for-an-1771626573815-22f21f54.png", alt: "AI CRM Platform Dashboard"}
], ],
type: "website"}, type: "website"},
twitter: { twitter: {

View File

@@ -2,32 +2,32 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import HeroCentered from '@/components/sections/hero/HeroCentered'; import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard';
import AboutMetric from '@/components/sections/about/AboutMetric'; import AboutMetric from '@/components/sections/about/AboutMetric';
import FeatureCardTen from '@/components/sections/feature/FeatureCardTen'; import FeatureCardTwentyThree from '@/components/sections/feature/FeatureCardTwentyThree';
import ProductCardOne from '@/components/sections/product/ProductCardOne'; import ProductCardOne from '@/components/sections/product/ProductCardOne';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen'; import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import ContactSplit from '@/components/sections/contact/ContactSplit'; import ContactSplit from '@/components/sections/contact/ContactSplit';
import FooterCard from '@/components/sections/footer/FooterCard'; import FooterCard from '@/components/sections/footer/FooterCard';
import { import {
BarChart2, BarChart2,
ClipboardCheck, ClipboardCheck,
Github, Github,
Globe, Globe,
Heart, Heart,
Linkedin, Linkedin,
Mail, Mail,
MessageSquare, MessageSquare,
Smile, Smile,
Target, Target,
TrendingUp, TrendingUp,
Twitter, Twitter,
User, User,
Users, Users,
Workflow, Workflow,
Zap Zap
} from 'lucide-react'; } from 'lucide-react';
export default function LandingPage() { export default function LandingPage() {
@@ -45,8 +45,8 @@ export default function LandingPage() {
headingFontWeight="bold" headingFontWeight="bold"
> >
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay <NavbarLayoutFloatingOverlay
navItems={[{name:"Home",id:"/"},{name:"Features",id:"#features"},{name:"Solutions",id:"#products"},{name:"Reviews",id:"#testimonials"},{name:"Contact",id:"#contact"}]} navItems={[{name:"Home",id:"/"},{name:"Features",id:"/features"},{name:"Solutions",id:"#products"},{name:"Reviews",id:"#testimonials"},{name:"Contact",id:"#contact"}]}
brandName="CRM AI" brandName="CRM AI"
button={{text:"Get Started",href:"#contact"}} button={{text:"Get Started",href:"#contact"}}
buttonClassName="min-w-[120px] justify-center" buttonClassName="min-w-[120px] justify-center"
@@ -56,20 +56,22 @@ export default function LandingPage() {
</div> </div>
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroCentered <HeroLogoBillboard
title="Revolutionize Your CRM with AI Intelligence" logoText="CRM AI"
description="Unleash the power of artificial intelligence to automate tasks, gain deeper customer insights, and drive unparalleled growth for your business." description="Unleash the power of artificial intelligence to automate tasks, gain deeper customer insights, and drive unparalleled growth for your business."
background={{variant:"sparkles-gradient"}} background={{variant:"sparkles-gradient"}}
avatars={[{src:"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SzEkxKoNyIbQ4hnQYui6BHsfB/a-professional-diverse-avatar-for-a-tech-1771626574115-d7a13233.png",alt:"User 1"},{src:"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SzEkxKoNyIbQ4hnQYui6BHsfB/a-professional-diverse-avatar-for-a-tech-1771626573670-0e58ea72.png",alt:"User 2"},{src:"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SzEkxKoNyIbQ4hnQYui6BHsfB/a-professional-diverse-avatar-for-a-tech-1771626572873-fea810d0.png",alt:"User 3"}]}
avatarText="Trusted by 5,000+ businesses worldwide"
buttons={[{text:"Get Started Free",href:"#contact"},{text:"Watch Demo",href:"#features"}]} buttons={[{text:"Get Started Free",href:"#contact"},{text:"Watch Demo",href:"#features"}]}
buttonAnimation="slide-up" buttonAnimation="slide-up"
className="min-h-[calc(100svh-var(--navbar-height))] md:min-h-[calc(100vh-var(--navbar-height))] pt-[var(--navbar-height)]" imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SzEkxKoNyIbQ4hnQYui6BHsfB/a-user-friendly-interface-showcasing-ai--1771626574716-a33c15c9.png?_wi=1"
imageAlt="AI-Powered Automation Interface"
mediaAnimation="opacity"
frameStyle="card"
className="min-h-[calc(100svh-var(--navbar-height))] md:min-h-[calc(100vh-var(--navbar-height))] pt-[var(--navbar-height))]"
/> />
</div> </div>
<div id="metrics" data-section="metrics"> <div id="metrics" data-section="metrics">
<AboutMetric <AboutMetric
title="Experience Tangible Results with Our AI CRM" title="Experience Tangible Results with Our AI CRM"
metrics={[{icon:Zap,label:"Sales Efficiency Boost",value:"70%"},{icon:Users,label:"Customer Satisfaction",value:"95%"},{icon:TrendingUp,label:"Revenue Growth",value:"2.5x"},{icon:Globe,label:"Global Adoption",value:"1500+"}]} metrics={[{icon:Zap,label:"Sales Efficiency Boost",value:"70%"},{icon:Users,label:"Customer Satisfaction",value:"95%"},{icon:TrendingUp,label:"Revenue Growth",value:"2.5x"},{icon:Globe,label:"Global Adoption",value:"1500+"}]}
metricsAnimation="slide-up" metricsAnimation="slide-up"
@@ -79,20 +81,24 @@ export default function LandingPage() {
</div> </div>
<div id="features" data-section="features"> <div id="features" data-section="features">
<FeatureCardTen <FeatureCardTwentyThree
title="Smart Features Designed for Your Success" title="Smart Features Designed for Your Success"
description="Our AI CRM platform comes packed with intelligent tools to streamline operations, enhance customer relationships, and accelerate your business growth." description="Our AI CRM platform comes packed with intelligent tools to streamline operations, enhance customer relationships, and accelerate your business growth."
textboxLayout="default" textboxLayout="default"
animationType="slide-up" animationType="slide-up"
useInvertedBackground={false} useInvertedBackground={false}
features={[{id:"1",title:"AI-Powered Automation",description:"Automate repetitive tasks like data entry, lead scoring, and email sequences, freeing up your team to focus on high-value activities.",media:{imageSrc:"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SzEkxKoNyIbQ4hnQYui6BHsfB/a-user-friendly-interface-showcasing-ai--1771626574716-a33c15c9.png",imageAlt:"AI-Powered Automation Interface"},items:[{icon:Workflow,text:"Automated Lead Qualification"},{icon:Mail,text:"Intelligent Email Campaigns"},{icon:ClipboardCheck,text:"Smart Task Prioritization"}],reverse:false},{id:"2",title:"Deep Customer Insights",description:"Leverage AI to analyze customer behavior, predict churn, and identify cross-selling opportunities, giving you a 360-degree view of your clients.",media:{imageSrc:"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SzEkxKoNyIbQ4hnQYui6BHsfB/an-ai-crm-platform-displaying-deep-custo-1771626574569-fd46e2c4.png",imageAlt:"Customer Insights Dashboard"},items:[{icon:BarChart2,text:"Predictive Analytics"},{icon:Smile,text:"Sentiment Analysis"},{icon:Target,text:"Customer Segmentation"}],reverse:true},{id:"3",title:"Personalized Engagement",description:"Deliver hyper-personalized experiences across all touchpoints with AI-driven content recommendations and adaptive communication strategies.",media:{imageSrc:"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SzEkxKoNyIbQ4hnQYui6BHsfB/a-crm-interface-demonstrating-ai-driven--1771626575190-6adb5515.png",imageAlt:"Personalized Customer Engagement"},items:[{icon:User,text:"Dynamic Content Delivery"},{icon:MessageSquare,text:"AI-Powered Chatbots"},{icon:Heart,text:"Enhanced Customer Loyalty"}],reverse:false}]} features={[
{id:"1",title:"AI-Powered Automation",tags:["AI Capabilities","AI-Powered Feature"],imageSrc:"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SzEkxKoNyIbQ4hnQYui6BHsfB/a-user-friendly-interface-showcasing-ai--1771626574716-a33c15c9.png?_wi=2",imageAlt:"AI-Powered Automation Interface"},
{id:"2",title:"Deep Customer Insights",tags:["AI Capabilities","Deep Feature"],imageSrc:"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SzEkxKoNyIbQ4hnQYui6BHsfB/an-ai-crm-platform-displaying-deep-custo-1771626574569-fd46e2c4.png?_wi=2",imageAlt:"Customer Insights Dashboard"},
{id:"3",title:"Personalized Engagement",tags:["AI Capabilities","Personalized Feature"],imageSrc:"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SzEkxKoNyIbQ4hnQYui6BHsfB/a-crm-interface-demonstrating-ai-driven--1771626575190-6adb5515.png?_wi=2",imageAlt:"Personalized Customer Engagement"}
]}
tag="AI Capabilities" tag="AI Capabilities"
className="py-16 md:py-24" className="py-16 md:py-24"
/> />
</div> </div>
<div id="products" data-section="products"> <div id="products" data-section="products">
<ProductCardOne <ProductCardOne
title="Explore Our AI CRM Modules" title="Explore Our AI CRM Modules"
description="Discover specialized modules designed to optimize every aspect of your customer relationship management." description="Discover specialized modules designed to optimize every aspect of your customer relationship management."
textboxLayout="default" textboxLayout="default"
@@ -110,7 +116,7 @@ export default function LandingPage() {
</div> </div>
<div id="social-proof" data-section="social-proof"> <div id="social-proof" data-section="social-proof">
<SocialProofOne <SocialProofOne
title="Trusted by Leading Innovators" title="Trusted by Leading Innovators"
description="Join the ranks of top companies leveraging AI to transform their CRM strategies." description="Join the ranks of top companies leveraging AI to transform their CRM strategies."
textboxLayout="default" textboxLayout="default"
@@ -125,7 +131,7 @@ export default function LandingPage() {
</div> </div>
<div id="testimonials" data-section="testimonials"> <div id="testimonials" data-section="testimonials">
<TestimonialCardSixteen <TestimonialCardSixteen
title="Hear from Our Satisfied Clients" title="Hear from Our Satisfied Clients"
description="Real stories from businesses that revolutionized their CRM with our AI platform." description="Real stories from businesses that revolutionized their CRM with our AI platform."
textboxLayout="default" textboxLayout="default"
@@ -139,7 +145,7 @@ export default function LandingPage() {
</div> </div>
<div id="faq" data-section="faq"> <div id="faq" data-section="faq">
<FaqSplitMedia <FaqSplitMedia
title="Frequently Asked Questions" title="Frequently Asked Questions"
description="Find quick answers to the most common questions about our AI CRM platform." description="Find quick answers to the most common questions about our AI CRM platform."
textboxLayout="default" textboxLayout="default"
@@ -156,13 +162,13 @@ export default function LandingPage() {
</div> </div>
<div id="contact" data-section="contact"> <div id="contact" data-section="contact">
<ContactSplit <ContactSplit
tag="Get Started" tag="Get Started"
title="Ready to Transform Your CRM?" title="Ready to Transform Your CRM?"
description="Connect with our experts to discover how our AI platform can drive unprecedented growth for your business." description="Connect with our experts to discover how our AI platform can drive unprecedented growth for your business."
background={{variant:"sparkles-gradient"}} background={{variant:"sparkles-gradient"}}
useInvertedBackground={false} useInvertedBackground={false}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SzEkxKoNyIbQ4hnQYui6BHsfB/a-sleek-dark-themed-ai-dashboard-with-ke-1771626574319-f8745f67.png" imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SzEkxKoNyIbQ4hnQYui6BHsfB/a-sleek-dark-themed-ai-dashboard-with-ke-1771626574319-f8745f67.png?_wi=2"
imageAlt="AI CRM dashboard for contact section" imageAlt="AI CRM dashboard for contact section"
mediaAnimation="opacity" mediaAnimation="opacity"
mediaPosition="left" mediaPosition="left"
@@ -175,7 +181,7 @@ export default function LandingPage() {
</div> </div>
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterCard <FooterCard
logoText="CRM AI" logoText="CRM AI"
copyrightText="© 2024 | CRM AI. All rights reserved." copyrightText="© 2024 | CRM AI. All rights reserved."
socialLinks={[{icon:Twitter,href:"https://twitter.com",ariaLabel:"Twitter"},{icon:Linkedin,href:"https://linkedin.com",ariaLabel:"LinkedIn"},{icon:Github,href:"https://github.com",ariaLabel:"GitHub"}]} socialLinks={[{icon:Twitter,href:"https://twitter.com",ariaLabel:"Twitter"},{icon:Linkedin,href:"https://linkedin.com",ariaLabel:"LinkedIn"},{icon:Github,href:"https://github.com",ariaLabel:"GitHub"}]}
@@ -188,4 +194,4 @@ export default function LandingPage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }

View File

@@ -90,9 +90,9 @@ function ProductPageContent({ params }: ProductPageProps) {
headingFontWeight="bold" headingFontWeight="bold"
> >
<ReactLenis root> <ReactLenis root>
<div id="navbar" data-section="navbar"> <div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay <NavbarLayoutFloatingOverlay
navItems={[{ name: "Home", id: "/" }, { name: "Shop", id: "/shop" }]} navItems={[{name:"Home",id:"/"},{name:"Features",id:"/features"},{name:"Solutions",id:"#products"},{name:"Reviews",id:"#testimonials"},{name:"Contact",id:"#contact"}]}
brandName="CRM AI" brandName="CRM AI"
button={{ text: "Cart", onClick: () => setCartOpen(true) }} button={{ text: "Cart", onClick: () => setCartOpen(true) }}
buttonClassName="min-w-[120px] justify-center" buttonClassName="min-w-[120px] justify-center"
@@ -139,9 +139,9 @@ function ProductPageContent({ params }: ProductPageProps) {
headingFontWeight="bold" headingFontWeight="bold"
> >
<ReactLenis root> <ReactLenis root>
<div id="navbar" data-section="navbar"> <div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay <NavbarLayoutFloatingOverlay
navItems={[{ name: "Home", id: "/" }, { name: "Shop", id: "/shop" }]} navItems={[{name:"Home",id:"/"},{name:"Features",id:"/features"},{name:"Solutions",id:"#products"},{name:"Reviews",id:"#testimonials"},{name:"Contact",id:"#contact"}]}
brandName="CRM AI" brandName="CRM AI"
button={{ text: "Cart", onClick: () => setCartOpen(true) }} button={{ text: "Cart", onClick: () => setCartOpen(true) }}
buttonClassName="min-w-[120px] justify-center" buttonClassName="min-w-[120px] justify-center"
@@ -195,9 +195,9 @@ function ProductPageContent({ params }: ProductPageProps) {
headingFontWeight="bold" headingFontWeight="bold"
> >
<ReactLenis root> <ReactLenis root>
<div id="navbar" data-section="navbar"> <div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay <NavbarLayoutFloatingOverlay
navItems={[{ name: "Home", id: "/" }, { name: "Shop", id: "/shop" }]} navItems={[{name:"Home",id:"/"},{name:"Features",id:"/features"},{name:"Solutions",id:"#products"},{name:"Reviews",id:"#testimonials"},{name:"Contact",id:"#contact"}]}
brandName="CRM AI" brandName="CRM AI"
button={{ text: "Cart", onClick: () => setCartOpen(true) }} button={{ text: "Cart", onClick: () => setCartOpen(true) }}
buttonClassName="min-w-[120px] justify-center" buttonClassName="min-w-[120px] justify-center"
@@ -260,4 +260,4 @@ function ProductPageContent({ params }: ProductPageProps) {
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }

View File

@@ -31,7 +31,9 @@ export default function ShopPage() {
getCheckoutItems, getCheckoutItems,
} = useCart(); } = useCart();
const { checkout, isLoading: isCheckoutLoading } = useCheckout(); const {
checkout, isLoading: isCheckoutLoading
} = useCheckout();
const handleCheckout = useCallback(async () => { const handleCheckout = useCallback(async () => {
if (cartItems.length === 0) return; if (cartItems.length === 0) return;
@@ -57,9 +59,9 @@ export default function ShopPage() {
headingFontWeight="bold" headingFontWeight="bold"
> >
<ReactLenis root> <ReactLenis root>
<div id="navbar" data-section="navbar"> <div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay <NavbarLayoutFloatingOverlay
navItems={[{ name: "Home", id: "/" }, { name: "Shop", id: "/shop" }]} navItems={[{name:"Home",id:"/"},{name:"Features",id:"/features"},{name:"Solutions",id:"#products"},{name:"Reviews",id:"#testimonials"},{name:"Contact",id:"#contact"}]}
brandName="CRM AI" brandName="CRM AI"
button={{ text: "Cart", onClick: () => setCartOpen(true) }} button={{ text: "Cart", onClick: () => setCartOpen(true) }}
buttonClassName="min-w-[120px] justify-center" buttonClassName="min-w-[120px] justify-center"
@@ -105,9 +107,9 @@ export default function ShopPage() {
headingFontWeight="bold" headingFontWeight="bold"
> >
<ReactLenis root> <ReactLenis root>
<div id="navbar" data-section="navbar"> <div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay <NavbarLayoutFloatingOverlay
navItems={[{ name: "Home", id: "/" }, { name: "Shop", id: "/shop" }]} navItems={[{name:"Home",id:"/"},{name:"Features",id:"/features"},{name:"Solutions",id:"#products"},{name:"Reviews",id:"#testimonials"},{name:"Contact",id:"#contact"}]}
brandName="CRM AI" brandName="CRM AI"
button={{ text: "Cart", onClick: () => setCartOpen(true) }} button={{ text: "Cart", onClick: () => setCartOpen(true) }}
buttonClassName="min-w-[120px] justify-center" buttonClassName="min-w-[120px] justify-center"
@@ -160,4 +162,4 @@ export default function ShopPage() {
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }