import React from 'react' import { Link } from '../link' import { MainRoutes } from './routes' interface Props { home?: string } function MarketingNavMenu({ home = '' }: Props) { return ( ) } export { MarketingNavMenu }