Compare commits
81 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 81aefdd23b | |||
| d65fbf4dac | |||
| 41fff7802d | |||
| 71b69fcc46 | |||
| e54649c334 | |||
| 8921aa2791 | |||
| ef49f0d0b8 | |||
| 678d50a693 | |||
| 7cce6a0015 | |||
| 94cfb7710d | |||
| 92df796b2b | |||
| 278936c33a | |||
| ec3b9fc5d9 | |||
| acc10c28de | |||
| 1ebeb55e90 | |||
| c0efba20c1 | |||
| faedd03d88 | |||
| 77d0b4dd52 | |||
| 50df050c7e | |||
| fb8e957e7f | |||
| cecbb1569a | |||
| 4fa0534639 | |||
| d244217b8e | |||
| ada9890c49 | |||
| 35c3057c5c | |||
| a066a34b20 | |||
| 7365d6e893 | |||
| 7bceb9f420 | |||
| a73e8100b5 | |||
| 7cfb0b82fb | |||
| b8f8e07321 | |||
| 67dbe46d87 | |||
| ff64073838 | |||
| f21da29950 | |||
| a0bda1c8d2 | |||
| 68870915f0 | |||
| 15b83f5b6d | |||
| 98e5ff0199 | |||
| 8a83eec546 | |||
| ab348847cf | |||
| 3be746e09e | |||
| e695168ea6 | |||
| 8942533033 | |||
| 442f54c68d | |||
| a132a5a352 | |||
| ea5d062a45 | |||
| be80f6d913 | |||
| 02dc674104 | |||
| aee2b7f5df | |||
| 14816ea36c | |||
| dcebe5df72 | |||
| 643bf42a2b | |||
| 4822975f65 | |||
| 452a61b0a9 | |||
| da3f1eb7c5 | |||
| c8a6e0064c | |||
| 023a187a88 | |||
| 1b36715a75 | |||
| 171fd84221 | |||
| 1789bf384f | |||
| e584e0d39f | |||
| 474747dbe1 | |||
| e8a0022561 | |||
| ff9b761c95 | |||
| a11667954b | |||
| 53395a3d8b | |||
| 8b0df1b664 | |||
| 4d47235d5f | |||
| 39e45097f8 | |||
| caa716d628 | |||
| 0c9903a6a3 | |||
| ef9a133adf | |||
| 4f9027587c | |||
| 657938fa15 | |||
| 9d99facf29 | |||
| f33f14e38e | |||
| c4d9ba4455 | |||
| 0f970e81a1 | |||
| 3f5f98eb3e | |||
| 0517ec26fc | |||
| a225ae0a45 |
126
src/app/shop/page.tsx
Normal file
126
src/app/shop/page.tsx
Normal file
@@ -0,0 +1,126 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
|
||||
import ProductCardThree from "@/components/sections/product/ProductCardThree";
|
||||
import ContactCTA from "@/components/sections/contact/ContactCTA";
|
||||
import FooterSimple from "@/components/sections/footer/FooterSimple";
|
||||
import { ShoppingBag, Headphones } from "lucide-react";
|
||||
|
||||
export default function ShopPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="icon-arrow"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="rounded"
|
||||
contentWidth="compact"
|
||||
sizing="mediumLargeSizeMediumTitles"
|
||||
background="circleGradient"
|
||||
cardStyle="inset"
|
||||
primaryButtonStyle="double-inset"
|
||||
secondaryButtonStyle="solid"
|
||||
headingFontWeight="bold"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
brandName="AirPods"
|
||||
navItems={[
|
||||
{ name: "Products", id: "products" },
|
||||
{ name: "Features", id: "#features" },
|
||||
{ name: "Why AirPods", id: "#metrics" },
|
||||
{ name: "Support", id: "#faq" },
|
||||
{ name: "Shop", id: "shop" },
|
||||
]}
|
||||
button={{ text: "Home", href: "/" }}
|
||||
animateOnLoad={true}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="products" data-section="products">
|
||||
<ProductCardThree
|
||||
title="PodsX Pro & PodsX 4 - Premium Wireless Audio"
|
||||
description="Explore our flagship PodsX Pro with advanced noise cancellation and the versatile PodsX 4 designed for everyday excellence. Both models deliver premium sound quality and seamless connectivity."
|
||||
tag="Shop Now"
|
||||
tagIcon={ShoppingBag}
|
||||
tagAnimation="slide-up"
|
||||
products={[
|
||||
{
|
||||
id: "podsx-pro", name: "PodsX Pro", price: "$299", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcG4WbdmgnoUEgMn6GlqKFPyhF/high-quality-product-photography-of-airp-1772884351466-337fed24.png?_wi=4", imageAlt: "PodsX Pro with advanced active noise cancellation", initialQuantity: 1,
|
||||
},
|
||||
{
|
||||
id: "podsx-pro-specs", name: "PodsX Pro - Specifications", price: "Details", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcG4WbdmgnoUEgMn6GlqKFPyhF/a-sleek-premium-product-shot-of-airpods--1772884352155-5b47d23f.png?_wi=2", imageAlt: "PodsX Pro premium specifications showcase", initialQuantity: 1,
|
||||
},
|
||||
{
|
||||
id: "podsx-4", name: "PodsX 4", price: "$199", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcG4WbdmgnoUEgMn6GlqKFPyhF/airpods-2nd-generation-with-charging-cas-1772884351239-d2c575a8.png?_wi=3", imageAlt: "PodsX 4 versatile everyday audio solution", initialQuantity: 1,
|
||||
},
|
||||
{
|
||||
id: "podsx-4-specs", name: "PodsX 4 - Specifications", price: "Details", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcG4WbdmgnoUEgMn6GlqKFPyhF/airpods-max-over-ear-headphones-displaye-1772884352294-e666eff4.png?_wi=3", imageAlt: "PodsX 4 comprehensive specifications overview", initialQuantity: 1,
|
||||
},
|
||||
]}
|
||||
gridVariant="two-columns-alternating-heights"
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="cta" data-section="cta">
|
||||
<ContactCTA
|
||||
tag="Ready to Order?"
|
||||
tagIcon={Headphones}
|
||||
tagAnimation="slide-up"
|
||||
title="Get Your PodsX Today"
|
||||
description="Choose between PodsX Pro for ultimate performance or PodsX 4 for everyday excellence. Both models feature premium sound, extended battery life, and intuitive controls."
|
||||
buttons={[
|
||||
{ text: "Buy PodsX Pro", href: "#podsx-pro" },
|
||||
{ text: "Buy PodsX 4", href: "#podsx-4" },
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{
|
||||
title: "Products", items: [
|
||||
{ label: "PodsX Pro", href: "#podsx-pro" },
|
||||
{ label: "PodsX 4", href: "#podsx-4" },
|
||||
{ label: "Compare Models", href: "#" },
|
||||
{ label: "Accessories", href: "#" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Support", items: [
|
||||
{ label: "Setup Guide", href: "#" },
|
||||
{ label: "Troubleshooting", href: "#" },
|
||||
{ label: "Warranty", href: "#" },
|
||||
{ label: "Contact Us", href: "#" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "About Us", href: "/" },
|
||||
{ label: "Blog", href: "#" },
|
||||
{ label: "Careers", href: "#" },
|
||||
{ label: "News", href: "#" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal", items: [
|
||||
{ label: "Privacy Policy", href: "#" },
|
||||
{ label: "Terms of Service", href: "#" },
|
||||
{ label: "Return Policy", href: "#" },
|
||||
{ label: "Shipping Info", href: "#" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
bottomLeftText="© 2025 PodsX. All rights reserved."
|
||||
bottomRightText="Premium Audio Technology"
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user