File tree Expand file tree Collapse file tree 2 files changed +46
-0
lines changed
client/pages/adminDashboard Expand file tree Collapse file tree 2 files changed +46
-0
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,25 @@ const AdminIndex =() =>{
77 return (
88 < Layout >
99 < Admin >
10+ < div className = "container-fluid" >
11+ < div className = "row" >
12+ < div className = "col-md-12" >
1013 < h2 > Admin Dashboard</ h2 >
14+ </ div >
15+ < div className = "col-md-4 pt-5 pb-5" >
16+ < ul class = "list-group" >
17+ < li className = "list-group-item" >
18+ < Link href = "/adminDashboard/update/category-tag" >
19+ < a > Create new category</ a >
20+ </ Link >
21+ </ li >
22+ </ ul >
23+ </ div >
24+ < div className = "col-md-8 pt-5 pb-5" >
25+ Right
26+ </ div >
27+ </ div >
28+ </ div >
1129 </ Admin >
1230 </ Layout >
1331 )
Original file line number Diff line number Diff line change 1+ import Layout from "../../../components/Layout" ;
2+ import Admin from "../../../components/authentication/Admin" ;
3+ import Link from "next/link" ;
4+
5+
6+ const CategoryTag = ( ) => {
7+ return (
8+ < Layout >
9+ < Admin >
10+ < div className = "container-fluid" >
11+ < div className = "row" >
12+ < div className = "col-md-12" >
13+ < h2 > Create Catagories and Tags</ h2 >
14+ </ div >
15+ < div className = "col-md-6 pt-5 pb-5" >
16+ < a > Categories</ a >
17+ </ div >
18+ < div className = "col-md-6 pt-5 pb-5" >
19+ < a > Tags</ a >
20+ </ div >
21+ </ div >
22+ </ div >
23+ </ Admin >
24+ </ Layout >
25+ )
26+ }
27+
28+ export default CategoryTag ;
You can’t perform that action at this time.
0 commit comments