Skip to content
This repository was archived by the owner on Mar 7, 2024. It is now read-only.

Commit 10dbcfb

Browse files
minor changes
1 parent 381797b commit 10dbcfb

File tree

8 files changed

+7
-28
lines changed

8 files changed

+7
-28
lines changed

src/components/Course/CourseCardTemplate1.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ export default function CourseCard({ course }) {
139139
{course.domain}
140140
</Typography>
141141

142-
<Typography variant="h4" align="left" style={{ fontWeight: 700 }}>
142+
<Typography variant="h4" align="left" style={{ fontWeight: 700, width: '105%' }}>
143143
{course.title}
144144
</Typography>
145145
</Box>

src/data/courses/advanced/WebDevelopment.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export const webDevelopment = {
55
level: 'Level 2',
66
link: '/fullstack-webdev-with-js',
77
domain: 'Web Development',
8-
title: 'Master Full Stack Web Development with JS',
8+
title: 'Master Full Stack Web Development with JS (MERN)',
99
upcoming: 'Feb 13th',
1010
mentors: ['ganga', 'anuj'],
1111
schedule: [

src/data/courses/foundation/AlgoJS.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export const algoJS = {
44
level: 'Level 1',
55
link: '/ds-algo-with-js',
66
domain: 'Algorithms & Complexities',
7-
title: 'Data Structure and Algorithms with JavaScript',
7+
title: 'Data Structures and Algorithms with JavaScript',
88
upcoming: 'Jan 16th',
99
mentors: ['ganga', 'anuj'],
1010
schedule: [

src/data/courses/foundation/AlgoJava.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export const algoJava = {
44
level: 'Level 1',
55
link: '/ds-algo-with-java',
66
domain: 'Algorithms & Complexities',
7-
title: 'Data Structure and Algorithms with Java',
7+
title: 'Data Structures and Algorithms with Java',
88
upcoming: 'Jan 16th',
99
mentors: ['anuj', 'kunal', 'ekta'],
1010
schedule: [

src/data/courses/foundation/AlgoPython.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export const algoPython = {
44
level: 'Level 1',
55
link: '/ds-algo-with-python',
66
domain: 'Algorithms & Complexities',
7-
title: 'Data Structure and Algorithms with Python',
7+
title: 'Data Structures and Algorithms with Python',
88
upcoming: 'Jan 16th',
99
mentors: ['anuj', 'kunal'],
1010
schedule: [

src/data/courses/training/WebDevelopment.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export const webDevelopment = {
55
level: 'Level 2',
66
link: '/six-months-fullstack-webdev-with-js',
77
domain: 'Interview Targeted Prepration',
8-
title: 'Master Full Stack Web Dev with DS & Algo in JS',
8+
title: 'Master Full Stack Web Dev (MERN) with DS & Algo in JS',
99
upcoming: 'Jan 16th',
1010
mentors: ['anuj', 'ganga'],
1111
schedule: [

src/views/pages/Course/Schedule.js

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -270,18 +270,6 @@ function BatchDropBox({ course, batch, batchIndex, expanded, setExpanded }) {
270270
{batch.price}
271271
</Typography>
272272
</Box>
273-
274-
<Typography
275-
style={{
276-
color: '#636363',
277-
fontSize: '12px',
278-
marginBottom: '4px'
279-
}}
280-
align="left"
281-
>
282-
You will need to pay only after your application has been
283-
accepted.
284-
</Typography>
285273
</Box>
286274

287275
<Box
@@ -290,6 +278,7 @@ function BatchDropBox({ course, batch, batchIndex, expanded, setExpanded }) {
290278
justifyContent="center"
291279
alignItems="center"
292280
style={{
281+
marginTop: '12px',
293282
padding: '4px 16px',
294283
background: '#282828',
295284
borderRadius: '5px'

src/views/pages/Course/partials/DetailsBottom.js

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -86,16 +86,6 @@ export default function DetailsBottom({ course, batch }) {
8686
</Box>
8787

8888
<Box mb={2} display="flex" flexDirection="row">
89-
<Typography
90-
style={{
91-
marginRight: '24px',
92-
color: '#939393'
93-
}}
94-
variant="body2"
95-
>
96-
You will need to pay only after your application have been
97-
accepted.
98-
</Typography>
9989
</Box>
10090
</Box>
10191
</Grid>

0 commit comments

Comments
 (0)