diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx new file mode 100644 index 0000000..593bd37 --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,114 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSplitTextAbout"; +import AboutMetric from "@/components/sections/about/AboutMetric"; +import FooterSimple from "@/components/sections/footer/FooterSimple"; +import { Battery, Globe, Volume2, Zap, Award, Sparkles } from "lucide-react"; + +export default function AboutPage() { + return ( + + + +
+ +
+ +
+ +
+ + +
+ ); +} diff --git a/src/app/comparison/page.tsx b/src/app/comparison/page.tsx new file mode 100644 index 0000000..13746bf --- /dev/null +++ b/src/app/comparison/page.tsx @@ -0,0 +1,255 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import FooterSimple from "@/components/sections/footer/FooterSimple"; +import { Check, X, ShoppingBag } from "lucide-react"; + +export default function ComparisonPage() { + return ( + + + +
+
+
+

Compare AirPods Models

+

+ Choose the perfect AirPods for your lifestyle. Compare specs, features, and capabilities side-by-side. +

+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FeatureAirPods ProAirPods 4AirPods Max
Price$249$129$549
Active Noise Cancellation + + + + + +
Spatial Audio with Head Tracking + + + + + +
Battery Life (Single Charge)6 hours5 hours20 hours
Total Battery with Case30 hours24 hours80 hours
Water & Sweat ResistantIPX4IPX4No
Adaptive Audio + + + + + +
Personalized Volume + + + + + +
Automatic Switching + + + + + +
Transparency Mode + + + + + +
Conversation Awareness + + + + + +
Form FactorEarbudsEarbudsOver-Ear
+
+ +
+
+

AirPods Pro

+

+ Perfect balance of premium features and portability. Best for active users who want professional-grade audio on the go. +

+

$249

+ + Shop AirPods Pro + +
+ +
+

AirPods 4

+

+ Everyday audio made simple. Great entry point to the AirPods ecosystem with essential features at an affordable price. +

+

$129

+ + Shop AirPods 4 + +
+ +
+

AirPods Max

+

+ Ultimate audio experience with immersive sound. Designed for professionals who demand the best in sound quality and features. +

+

$549

+ + Shop AirPods Max + +
+
+
+
+ + +
+ ); +} diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx new file mode 100644 index 0000000..1095aa8 --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,138 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import ContactCenter from "@/components/sections/contact/ContactCenter"; +import FooterSimple from "@/components/sections/footer/FooterSimple"; +import { Mail, MapPin, Phone, MessageCircle } from "lucide-react"; + +export default function ContactPage() { + return ( + + + +
+ console.log("Email submitted:", email)} + /> +
+ +
+
+
+
+
+
+ +
+
+

Email

+

support@airpods.com

+

We'll respond within 24 hours

+
+
+ +
+
+ +
+
+

Phone

+

1-800-MY-APPLE

+

Available Monday to Friday, 9am-6pm EST

+
+
+ +
+
+ +
+
+

Visit Us

+

Apple Retail Stores

+

Find your nearest store worldwide

+
+
+
+
+
+
+ + +
+ ); +} diff --git a/src/app/features/page.tsx b/src/app/features/page.tsx new file mode 100644 index 0000000..cdd6598 --- /dev/null +++ b/src/app/features/page.tsx @@ -0,0 +1,157 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import HeroSplitKpi from "@/components/sections/hero/HeroSplitKpi"; +import FeatureCardMedia from "@/components/sections/feature/FeatureCardMedia"; +import ContactCTA from "@/components/sections/contact/ContactCTA"; +import FooterSimple from "@/components/sections/footer/FooterSimple"; +import { Zap, Sparkles, Headphones } from "lucide-react"; + +export default function FeaturesPage() { + return ( + + + +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +} diff --git a/src/app/page.tsx b/src/app/page.tsx index f639680..ce705c5 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -35,6 +35,9 @@ export default function LandingPage() { { name: "Features", id: "features" }, { name: "Why AirPods", id: "metrics" }, { name: "Support", id: "faq" }, + { name: "About", id: "/about" }, + { name: "Pricing", id: "/pricing" }, + { name: "Contact", id: "/contact" }, ]} button={{ text: "Shop Now", href: "#products" }} animateOnLoad={true} @@ -234,12 +237,12 @@ export default function LandingPage() { { label: "FAQ", href: "#faq" }, { label: "Setup Guide", href: "#" }, { label: "Troubleshooting", href: "#" }, - { label: "Contact Us", href: "#contact-cta" }, + { label: "Contact Us", href: "/contact" }, ], }, { title: "Company", items: [ - { label: "About Us", href: "#" }, + { label: "About Us", href: "/about" }, { label: "Blog", href: "#" }, { label: "Careers", href: "#" }, { label: "News", href: "#" }, diff --git a/src/app/pricing/page.tsx b/src/app/pricing/page.tsx new file mode 100644 index 0000000..843ebb0 --- /dev/null +++ b/src/app/pricing/page.tsx @@ -0,0 +1,124 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import PricingCardTwo from "@/components/sections/pricing/PricingCardTwo"; +import FooterSimple from "@/components/sections/footer/FooterSimple"; +import { ShoppingBag, CheckCircle } from "lucide-react"; + +export default function PricingPage() { + return ( + + + +
+ +
+ + +
+ ); +} diff --git a/src/app/products/page.tsx b/src/app/products/page.tsx new file mode 100644 index 0000000..12a4783 --- /dev/null +++ b/src/app/products/page.tsx @@ -0,0 +1,171 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import HeroSplitKpi from "@/components/sections/hero/HeroSplitKpi"; +import ProductCardThree from "@/components/sections/product/ProductCardThree"; +import FeatureCardMedia from "@/components/sections/feature/FeatureCardMedia"; +import ContactCTA from "@/components/sections/contact/ContactCTA"; +import FooterSimple from "@/components/sections/footer/FooterSimple"; +import { Zap, ShoppingBag, Sparkles, Headphones } from "lucide-react"; + +export default function ProductsPage() { + return ( + + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +} diff --git a/src/app/reviews/page.tsx b/src/app/reviews/page.tsx new file mode 100644 index 0000000..a66286f --- /dev/null +++ b/src/app/reviews/page.tsx @@ -0,0 +1,229 @@ +"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 + +
+
+ + + + ); +} diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index 8cff76c..3caf678 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #efebe5; - --card: #f7f2ea; + --background: #ffffff; + --card: #f9f9f9; --foreground: #000000; --primary-cta: #000000; --primary-cta-text: #efebe5; - --secondary-cta: #ffffff; + --secondary-cta: #f9f9f9; --secondary-cta-text: #000000; - --accent: #ffffff; - --background-accent: #e1b875; + --accent: #e2e2e2; + --background-accent: #f0f0f0; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);