This repository was archived by the owner on Mar 7, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +41
-1
lines changed
src/views/pages/CoursesView Expand file tree Collapse file tree 1 file changed +41
-1
lines changed Original file line number Diff line number Diff line change @@ -101,19 +101,59 @@ const useStyles = makeStyles(theme => ({
101
101
export default function Courses ( ) {
102
102
const classes = useStyles ( ) ;
103
103
104
+ const training = coursesContent . training ;
104
105
const foundation = coursesContent . foundation ;
105
106
const advanced = coursesContent . advanced ;
106
107
107
108
return (
108
109
< Grid container className = { classes . root } >
109
- < Grid item lg = { 12 } md = { 12 } sm = { 12 } xs = { 12 } >
110
+ < Grid
111
+ item
112
+ lg = { 12 }
113
+ md = { 12 }
114
+ sm = { 12 }
115
+ xs = { 12 }
116
+ style = { {
117
+ marginTop : '48px'
118
+ } }
119
+ >
110
120
< Typography
111
121
variant = "h1"
112
122
align = "center"
113
123
color = "textPrimary"
114
124
style = { {
115
125
marginBottom : '20px'
116
126
} }
127
+ >
128
+ Six Months Training
129
+ </ Typography >
130
+ </ Grid >
131
+
132
+ < Grid container >
133
+ < Grid
134
+ item
135
+ lg = { 12 }
136
+ md = { 12 }
137
+ sm = { 12 }
138
+ xs = { 12 }
139
+ align = "center"
140
+ display = "flex"
141
+ justifyContent = "center"
142
+ alignItems = "center"
143
+ >
144
+ < CoursesGrid courses = { training } />
145
+ </ Grid >
146
+ </ Grid >
147
+
148
+ < Grid item lg = { 12 } md = { 12 } sm = { 12 } xs = { 12 } >
149
+ < Typography
150
+ variant = "h1"
151
+ align = "center"
152
+ color = "textPrimary"
153
+ style = { {
154
+ marginBottom : '20px' ,
155
+ marginTop : '48px'
156
+ } }
117
157
>
118
158
Foundational Courses
119
159
</ Typography >
You can’t perform that action at this time.
0 commit comments