'use client' import Link from 'next/link' import Image from 'next/image' import { GithubIcon, TwitterIcon } from '@ciphera-net/ui' import SwissFlagIcon from './SwissFlagIcon' const footerLinks = { products: [ { name: 'Drop', href: 'https://drop.ciphera.net', external: true }, { name: 'Pulse', href: 'https://pulse.ciphera.net', external: true }, { name: 'Ciphera Auth', href: 'https://ciphera.net/products#auth', external: true }, { name: 'Ciphera Captcha', href: 'https://ciphera.net/products#captcha', external: true }, { name: 'Ciphera Relay', href: 'https://ciphera.net/products#relay', external: true }, ], company: [ { name: 'About', href: 'https://ciphera.net/about', external: true }, { name: 'For Companies', href: 'https://ciphera.net/companies', external: true }, { name: 'Contact', href: 'https://ciphera.net/contact', external: true }, ], resources: [ { name: 'Documentation', href: '#', external: false }, { name: 'GitHub', href: 'https://github.com/ciphera-net', external: true }, ], legal: [ { name: 'Privacy Policy', href: '#', external: false }, { name: 'Terms of Service', href: '#', external: false }, ], } // * Ciphera website footer - ciphera-ui style with comprehensive content export default function WebsiteFooter() { const year = new Date().getFullYear() return ( ) }