import Image from 'next/image' import Link from 'next/link' import SectionContainer from './Layouts/SectionContainer' import DarkModeToggle from './DarkModeToggle' const docs = [ { text: 'Getting Started', url: '/' }, { text: 'Todo app tutorial', url: '/' }, { text: 'Language reference', url: '/' } ] const community = [ { text: 'Discord', url: '/' }, { text: 'Twitter', url: '/' }, { text: 'GitHub', url: '/' } ] const company = [ { text: 'Blog', url: '/' }, { text: 'Careers', url: '/' }, { text: 'Company', url: '/' } ] // TODO(matija): duplication, I already have Logo in Nav/index.js const Logo = () => (
Wasp Logo Wasp
) const Segment = ({ title, links }) => (
{title}
) const Footer = () => { return ( ) } export default Footer