Skip to content

Commit 3d5ad7f

Browse files
committed
Fix link issue caused by z index, add more vibe on the about statement
1 parent 5da2793 commit 3d5ad7f

5 files changed

Lines changed: 7 additions & 11 deletions

File tree

src/components/AboutUs/AboutUs.tsx

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,10 @@ export default function AboutUs() {
77
<h2 className="text-3xl md:text-6xl tracking-wide md:font-light uppercase">
88
About Us
99
</h2>
10-
<p className="hidden md:inline-block text-4xl font-bold ">
11-
Empowering great talent
12-
</p>
1310
<p className="sm:text-sm md:text-xl tracking-wide text-center space-y-4">
14-
We bring together people who are passionate about React JS and{' '}
15-
<br className="hidden md:display" />
16-
it&apos;s ecosystem. We are a community of full-stack developers,
17-
frontend developers and so much more
11+
We are a vibrant community of developers passionate about React NextJs React Native and the powerful ecosystem. Our mission is to empower developers—from full-stack
12+
experts to frontend enthusiasts—to grow, collaborate, and create meaningful
13+
solutions. Join us to connect, learn, and contribute to the future of web development.
1814
</p>
1915
</section>
2016
);

src/components/Events/Events.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ export default function Events() {
5959
return (
6060
<section
6161
id="events"
62-
className="relative flex flex-col items-center justify-center w-full pt-16 bg-[#023e8a] -z-10 md:py-20 gap-y-2 md:gap-y-5"
62+
className="relative flex flex-col items-center justify-center w-full pt-16 bg-[#023e8a] md:py-20 gap-y-2 md:gap-y-5"
6363
>
6464

6565
<h2 className="pb-2 text-3xl text-white font-bold md:pb-10">Community Events</h2>

src/components/MissionPillars/MissionPillars.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export default function MissionPillars() {
2121

2222
return (
2323
<section className="flex flex-col w-full items-center bg-[#0077b6] py-8 md:py-12 space-y-8 md:space-y-12">
24-
<h2 className="uppercase font-bold text-2xl sm:text-3xl md:text-5xl tracking-wide text-center mb-6 md:mb-8 text-[#20232a]">
24+
<h2 className="uppercase font-bold text-2xl sm:text-3xl md:text-5xl tracking-wide text-center mb-6 md:mb-8 text-[#f6f7f8]">
2525
Our Mission Pillars
2626
</h2>
2727
{pillars.map((pillar, index) => (

src/components/Navbar/Navbar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import LinkButton from '../LinkButton/LinkButton';
88
export default function Navbar() {
99
return (
1010
<>
11-
<header className="lg:pl-[49px] w-full fixed top-0 bg-black bg-opacity-50">
11+
<header className="lg:pl-[49px] w-full fixed top-0 bg-black bg-opacity-50 z-10">
1212
<nav className="nav py-4 pl-5 flex flex-col md:flex-row justify-around items-center">
1313
<div>
1414
<Link href={HOME}>

src/pages/index.page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export default function Home() {
2323
</Head>
2424
<main className="">
2525
<HeroHeader />
26-
<div className="flex flex-col py-12 bg-[#0096c7]">
26+
<div className="flex flex-col py-12 bg-[#030e30] text-white">
2727
<AboutUs />
2828
</div>
2929
<MissionPillars />

0 commit comments

Comments
 (0)