From 1e4613fd021c3b3e62de2778cda16f79ed2b6ff3 Mon Sep 17 00:00:00 2001 From: jyswee Date: Thu, 23 Jul 2026 22:15:22 +0000 Subject: [PATCH] Seed: developer-tools template (15 files) --- src/components/Footer.tsx | 98 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 98 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..f685a96 --- /dev/null +++ b/src/components/Footer.tsx @@ -0,0 +1,98 @@ +import { Link } from "react-router-dom"; +import { Terminal, Github, Twitter } from "lucide-react"; + +const columns = [ + { + title: "Product", + links: [ + { label: "Documentation", to: "/docs" }, + { label: "API Reference", to: "/docs" }, + { label: "Changelog", to: "/changelog" }, + { label: "Status", to: "/status" }, + ], + }, + { + title: "Developers", + links: [ + { label: "Getting Started", to: "/docs" }, + { label: "SDKs", to: "/docs" }, + { label: "Community", to: "#" }, + { label: "Open Source", to: "#" }, + ], + }, + { + title: "Company", + links: [ + { label: "About", to: "#" }, + { label: "Blog", to: "#" }, + { label: "Careers", to: "#" }, + { label: "Contact", to: "#" }, + ], + }, +]; + +export default function Footer() { + return ( + + ); +}