import * as React from "react" import { Container } from "./Container" import { Logo } from "./Logo" const navigation = [ { title: "Students", links: [{ title: "Find a Coach", href: "/" }], }, { title: "Company", links: [ { title: "About Us", href: "/about/" }, { title: "Contact Us", href: "/contact/" }, ], }, ] function Navigation() { return ( {navigation.map((section, sectionIndex) => ( {section.title} {section.links.map((link, linkIndex) => ( {link.title} ))} ))} ) } export function Footer() { return ( © BoardWise LLC {new Date().getFullYear()} ) }
© BoardWise LLC {new Date().getFullYear()}