import Link from "next/link"; import { useRouter } from "next/router"; import React, { ReactNode } from "react"; import { Image } from "@/components/Image"; import { Title } from "@/components/Title"; import Content from "../../../content/advice/co-op-advice.mdx"; import styles from "./co-op.module.css"; export default function CoopAdvice() { return ( <> Co-op Advice ); } export function Advice(props: { children: ReactNode }) { const router = useRouter(); const path = router.pathname; return ( <>

Waterloo Undergraduate Advice

Co-op Advice Academic Advice Additional Resources
{props.children}
); }