import React from "react"; import { AiOutlineGithub, AiOutlineTwitter } from "react-icons/ai"; import { BiLogoDiscordAlt, BiLogoLinkedin } from "react-icons/bi"; const socials = [ { icon: , href: "https://twitter.com/janframework", }, { icon: , href: "https://discord.com/invite/FTk2MvZwJH", }, { icon: , href: "https://github.com/janhq/jan", }, { icon: , href: "https://www.linkedin.com/company/janframework/", } ]; const menus = [ { name: "For Developers", child: [ { menu: "Documentation", path: "/developer", }, { menu: "Hardware", path: "/hardware", }, { menu: "API Reference", path: "/api-reference", }, { menu: "Changelog", path: "https://github.com/janhq/jan/releases", external: true, }, ], }, { name: "Community", child: [ { menu: "Github", path: "https://github.com/janhq/jan", external: true, }, { menu: "Discord", path: "https://discord.gg/FTk2MvZwJH", external: true, }, { menu: "Twitter", path: "https://twitter.com/janframework", external: true, }, { menu: "LinkedIn", path: "https://www.linkedin.com/company/janframework/", external: true, } ], }, { name: "Company", child: [ { menu: "About", path: "/about", }, { menu: "Blog", path: "/blog", }, { menu: "Careers", path: "https://janai.bamboohr.com/careers", external: true, }, { menu: "Newsletter", path: "/community#newsletter", } ], }, ]; const getCurrentYear = new Date().getFullYear(); export default function Footer() { return ( ); }