From 7761bb5d6487f66d3a88bf157be55acd39ebca23 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 17:34:39 +0000 Subject: [PATCH] Update src/app/product/[id]/page.tsx --- src/app/product/[id]/page.tsx | 388 ++++------------------------------ 1 file changed, 37 insertions(+), 351 deletions(-) diff --git a/src/app/product/[id]/page.tsx b/src/app/product/[id]/page.tsx index d39d0dc..cf1635f 100644 --- a/src/app/product/[id]/page.tsx +++ b/src/app/product/[id]/page.tsx @@ -2,205 +2,11 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; -import FeatureCardOne from "@/components/sections/feature/FeatureCardOne"; -import ProductCardTwo from "@/components/sections/product/ProductCardTwo"; -import TestimonialCardOne from "@/components/sections/testimonial/TestimonialCardOne"; import ContactCenter from "@/components/sections/contact/ContactCenter"; import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; -import { useParams } from "next/navigation"; -import { Heart, Mail, CheckCircle, Star } from "lucide-react"; -import Link from "next/link"; - -export default function ProductDetailsPage() { - const params = useParams(); - const productId = params?.id as string; - - // Mock product details data - const productDetails: Record = { - "prod-1": { - id: "prod-1", - name: "Complete Python Programming Guide", - brand: "Digital Store", - price: "$29.99", - rating: 5, - reviewCount: "2.3k", - imageSrc: "http://img.b2bpic.net/free-photo/funny-little-girl-headphones-with-laptop-plays-games-game-addiction-concept_169016-53925.jpg?_wi=7", - description: "Master Python from basics to advanced concepts with this comprehensive guide covering data structures, algorithms, web development, and more.", - features: [ - { - title: "Step-by-Step Learning", - description: "Start from the fundamentals and progress to advanced Python concepts with clear explanations and practical examples.", - imageSrc: "http://img.b2bpic.net/free-photo/happy-female-working-art-studio_23-2148372142.jpg?_wi=7", - imageAlt: "Learning Materials" - }, - { - title: "Real-World Projects", - description: "Build practical applications and projects that you can use in your portfolio to showcase your Python skills.", - imageSrc: "http://img.b2bpic.net/free-vector/dashboard-user-panel-template_52683-29382.jpg?_wi=3", - imageAlt: "Project Examples" - }, - { - title: "Expert-Led Content", - description: "Learn from industry professionals with years of experience in Python development and software engineering.", - imageSrc: "http://img.b2bpic.net/free-photo/call-center-senior-agent-providing-guidance-help-customers-using-ai_482257-126049.jpg?_wi=3", - imageAlt: "Expert Guidance" - }, - { - title: "Lifetime Access", - description: "Purchase once and access the course materials forever. Get all future updates and improvements at no extra cost.", - imageSrc: "http://img.b2bpic.net/free-vector/digital-cloud-computing-futuristic-background-cyber-service_1017-56275.jpg?_wi=3", - imageAlt: "Lifetime Access" - } - ] - }, - "prod-2": { - id: "prod-2", - name: "Web Design Templates Bundle", - brand: "Digital Store", - price: "$49.99", - rating: 5, - reviewCount: "1.8k", - imageSrc: "http://img.b2bpic.net/free-photo/happy-female-working-art-studio_23-2148372142.jpg?_wi=8", - description: "Professional web design templates ready to customize. Includes responsive layouts, components, and design systems for modern websites.", - features: [ - { - title: "Responsive Design", - description: "All templates are fully responsive and optimized for desktop, tablet, and mobile devices for seamless user experience.", - imageSrc: "http://img.b2bpic.net/free-vector/dashboard-user-panel-template_52683-29382.jpg?_wi=4", - imageAlt: "Responsive Templates" - }, - { - title: "Customizable Components", - description: "Pre-built UI components and design elements that you can easily customize to match your brand identity and style.", - imageSrc: "http://img.b2bpic.net/free-photo/happy-female-working-art-studio_23-2148372142.jpg?_wi=9", - imageAlt: "Design Components" - }, - { - title: "Modern Aesthetics", - description: "Stay ahead with current design trends including minimalist layouts, bold typography, and sophisticated color schemes.", - imageSrc: "http://img.b2bpic.net/free-vector/digital-cloud-computing-futuristic-background-cyber-service_1017-56275.jpg?_wi=4", - imageAlt: "Modern Design" - }, - { - title: "Complete Documentation", - description: "Detailed guides and documentation for implementing and customizing each template to your specific needs.", - imageSrc: "http://img.b2bpic.net/free-photo/call-center-senior-agent-providing-guidance-help-customers-using-ai_482257-126049.jpg?_wi=4", - imageAlt: "Documentation" - } - ] - }, - "prod-3": { - id: "prod-3", - name: "Digital Marketing Masterclass", - brand: "Digital Store", - price: "$39.99", - rating: 5, - reviewCount: "3.1k", - imageSrc: "http://img.b2bpic.net/free-photo/funny-little-girl-headphones-with-laptop-plays-games-game-addiction-concept_169016-53925.jpg?_wi=8", - description: "Comprehensive digital marketing course covering SEO, social media, content marketing, and conversion optimization strategies.", - features: [ - { - title: "SEO Mastery", - description: "Learn advanced search engine optimization techniques to rank higher and drive organic traffic to your website.", - imageSrc: "http://img.b2bpic.net/free-vector/dashboard-user-panel-template_52683-29382.jpg?_wi=5", - imageAlt: "SEO Training" - }, - { - title: "Social Media Strategy", - description: "Master platform-specific strategies for Facebook, Instagram, LinkedIn, and TikTok to build engaged communities.", - imageSrc: "http://img.b2bpic.net/free-photo/happy-female-working-art-studio_23-2148372142.jpg?_wi=10", - imageAlt: "Social Media" - }, - { - title: "Content Marketing", - description: "Create compelling content that attracts, engages, and converts your audience into loyal customers.", - imageSrc: "http://img.b2bpic.net/free-vector/digital-cloud-computing-futuristic-background-cyber-service_1017-56275.jpg?_wi=5", - imageAlt: "Content Strategy" - }, - { - title: "Analytics & ROI", - description: "Track, measure, and optimize your marketing campaigns using data-driven insights and analytics tools.", - imageSrc: "http://img.b2bpic.net/free-photo/call-center-senior-agent-providing-guidance-help-customers-using-ai_482257-126049.jpg?_wi=5", - imageAlt: "Analytics" - } - ] - } - }; - - const current = productDetails[productId] || productDetails["prod-1"]; - - const relatedProducts = [ - { - id: "prod-4", - brand: "Digital Store", - name: "Advanced JavaScript eBook", - price: "$24.99", - rating: 5, - reviewCount: "1.5k", - imageSrc: "http://img.b2bpic.net/free-vector/online-learning-landing-page-design_23-2149058254.jpg?_wi=8", - imageAlt: "JavaScript eBook" - }, - { - id: "prod-5", - brand: "Digital Store", - name: "UI/UX Design System Kit", - price: "$59.99", - rating: 5, - reviewCount: "2.7k", - imageSrc: "http://img.b2bpic.net/free-photo/happy-female-working-art-studio_23-2148372142.jpg?_wi=11", - imageAlt: "Design System Kit" - }, - { - id: "prod-6", - brand: "Digital Store", - name: "SEO Optimization Blueprint", - price: "$34.99", - rating: 5, - reviewCount: "2.1k", - imageSrc: "http://img.b2bpic.net/free-vector/online-learning-landing-page-design_23-2149058254.jpg?_wi=9", - imageAlt: "SEO Guide" - } - ]; - - const testimonials = [ - { - id: "test-1", - name: "Sarah Johnson", - role: "CEO", - company: "TechCorp Solutions", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/closeup-content-pretty-businesswoman-glasses_1262-1740.jpg?_wi=2", - imageAlt: "Sarah Johnson" - }, - { - id: "test-2", - name: "Michael Chen", - role: "Founder", - company: "Innovate Lab", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/confident-entrepreneur-satisfied-with-own-success_1163-5474.jpg?_wi=2", - imageAlt: "Michael Chen" - }, - { - id: "test-3", - name: "Emily Rodriguez", - role: "Marketing Director", - company: "Growth Co", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/content-business-woman-talking-smartphone-outdoors_1262-20534.jpg?_wi=2", - imageAlt: "Emily Rodriguez" - }, - { - id: "test-4", - name: "David Kim", - role: "Product Manager", - company: "StartUp XYZ", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/portrait-professional-businesswoman-indoors_23-2148824826.jpg?_wi=2", - imageAlt: "David Kim" - } - ]; +import { Mail } from "lucide-react"; +export default function ProductDetailPage({ params }: { params: { id: string } }) { return ( -
- {/* Product Details Hero Section */} -
-
- {/* Product Image */} -
- {current.name} -
- - {/* Product Info */} -
- - {current.brand} - -

- {current.name} -

- - {/* Rating */} -
-
- {[...Array(5)].map((_, i) => ( - - ))} -
- ({current.reviewCount} reviews) -
- - {/* Price */} -
-

- {current.price} -

-

One-time purchase • Lifetime access

-
- - {/* Description */} -

- {current.description} -

- - {/* Action Buttons */} -
- - -
- - {/* Features List */} -
-
- - Instant download after purchase -
-
- - 30-day money-back guarantee -
-
- - Secure payment processing -
-
-
-
+
+
+

Product Details

+

Product ID: {params.id}

+

Detailed product information and purchase options would be displayed here.

+
- {/* Features Section */} -
- -
- - {/* Related Products Section */} - - - {/* Testimonials Section */} -
- -
- - {/* Contact/Newsletter Section */} -
- -
+
+