Update src/app/cart/page.tsx

This commit is contained in:
2026-03-12 06:19:37 +00:00
parent 57b15faf55
commit 2de8df1fc1

View File

@@ -59,6 +59,13 @@ export default function CartPage() {
const tax = subtotal * 0.08;
const total = subtotal + shipping + tax;
const socialLinks = [
{ icon: Instagram, href: "https://instagram.com/umbra", ariaLabel: "Instagram" },
{ icon: Twitter, href: "https://twitter.com/umbra", ariaLabel: "Twitter" },
{ icon: TikTok, href: "https://tiktok.com/@umbra", ariaLabel: "TikTok" },
{ icon: Youtube, href: "https://youtube.com/@umbra", ariaLabel: "YouTube" },
];
return (
<ThemeProvider
defaultButtonVariant="shift-hover"
@@ -223,12 +230,7 @@ export default function CartPage() {
<FooterCard
logoText="Umbra"
copyrightText="© 2025 | Umbra Streetwear. All rights reserved."
socialLinks={[
{ icon: Instagram, href: "https://instagram.com/umbra", ariaLabel: "Instagram" },
{ icon: Twitter, href: "https://twitter.com/umbra", ariaLabel: "Twitter" },
{ icon: TikTok as React.ComponentType<React.SVGProps<SVGSVGElement>>, href: "https://tiktok.com/@umbra", ariaLabel: "TikTok" },
{ icon: Youtube, href: "https://youtube.com/@umbra", ariaLabel: "YouTube" },
]}
socialLinks={socialLinks}
/>
</div>
</ThemeProvider>