import Link from "next/link"; 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: (props: any) => ( ), }, { name: "GitHub", href: "https://github.com/formbricks/formbricks", icon: (props: any) => ( ), }, ], }; export default function Footer() { return ( ); }