import * as React from "react" import { Container } from "./Container" import { Logo } from "./Logo" const navigation = [ { title: "Students", links: [{ title: "Find a Coach", href: "/c/" }], }, { title: "Company", links: [ { title: "About Us", href: "/about/" }, { title: "Contact Us", href: "/contact/" }, ], }, ] function Navigation() { return ( ) } export function Footer() { return (

© BoardWise LLC {new Date().getFullYear()}

) }