-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
✨ Oh-my-class/Oh-my-class#21: Dashboard structure
- Loading branch information
Showing
3 changed files
with
42 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
import { NextPage } from "next"; | ||
import React from "react"; | ||
|
||
const App: NextPage = () => { | ||
return ( | ||
<div className="w-full min-h-screen flex flex-col lg:grid p-5 gap-5 lg:grid-rows-3 lg:grid-cols-3 animate-pulse"> | ||
<div className="card bg-slate-800 shadow col-span-2"> | ||
<div className="card-body"> | ||
<h1 className="card-title">Welcome to Oh my Class!</h1> | ||
</div> | ||
</div> | ||
<div className="card bg-slate-800 shadow row-span-2"> | ||
<div className="card-body"> | ||
<h1 className="card-title">Next assessments</h1> | ||
</div> | ||
</div> | ||
<div className="card bg-slate-800 shadow row-span-2"> | ||
<div className="card-body"> | ||
<h1 className="card-title">Calendar</h1> | ||
</div> | ||
</div> | ||
<div className="card bg-slate-800 shadow row-span-2"> | ||
<div className="card-body"> | ||
<h1 className="card-title">Statistics</h1> | ||
</div> | ||
</div> | ||
<div className="card bg-slate-800 shadow"> | ||
<div className="card-body"> | ||
<h1 className="card-title">Marked assessments</h1> | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
}; | ||
|
||
export default App; |