Skip to content

Commit c863cfc

Browse files
committed
Update link in Navbar to point to Opportunities page
1 parent 0390935 commit c863cfc

File tree

2 files changed

+24
-33
lines changed

2 files changed

+24
-33
lines changed

src/Page/OpportunitiesHub/Hackathons.jsx

+23-32
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
import React, { useState } from 'react';
22
import { ArrowLeft, Search } from 'lucide-react';
3-
import { Footer } from '../components/Footer/Footer';
4-
import styled from 'styled-components'; // Import styled-components
5-
import Marquee from 'react-fast-marquee'; // Import Marquee
3+
import styled from 'styled-components';
4+
import Marquee from 'react-fast-marquee';
65

76
const Navbar = () => {
87
return (
98
<nav className="sticky top-0 z-50 w-full bg-gray-800 text-white shadow-md">
109
<div className="mx-auto flex max-w-7xl items-center justify-between px-4 py-3">
11-
<a href="/home">
10+
<a href="/opportunities">
1211
<button className="flex items-center gap-2 rounded-full border border-white p-2 hover:bg-gray-700">
1312
<ArrowLeft className="h-5 w-5" />
1413
<span className="hidden md:inline">Back</span>
@@ -43,14 +42,7 @@ const Hero = () => {
4342
return (
4443
<section className="hero-section mb-0 flex min-h-[10vh] flex-col items-center justify-center text-white">
4544
<div className="flex w-full flex-col items-center justify-center px-8 text-center">
46-
{/* <h2 className="mb-4 text-6xl font-bold">
47-
Opportunities <span className="text-[#00a6fb]">Hub</span>
48-
</h2> */}
49-
{/* <p className="text-md md:text-md mx-auto max-w-2xl">
50-
One Platform, Endless Tech Opportunities
51-
</p> */}
5245
<div className="my-6"></div>
53-
{/* <h1 className="mb-2 text-6xl font-bold tracking-widest md:text-4xl"><span className="text-[#00a6fb]">Unlock All Tech Opportunities in One Place</span></h1> */}
5446
<StyledWrapper>
5547
<div className="modgp relative inline-block w-full py-3">
5648
<div className="relative">
@@ -219,32 +211,32 @@ const Hero = () => {
219211

220212
const Tags = () => {
221213
const tags = [
222-
'Hybrid Jobs',
223-
'Onsite Jobs',
224-
'Remote Jobs',
225-
'Internships',
226-
'Freelancing',
227-
'Offline Hackathons',
228214
'Online Hackathons',
229-
'Competitions',
230-
'Tech Events',
231-
'Tech Fest',
232-
'Bootcamps',
233-
'Certifications',
234-
'Skill Development',
235-
'OpenSource Program',
236-
'Coding Challenges',
237-
'Mentorship Programs',
238-
'Workshops',
239-
'Networking Events',
240-
'Scholarships',
241-
'Startup Incubators',
215+
'Offline Hackathons',
216+
'College Hackathons',
217+
'International Hackathons',
218+
'Beginner Friendly Hackathons',
219+
'Themed Hackathons',
220+
'24-Hour Hackathons',
221+
'48-Hour Hackathons',
222+
'Startup Hackathons',
223+
'AI/ML Hackathons',
224+
'Web Development Hackathons',
225+
'Game Dev Hackathons',
226+
'Women-Only Hackathons',
227+
'Student Competitions',
228+
'Coding Competitions',
229+
'Global Coding Challenges',
230+
'Team-Based Competitions',
231+
'Solo Coding Challenges',
232+
'Competitive Programming Contests',
233+
'Hackathon Leaderboards',
242234
];
243235

244236
return (
245237
<section id="tags" className="mb-0 w-full pt-12 sm:py-16">
246238
<h1 className="text-md text-primary mb-8 text-center font-bold text-[#00a6fb] lg:text-2xl">
247-
Unlock All Tech Opportunities in One Place
239+
Discover & Join Hackathons from All Around the World
248240
</h1>
249241
{/* <h2 className="text-md text-primary mb-8 text-center text-[#00a6fb] font-bold lg:text-2xl">One Platform, Endless Tech Opportunities</h2> */}
250242

@@ -804,7 +796,6 @@ const Hackathons = () => {
804796
<Hero />
805797
<Tags />
806798
<OpportunitiesCards />
807-
<Footer />
808799
</div>
809800
);
810801
};

src/Page/OpportunitiesHub/HybridOnsiteJobs.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const Navbar = () => {
1010
return (
1111
<nav className="sticky top-0 z-50 w-full bg-gray-800 text-white shadow-md">
1212
<div className="mx-auto flex max-w-7xl items-center justify-between px-4 py-3">
13-
<a href="/home">
13+
<a href="/opportunities">
1414
<button className="flex items-center gap-2 rounded-full border border-white p-2 hover:bg-gray-700">
1515
<ArrowLeft className="h-5 w-5" />
1616
<span className="hidden md:inline">Back</span>

0 commit comments

Comments
 (0)