mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-26 15:48:32 -06:00
moving v2 to top level
This commit is contained in:
25
src/app/page.tsx
Normal file
25
src/app/page.tsx
Normal file
@@ -0,0 +1,25 @@
|
||||
import CourseList from "./CourseList";
|
||||
import AddNewCourse from "./newCourse/AddNewCourse";
|
||||
import TodaysLectures from "./todaysLectures/TodaysLectures";
|
||||
|
||||
export default async function Home() {
|
||||
return (
|
||||
<main className="h-full flex justify-center overflow-auto">
|
||||
<div className="xl:w-[900px] mx-auto">
|
||||
<br />
|
||||
<br />
|
||||
<br />
|
||||
<br />
|
||||
<div className=" flex justify-center">
|
||||
<CourseList />
|
||||
</div>
|
||||
<br />
|
||||
<br />
|
||||
<TodaysLectures />
|
||||
<br />
|
||||
<br />
|
||||
<AddNewCourse />
|
||||
</div>
|
||||
</main>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user