Skip to content

Commit

Permalink
Z axis change 4
Browse files Browse the repository at this point in the history
  • Loading branch information
Priyansh2116 committed Sep 15, 2024
1 parent bfad619 commit 4833fe2
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ const Home = () => {
}
`}</style>
{/* Navbar */}
<nav className="bg-black bg-opacity-60 text-white fixed w-full z-70">
<nav className="bg-black bg-opacity-60 text-white fixed w-full z-80">
<div className="container mx-auto px-4 py-2 flex justify-between items-center">
<Link href="/" legacyBehavior>
<a>
Expand Down Expand Up @@ -194,7 +194,7 @@ const Home = () => {

{/* Team Members Section */}
<div className="relative min-h-screen bg-black bg-cover bg-center flex flex-col items-center justify-center py-16" id="team">
<SparklesCore className="absolute inset-0 z-0" particleColor="#ffffff" particleDensity={30} />
<SparklesCore className="absolute inset-0 z-10" particleColor="#ffffff" particleDensity={30} />
<video autoPlay loop muted playsInline className="absolute inset-0 w-full h-full object-cover">
<source src="/starsvideo.mov" type="video/mov" />
Your browser does not support the video tag.
Expand Down Expand Up @@ -228,7 +228,7 @@ const Home = () => {
{/* Gallery Section */}
<div className="relative min-h-screen bg-black flex flex-col items-center justify-center py-16" id="gallery">
{/* Sparkles Effect */}
<SparklesCore className="absolute inset-0 z-0" particleColor="#ffffff" particleDensity={30} />
<SparklesCore className="absolute inset-0 z-10" particleColor="#ffffff" particleDensity={30} />

<h2 className="text-white text-6xl mb-12 font-serif z-10">Gallery</h2>
<div className="relative w-full max-w-4xl flex items-center justify-center z-10">
Expand Down Expand Up @@ -269,7 +269,7 @@ const Home = () => {
{/* Achievements Section */}
<div className="relative min-h-screen bg-black py-4 mb-[-16px]" id="achievements">
{/* Sparkles Effect */}
<SparklesCore className="absolute inset-0 z-0" particleColor="#ffffff" particleDensity={30} />
<SparklesCore className="absolute inset-0 z-10" particleColor="#ffffff" particleDensity={30} />

{/* Section Content */}
<h2 className="text-white text-4xl md:text-5xl lg:text-6xl text-center mb-12 font-serif z-10 relative">
Expand Down Expand Up @@ -378,7 +378,7 @@ const Home = () => {

{/* Sponsorship Section */}
<div className="relative min-h-screen bg-black flex flex-col items-center justify-center py-4 mt-[-16px]" id="sponsors">
<SparklesCore className="absolute inset-0 z-0" particleColor="#ffffff" particleDensity={30} />
<SparklesCore className="absolute inset-0 z-10" particleColor="#ffffff" particleDensity={30} />
<h2 className="text-white text-3xl sm:text-4xl md:text-5xl lg:text-6xl font-serif mb-12 sm:mb-16 z-20">Our Sponsors</h2>
<div className="flex flex-wrap items-center justify-center z-20">
{sponsorshipImages.map((sponsor, index) => (
Expand Down

0 comments on commit 4833fe2

Please sign in to comment.