From 5e6c726885fe9ef8f340d6bc760435e7557b4b32 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 7 Apr 2026 18:47:47 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 152 ++++++++++++++++++++++------------------------- 1 file changed, 70 insertions(+), 82 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index c2c5f79..5d3e98b 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,16 +1,16 @@ "use client"; -import HeroBillboardDashboard from "@/components/sections/hero/HeroBillboardDashboard"; +import HeroLogoBillboard from "@/components/sections/hero/HeroLogoBillboard"; import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; -import FeatureHoverPattern from "@/components/sections/feature/featureHoverPattern/FeatureHoverPattern"; -import MetricSplitMediaAbout from "@/components/sections/about/MetricSplitMediaAbout"; -import TestimonialCardSix from "@/components/sections/testimonial/TestimonialCardSix"; -import PricingCardThree from "@/components/sections/pricing/PricingCardThree"; -import FaqDouble from "@/components/sections/faq/FaqDouble"; -import ContactCTA from "@/components/sections/contact/ContactCTA"; -import FooterBaseCard from "@/components/sections/footer/FooterBaseCard"; +import FeatureCardMedia from "@/components/sections/feature/FeatureCardMedia"; +import AboutMetric from "@/components/sections/about/AboutMetric"; +import TestimonialCardThirteen from "@/components/sections/testimonial/TestimonialCardThirteen"; +import PricingCardNine from "@/components/sections/pricing/PricingCardNine"; +import FaqSplitText from "@/components/sections/faq/FaqSplitText"; +import ContactText from "@/components/sections/contact/ContactText"; +import FooterCard from "@/components/sections/footer/FooterCard"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import { Bot, ShoppingBag, Store, Zap, Sparkles, MessageSquare, CreditCard, HelpCircle, Mail, Settings, Shield, BarChart3, Clock, Layers } from "lucide-react"; +import { Bot, ShoppingBag, Store, Zap, Sparkles, MessageSquare, CreditCard, HelpCircle, Mail, Settings, Shield, BarChart3, Clock, Layers, Star } from "lucide-react"; export default function ShopAIAgentPage() { const navItems = [ @@ -20,42 +20,31 @@ export default function ShopAIAgentPage() { ]; const testimonials = [ - { id: "1", name: "Elena Rossi", handle: "CEO, BellaVogue", testimonial: "Our shop's conversion rate jumped 40% after we deployed the AI shopping assistant. It handles thousands of customer queries perfectly.", imageSrc: "asset://user1" }, - { id: "2", name: "Mark Chen", handle: "Owner, TechGifts", testimonial: "Finally, a shopping assistant that actually understands product context. My team can focus on operations while the agent manages customer support.", imageSrc: "asset://user2" }, - { id: "3", name: "Sarah Jenkins", handle: "Founder, HomeDecor", testimonial: "The integration was seamless. Our customers love the personalized recommendations provided by the agent.", imageSrc: "asset://user3" }, + { id: "1", name: "Elena Rossi", handle: "CEO, BellaVogue", testimonial: "Our shop's conversion rate jumped 40% after we deployed the AI shopping assistant. It handles thousands of customer queries perfectly.", rating: 5, icon: Star }, + { id: "2", name: "Mark Chen", handle: "Owner, TechGifts", testimonial: "Finally, a shopping assistant that actually understands product context. My team can focus on operations while the agent manages customer support.", rating: 5, icon: Star }, + { id: "3", name: "Sarah Jenkins", handle: "Founder, HomeDecor", testimonial: "The integration was seamless. Our customers love the personalized recommendations provided by the agent.", rating: 5, icon: Star }, ]; const pricingPlans = [ - { id: "basic", price: "$49/mo", name: "Essentials", buttons: [{ text: "Start Trial", href: "#" }], features: ["Up to 1,000 queries", "Standard product sync", "Email support"] }, - { id: "growth", badge: "Best Value", price: "$199/mo", name: "Growth", buttons: [{ text: "Start Trial", href: "#" }], features: ["Unlimited queries", "Smart product recommendations", "Priority support", "Multi-channel support"] }, - { id: "pro", price: "$499/mo", name: "Enterprise", buttons: [{ text: "Contact Sales", href: "#" }], features: ["Custom AI tuning", "API access", "Dedicated account manager", "Advanced analytics"] }, + { id: "basic", title: "Essentials", price: "$49", period: "/mo", button: { text: "Start Trial", href: "#" }, features: ["Up to 1,000 queries", "Standard product sync", "Email support"] }, + { id: "growth", title: "Growth", price: "$199", period: "/mo", button: { text: "Start Trial", href: "#" }, features: ["Unlimited queries", "Smart product recommendations", "Priority support", "Multi-channel support"] }, + { id: "pro", title: "Enterprise", price: "$499", period: "/mo", button: { text: "Contact Sales", href: "#" }, features: ["Custom AI tuning", "API access", "Dedicated account manager", "Advanced analytics"] }, ]; return ( - - - + + -
- -
-
- +
- - -
- + +
+
+ +
+
+
- -
- + +
+
+ +
+ -
); } \ No newline at end of file -- 2.49.1