@@ -7,13 +7,7 @@ import HomeView from 'src/views/pages/HomeView';
77import CAView from 'src/views/pages/CLView' ;
88import EventsView from 'src/views/pages/EventsView' ;
99import LoadingScreen from 'src/components/LoadingScreen' ;
10- import MachineLearningView from 'src/views/pages/Courses/MachineLearningView'
11- import AlgoJavaView from 'src/views/pages/Courses/AlgoJavaView'
12- import AlgoPythonView from 'src/views/pages/Courses/AlgoPythonView'
13- import WebFullStakView from 'src/views/pages/Courses/WebFullStakView'
14- import CompetitiveJavaView from 'src/views/pages/Courses/CompetitiveJavaView'
15- import PythonDevelopmentView from 'src/views/pages/Courses/PythonDevelopmentView'
16- import CoursesView from 'src/views/pages/CoursesView' ;
10+ import Courses from 'src/views/pages/Courses' ;
1711import ProfileView from 'src/views/pages/ProfileView'
1812import ApplicationsView from 'src/views/pages/ApplicationsView'
1913
@@ -102,7 +96,7 @@ const routesConfig = [
10296 {
10397 exact : true ,
10498 path : '/courses' ,
105- component : CoursesView
99+ component : Courses
106100 } ,
107101 {
108102 component : ( ) => < Redirect to = "/404" />
@@ -136,72 +130,7 @@ const routesConfig = [
136130 }
137131 ]
138132 } ,
139- {
140- path : '/machine-learning-using-python' ,
141- layout : MainLayout ,
142- routes : [
143- {
144- exact : true ,
145- path : '/machine-learning-using-python' ,
146- component : MachineLearningView
147- }
148- ]
149- } ,
150- {
151- path : '/ds-algo-with-java' ,
152- layout : MainLayout ,
153- routes : [
154- {
155- exact : true ,
156- path : '/ds-algo-with-java' ,
157- component : AlgoJavaView
158- }
159- ]
160- } ,
161- {
162- path : '/ds-algo-with-python' ,
163- layout : MainLayout ,
164- routes : [
165- {
166- exact : true ,
167- path : '/ds-algo-with-python' ,
168- component : AlgoPythonView
169- }
170- ]
171- } ,
172- {
173- path : '/fullstack-webdev-with-js' ,
174- layout : MainLayout ,
175- routes : [
176- {
177- exact : true ,
178- path : '/fullstack-webdev-with-js' ,
179- component : WebFullStakView
180- }
181- ]
182- } ,
183- {
184- path : '/competitive-programming-using-java' ,
185- layout : MainLayout ,
186- routes : [
187- {
188- exact : true ,
189- path : '/competitive-programming-using-java' ,
190- component : CompetitiveJavaView
191- }
192- ]
193- } ,
194- {
195- path : '/application-dev-using-python' ,
196- layout : MainLayout ,
197- routes : [
198- {
199- exact : true ,
200- path : '/application-dev-using-python' ,
201- component : PythonDevelopmentView
202- }
203- ]
204- } ,
133+
205134 {
206135 path : '*' ,
207136 layout : MainLayout ,
0 commit comments