import Link from "next/link"; import { FaDiscord, FaGithub, FaXTwitter } from "react-icons/fa6"; import { FooterLogo } from "./Logo"; const navigation = { other: [ { name: "Community", href: "/community", status: true }, { name: "Blog", href: "/blog", status: true }, { name: "OSS Friends", href: "/oss-friends", status: true }, { name: "GDPR FAQ", href: "/gdpr", status: true }, { name: "GDPR Guide", href: "/gdpr-guide", status: true }, ], social: [ { name: "Twitter", href: "https://twitter.com/formbricks", icon: FaXTwitter, }, { name: "GitHub", href: "https://github.com/formbricks/formbricks", icon: FaGithub, }, { name: "Discord", href: "https://formbricks.com/discord", icon: FaDiscord, }, ], }; export default function Footer() { const currentYear = new Date().getFullYear(); return ( ); }