Merge version_1 into main

Merge version_1 into main
This commit was merged in pull request #3.
This commit is contained in:
2026-03-15 20:53:26 +00:00

View File

@@ -5,7 +5,7 @@ import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleAp
import ContactCTA from "@/components/sections/contact/ContactCTA";
import FooterCard from "@/components/sections/footer/FooterCard";
import Link from "next/link";
import { ShoppingCart, Facebook, Twitter, Instagram, Linkedin } from "lucide-react";
import { ShoppingCart, Facebook, Twitter, Instagram, Linkedin, Mail } from "lucide-react";
export default function CartPage() {
const navItems = [
@@ -17,29 +17,17 @@ export default function CartPage() {
const cartItems = [
{
id: "cart-1",
name: "Wireless Headphones",
brand: "TechGear",
price: 2499,
id: "cart-1", name: "Wireless Headphones", brand: "TechGear", price: 2499,
quantity: 1,
image: "http://img.b2bpic.net/free-photo/modern-wireless-earphones-with-case-displayed-round-podium-with-soft-shadows_23-2150808014.jpg",
},
image: "http://img.b2bpic.net/free-photo/modern-wireless-earphones-with-case-displayed-round-podium-with-soft-shadows_23-2150808014.jpg"},
{
id: "cart-2",
name: "Premium T-Shirt",
brand: "StyleWear",
price: 599,
id: "cart-2", name: "Premium T-Shirt", brand: "StyleWear", price: 599,
quantity: 2,
image: "http://img.b2bpic.net/free-photo/shirt-mockup-concept-with-plain-clothing_23-2149448760.jpg",
},
image: "http://img.b2bpic.net/free-photo/shirt-mockup-concept-with-plain-clothing_23-2149448760.jpg"},
{
id: "cart-3",
name: "LED Smart Bulb",
brand: "SmartHome",
price: 799,
id: "cart-3", name: "LED Smart Bulb", brand: "SmartHome", price: 799,
quantity: 1,
image: "http://img.b2bpic.net/free-photo/light-bulb-with-small-plant-inside_23-2148576706.jpg",
},
image: "http://img.b2bpic.net/free-photo/light-bulb-with-small-plant-inside_23-2148576706.jpg"},
];
const subtotal = cartItems.reduce((sum, item) => sum + item.price * item.quantity, 0);
@@ -159,14 +147,11 @@ export default function CartPage() {
description="Get exclusive deals, new product launches, and special offers delivered to your inbox."
buttons={[
{
text: "Subscribe Now",
href: "#subscribe",
},
text: "Subscribe Now", href: "#subscribe"},
]}
buttonAnimation="slide-up"
background={{
variant: "gradient-bars",
}}
variant: "gradient-bars"}}
useInvertedBackground={true}
/>
</div>
@@ -178,24 +163,16 @@ export default function CartPage() {
socialLinks={[
{
icon: Facebook,
href: "https://facebook.com/shophub",
ariaLabel: "Facebook",
},
href: "https://facebook.com/shophub", ariaLabel: "Facebook"},
{
icon: Twitter,
href: "https://twitter.com/shophub",
ariaLabel: "Twitter",
},
href: "https://twitter.com/shophub", ariaLabel: "Twitter"},
{
icon: Instagram,
href: "https://instagram.com/shophub",
ariaLabel: "Instagram",
},
href: "https://instagram.com/shophub", ariaLabel: "Instagram"},
{
icon: Linkedin,
href: "https://linkedin.com/company/shophub",
ariaLabel: "LinkedIn",
},
href: "https://linkedin.com/company/shophub", ariaLabel: "LinkedIn"},
]}
/>
</div>