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 ( + + ); +}