diff --git a/src/components/Footer.tsx b/src/components/Footer.tsx new file mode 100644 index 0000000..dbe61df --- /dev/null +++ b/src/components/Footer.tsx @@ -0,0 +1,85 @@ +import { Link } from "react-router-dom"; +import { Layers } from "lucide-react"; + +const columns = [ + { + title: "Product", + links: [ + { label: "Features", to: "/features" }, + { label: "Pricing", to: "/pricing" }, + { label: "Integrations", to: "/features" }, + { label: "Changelog", to: "/blog" }, + ], + }, + { + title: "Company", + links: [ + { label: "About", to: "/about" }, + { label: "Blog", to: "/blog" }, + { label: "Careers", to: "/about" }, + { label: "Contact", to: "/contact" }, + ], + }, + { + title: "Legal", + links: [ + { label: "Privacy", to: "#" }, + { label: "Terms", to: "#" }, + { label: "Security", to: "#" }, + { label: "GDPR", to: "#" }, + ], + }, +]; + +export default function Footer() { + return ( + + ); +}