import Link from "next/link"; import React from "react"; import styles from "./BottomNav.module.css"; interface PageLinks { leftPage: string; rightPage: string; } export function BottomNav(props: PageLinks) { return (
View Demographics
View Co-ops
); } interface ArrowProps { isPointRight: boolean; } function Arrow({ isPointRight }: ArrowProps) { return ( ); }