diff --git a/components/Footer.tsx b/components/Footer.tsx index 1dd3357..2a02fe4 100644 --- a/components/Footer.tsx +++ b/components/Footer.tsx @@ -1,25 +1,135 @@ import React from "react"; import Link from "next/link"; -export default function Footer() { +const companyLinks = [ + { + title: "About", + href: "/about", + }, + { + title: "Terms of Service", + href: "#", + }, + { + title: "Privacy Policy", + href: "#", + }, + { + title: "Cookie Policy", + href: "#", + }, +]; + +const solutionLinks = [ + { + title: "SAGE", + href: "#", + }, + { + title: "GUARD", + href: "#", + }, + { + title: "ARTISAN", + href: "#", + }, +]; + +const partnershipLinks = [ + { + title: "Partner 1", + href: "#", + }, + { + title: "Partner 2", + href: "#", + }, + { + title: "Partner 3", + href: "#", + }, + { + title: "Partner 4", + href: "#", + }, +]; + +function Logo() { return ( -