import Link from "next/link"; import React from "react"; import { Logo } from "./Logo"; export const Footer = () => { const links = [ { name: "Pricing", href: "/pricing", }, { name: "Blog", href: "/blog", }, { name: "Tools", href: "/tools", }, { name: "Contact", href: "/contact", }, ]; const legal = [ { name: "Privacy Policy", href: "#", }, { name: "Terms of Service", href: "#", }, { name: "Refund Policy", href: "#", }, ]; const socials = [ { name: "Twitter", href: "", }, { name: "LinkedIn", href: "", }, { name: "GitHub", href: "", }, ]; return (
Mnémosyne