From 87ab11e957a2ee84d3be58dde569d6cdb54a7187 Mon Sep 17 00:00:00 2001 From: jyswee Date: Thu, 23 Jul 2026 22:09:27 +0000 Subject: [PATCH] Seed: ecommerce template (24 files) --- src/components/Footer.tsx | 93 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 93 insertions(+) create mode 100644 src/components/Footer.tsx diff --git a/src/components/Footer.tsx b/src/components/Footer.tsx new file mode 100644 index 0000000..1944886 --- /dev/null +++ b/src/components/Footer.tsx @@ -0,0 +1,93 @@ +import { Link } from "react-router-dom"; +import { Separator } from "@/components/ui/separator"; + +const footerLinks = { + shop: [ + { label: "New Arrivals", to: "/products" }, + { label: "Best Sellers", to: "/products" }, + { label: "Sale", to: "/products" }, + { label: "Collections", to: "/products" }, + ], + help: [ + { label: "Customer Service", to: "/" }, + { label: "Size Guide", to: "/" }, + { label: "Shipping & Returns", to: "/" }, + { label: "FAQ", to: "/" }, + ], + about: [ + { label: "Our Story", to: "/" }, + { label: "Sustainability", to: "/" }, + { label: "Careers", to: "/" }, + { label: "Press", to: "/" }, + ], +}; + +export default function Footer() { + return ( + + ); +}