forked from www/www-new
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
349 B
18 lines
349 B
import React from "react";
|
|
|
|
import { Title } from "@/components/Title";
|
|
|
|
import Content from "../../../content/resources/advice/academic-advice.md";
|
|
|
|
import { Advice } from "./co-op";
|
|
|
|
export default function AcademicAdvice() {
|
|
return (
|
|
<>
|
|
<Title>Academic Advice</Title>
|
|
<Advice>
|
|
<Content />
|
|
</Advice>
|
|
</>
|
|
);
|
|
}
|
|
|