diff --git a/src/app/reviews/page.tsx b/src/app/reviews/page.tsx deleted file mode 100644 index a66286f..0000000 --- a/src/app/reviews/page.tsx +++ /dev/null @@ -1,229 +0,0 @@ -"use client"; - -import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; -import TestimonialCardTen from "@/components/sections/testimonial/TestimonialCardTen"; -import FooterSimple from "@/components/sections/footer/FooterSimple"; -import { Star } from "lucide-react"; - -export default function ReviewsPage() { - const testimonials = [ - { - id: "1", title: "Best Audio Experience I've Had", quote: "The sound quality is absolutely incredible. Active noise cancellation works flawlessly, and the spatial audio feature is mind-blowing. I use them daily for work calls and music, and they never disappoint.", name: "Michael Thompson", role: "Software Engineer", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcG4WbdmgnoUEgMn6GlqKFPyhF/professional-headshot-of-a-satisfied-use-1772884351817-6dec7f08.png", imageAlt: "Michael Thompson"}, - { - id: "2", title: "Seamless Integration with Apple Ecosystem", quote: "Switching between my iPhone, iPad, and Mac is seamless. The automatic device switching is a game-changer. Setup was literally just one tap. This is what premium integration looks like.", name: "Sarah Chen", role: "Creative Director", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcG4WbdmgnoUEgMn6GlqKFPyhF/happy-lifestyle-photo-of-person-wearing--1772884353901-6ee88695.png", imageAlt: "Sarah Chen"}, - { - id: "3", title: "Perfect for Fitness and Daily Use", quote: "I take these to the gym, on runs, and they stay secure the entire time. Water resistant, reliable connectivity, and the battery lasts through my entire workout routine. Highly recommend!", name: "James Rodriguez", role: "Fitness Coach", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcG4WbdmgnoUEgMn6GlqKFPyhF/professional-businessperson-using-airpod-1772884353609-0ef52970.png", imageAlt: "James Rodriguez"}, - { - id: "4", title: "Worth Every Penny", quote: "I was skeptical about the price, but after using these for three months, I can confirm they're worth every dollar. The build quality, sound fidelity, and features are exceptional. Best tech purchase I've made.", name: "Emma Wilson", role: "Product Manager", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcG4WbdmgnoUEgMn6GlqKFPyhF/creative-professional-or-content-creator-1772884352345-f1e1d55c.png", imageAlt: "Emma Wilson"}, - { - id: "5", title: "Game-Changing Noise Cancellation", quote: "The adaptive noise cancellation is revolutionary. On airplanes, in coffee shops, or at home – it adapts perfectly to my environment. Conversation awareness is fantastic for staying connected while immersed in audio.", name: "David Park", role: "Business Consultant", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcG4WbdmgnoUEgMn6GlqKFPyhF/active-lifestyle-user-athlete-or-fitness-1772884351718-1b549457.png", imageAlt: "David Park"}, - { - id: "6", title: "Premium Design Meets Performance", quote: "These are beautiful. The design is minimalist yet premium, they fit comfortably for hours, and the charging case is elegant. Performance matches the aesthetics perfectly. A truly well-thought product.", name: "Sophie Laurent", role: "Design Enthusiast", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcG4WbdmgnoUEgMn6GlqKFPyhF/diverse-user-in-relaxed-comfortable-sett-1772884352272-d4dc5302.png", imageAlt: "Sophie Laurent"}, - ]; - - const stats = [ - { label: "Average Rating", value: "4.8/5" }, - { label: "Customer Reviews", value: "10k+" }, - { label: "Recommendation Rate", value: "95%" }, - { label: "Verified Purchases", value: "98%" }, - ]; - - return ( - - - -
-
-
-

Customer Reviews

-

- Read what thousands of satisfied customers have to say about their AirPods experience. -

- -
- {stats.map((stat, index) => ( -
-

{stat.label}

-

{stat.value}

-
- ))} -
-
-
-
- -
-
- -
-
- -
-
-

Rating Breakdown

- -
- {[ - { stars: 5, percentage: 75, count: 7500 }, - { stars: 4, percentage: 18, count: 1800 }, - { stars: 3, percentage: 5, count: 500 }, - { stars: 2, percentage: 1.5, count: 150 }, - { stars: 1, percentage: 0.5, count: 50 }, - ].map((rating) => ( -
-
- {Array.from({ length: rating.stars }).map((_, i) => ( - - ))} -
-
-
-
-
-

{rating.percentage}%

-

{rating.count} reviews

-
-
- ))} -
-
-
- -
-
-

Why Choose AirPods?

- -
-
-

Premium Sound Quality

-

- Industry-leading audio quality with crystal-clear highs, rich mids, and deep bass. Every note is perfectly tuned for optimal listening. -

-
- -
-

Seamless Integration

-

- Works perfectly across all Apple devices with automatic switching, iCloud sync, and unified controls. One ecosystem for everything. -

-
- -
-

All-Day Comfort

-

- Ergonomic design engineered for comfort during extended use. Lightweight, secure fit, and breathable materials keep you comfortable all day. -

-
- -
-

Active Noise Cancellation

-

- Advanced ANC technology adapts to your environment in real-time. Immersive listening whether you're in a bustling city or quiet office. -

-
- -
-

Extended Battery Life

-

- Get through full days on a single charge. Quick charging and intelligent power management ensure you're always connected. -

-
- -
-

Spatial Audio Experience

-

- Immersive 3D sound with dynamic head tracking. Feel like you're in the middle of the action with theater-like audio. -

-
-
-
-
- -
-
-

Ready to Experience Premium Audio?

-

Join thousands of satisfied customers today.

- - Shop AirPods Now - -
-
- - - - ); -}