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

Commit 7cb01f1

Browse files
authored
Merge pull request #826 from Susmita-Dey/main
Feat: website changes
2 parents 3c32fbb + 9772411 commit 7cb01f1

16 files changed

+12
-795
lines changed

src/App.jsx

-23
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,11 @@ import { hackathonDataList } from '@/content/Hackathons';
1616
import { MeetupPageContent } from '@/content/Meetup';
1717
import Delhi2023 from '@/content/Meetup/delhi-may-2023';
1818
import { OpensourcePageContent } from '@/content/opensource';
19-
import RoadLessTravelledContent from '@/content/roadlesstravelled';
20-
import Supper25Content from '@/content/super25';
2119
import WebinarPageContent, { webinar } from '@/content/Webinars/index.content';
2220

2321
import { Loader } from '@/components/layout';
2422
import ScrollToTop from '@/components/ScrollToTop';
2523

26-
const RoadLessTravelledPage = lazy(() =>
27-
import('@/pages/RoadLessTravelledPage')
28-
);
29-
3024
const ScholarshipsPage = lazy(() => import('@/pages/ScholarshipsPage'));
3125
const HackathonsPage = lazy(() => import('@/pages/HackathonPage'));
3226
const EducationalEventsPage = lazy(() =>
@@ -45,7 +39,6 @@ const PerticularhackathonPage = lazy(() =>
4539
import('@/pages/PerticularhackathonPage')
4640
);
4741
const ParticularMeetupPage = lazy(() => import('@/pages/ParticularMeetupPage'));
48-
const Super25Page = lazy(() => import('@/pages/Super25Page'));
4942
const CocPage = lazy(() => import('@/pages/CocPage'));
5043
const MeetupPage = lazy(() => import('@/pages/MeetupPage'));
5144
const OpenSourcePage = lazy(() => import('@/pages/OpenSourcePage'));
@@ -155,22 +148,6 @@ const App = () => {
155148
element={<EducationalEventsPage />}
156149
/>
157150

158-
{/* Career events */}
159-
<Route
160-
exact
161-
path='/events/road-less-travelled'
162-
element={
163-
<RoadLessTravelledPage content={RoadLessTravelledContent} />
164-
}
165-
/>
166-
167-
{/* Super 25 */}
168-
<Route
169-
exact
170-
path='/events/super25'
171-
element={<Super25Page content={Supper25Content} />}
172-
/>
173-
174151
{/* COC */}
175152
<Route exact path='/coc' element={<CocPage content={CocContent} />} />
176153

src/components/Cards/Super25TimeLineCard.jsx

-44
This file was deleted.

src/components/PageComp/EventsPage/EventCategories.jsx

+9-27
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@ import Educational from 'assets/events/educational.jpg';
22
import Hackathon from 'assets/events/hackathon.jpg';
33
import Hashnode from 'assets/events/hashnode.jpg';
44
import Meetup from 'assets/events/meetup.jpeg';
5-
import Roads from 'assets/events/roads.jpg';
65
import Scholarship from 'assets/events/scholarship.jpg';
7-
import Super25 from 'assets/events/super25.jpg';
86
import Webinar from 'assets/events/webinar.jpg';
97

108
import DetailCard from '@/components/Cards/DetailCard';
@@ -31,15 +29,15 @@ export default PastEvents;
3129

3230
const eventsData2 = [
3331
{
34-
title: 'Blogging challenges',
32+
title: 'Webinars',
3533
description:
36-
'Every month we will be having 4 tracks. You can write one or multiple blogs on the given tracks. The best blogs will receive hashnode swag.',
37-
image: Hashnode,
38-
url: '/events/hashnode',
34+
'Stay ahead with our insightful webinars. Join experts, gain valuable knowledge, and engage in interactive online learning.',
35+
image: Webinar,
36+
url: '/events/webinars',
3937
btnText: 'Know more',
4038
},
4139
{
42-
title: 'Meetup',
40+
title: 'Meetups',
4341
description:
4442
'Grow with our coding community. Engage in meetups, learn from experts, and expand your network in a welcoming environment.',
4543
image: Meetup,
@@ -54,14 +52,6 @@ const eventsData2 = [
5452
url: '/events/hackathons',
5553
btnText: 'Know more',
5654
},
57-
{
58-
title: 'Webinar',
59-
description:
60-
'Stay ahead with our insightful webinars. Join experts, gain valuable knowledge, and engage in interactive online learning.',
61-
image: Webinar,
62-
url: '/events/webinars',
63-
btnText: 'Know more',
64-
},
6555
{
6656
title: 'Scholarships',
6757
description:
@@ -79,19 +69,11 @@ const eventsData2 = [
7969
btnText: 'Know more',
8070
},
8171
{
82-
title: 'The Road Less Travelled',
83-
description:
84-
'Embark on a journey of career excellence with our career guidance live events. Learn from experts, gain valuable insights, and advance your career in the tech landscape.',
85-
image: Roads,
86-
url: '/events/road-less-travelled',
87-
btnText: 'Know more',
88-
},
89-
{
90-
title: 'Super 25 program',
72+
title: 'Blogging challenges',
9173
description:
92-
'Expand your knowledge and enhance your skills with our expert-led webinars on a wide range of topics.',
93-
image: Super25,
94-
url: '/events/super25',
74+
'Every month we will be having 4 tracks. You can write one or multiple blogs on the given tracks. The best blogs will receive hashnode swag.',
75+
image: Hashnode,
76+
url: '/events/hashnode',
9577
btnText: 'Know more',
9678
},
9779
];

src/components/PageComp/HomePage/Hero.jsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ const Hero = () => {
2020
<ArrowLink as={ButtonLink} href='#courses'>
2121
Courses
2222
</ArrowLink>
23-
<ArrowLink as={ButtonLink} href='#mentorship'>
24-
Mentorship
25-
</ArrowLink>
2623
<ArrowLink as={ButtonLink} href='#events'>
2724
Events
2825
</ArrowLink>
26+
<ArrowLink as={ButtonLink} href='#content'>
27+
Newsroom
28+
</ArrowLink>
2929
</div>
3030
</div>
3131
</section>

src/components/PageComp/RoadLessTravelled/About.jsx

-32
This file was deleted.

src/components/PageComp/RoadLessTravelled/Benefits.jsx

-29
This file was deleted.

src/components/PageComp/RoadLessTravelled/Hero.jsx

-54
This file was deleted.

src/components/PageComp/RoadLessTravelled/LearnInPublic.jsx

-94
This file was deleted.

0 commit comments

Comments
 (0)