Commit d2693181 by PLN (Algolia)

iterate

parent 56d72d1d
...@@ -32,16 +32,17 @@ export default function ParVaguesHeader({ eventName = null, title = null }) { ...@@ -32,16 +32,17 @@ export default function ParVaguesHeader({ eventName = null, title = null }) {
return ( return (
<header className="sticky top-0 left-0 w-full z-50 bg-black/80 backdrop-blur-md border-b border-[#d900ff]/20"> <header className="sticky top-0 left-0 w-full z-50 bg-black/80 backdrop-blur-md border-b border-[#d900ff]/20">
<div className={`${styles.neonGradient} opacity-5`}></div> <div className={`${styles.neonGradient} opacity-5 absolute inset-0`}></div>
<div className="max-w-6xl mx-auto px-4 py-3 flex justify-between items-center relative"> <div className="max-w-6xl mx-auto px-4 py-3 flex items-center justify-between">
<div className="flex items-center"> {/* Logo and Title with Navigation */}
<div className="flex items-center justify-between w-full">
<Link href="/parvagues" className="flex items-center group"> <Link href="/parvagues" className="flex items-center group">
<div className="h-10 w-auto relative"> <div className="h-10 w-10 relative flex-shrink-0">
<Image <Image
src="/images/parvagues/logo_transparent.png" src="/images/parvagues/logo.png"
alt="ParVagues Logo" alt="ParVagues Logo"
width={200} width={48}
height={200} height={48}
className="object-contain transition-all duration-300 group-hover:filter group-hover:drop-shadow-[0_0_8px_rgba(217,0,255,0.7)]" className="object-contain transition-all duration-300 group-hover:filter group-hover:drop-shadow-[0_0_8px_rgba(217,0,255,0.7)]"
/> />
</div> </div>
...@@ -49,7 +50,7 @@ export default function ParVaguesHeader({ eventName = null, title = null }) { ...@@ -49,7 +50,7 @@ export default function ParVaguesHeader({ eventName = null, title = null }) {
<div className="overflow-hidden ml-2"> <div className="overflow-hidden ml-2">
<span <span
className={`text-white font-bold transition-all duration-500 ${ className={`text-white font-bold transition-all duration-500 ${
showInHeader ? 'opacity-100 translate-y-0' : 'opacity-0 -translate-y-8' showInHeader || !isHome ? 'opacity-100 translate-y-0' : 'opacity-0 -translate-y-8'
}`} }`}
style={{ style={{
textShadow: '0 0 5px rgba(217, 0, 255, 0.7), 0 0 10px rgba(217, 0, 255, 0.5)', textShadow: '0 0 5px rgba(217, 0, 255, 0.7), 0 0 10px rgba(217, 0, 255, 0.5)',
...@@ -60,10 +61,11 @@ export default function ParVaguesHeader({ eventName = null, title = null }) { ...@@ -60,10 +61,11 @@ export default function ParVaguesHeader({ eventName = null, title = null }) {
</span> </span>
</div> </div>
</Link> </Link>
</div>
{/* Navigation and CTA */}
<div className="flex items-center space-x-6">
{/* Navigation Links */} {/* Navigation Links */}
<nav className="hidden md:flex items-center space-x-6 text-sm tracking-wider"> <nav className="flex items-center space-x-6 text-sm tracking-wider">
<Link href="/parvagues#music" className="text-gray-300 hover:text-[#ff3d7b] transition-colors"> <Link href="/parvagues#music" className="text-gray-300 hover:text-[#ff3d7b] transition-colors">
Music Music
</Link> </Link>
...@@ -76,13 +78,15 @@ export default function ParVaguesHeader({ eventName = null, title = null }) { ...@@ -76,13 +78,15 @@ export default function ParVaguesHeader({ eventName = null, title = null }) {
</nav> </nav>
{/* CTA button */} {/* CTA button */}
<a <Link
href="/book" href="/book"
className={`${styles.outlineButton} py-2 px-4 text-sm`} className={`${styles.outlineButton} py-2 px-4 text-sm flex items-center whitespace-nowrap`}
> >
<FaEnvelope className="inline mr-2" /> <FaEnvelope className="mr-2 flex-shrink-0" />
Book <span>Book</span>
</a> </Link>
</div>
</div>
</div> </div>
</header> </header>
); );
......
...@@ -56,8 +56,8 @@ ...@@ -56,8 +56,8 @@
} }
.heroContent { .heroContent {
padding: 2rem 3rem; /* max width should be 80% */
max-width: 1400px; max-width: 80%;
margin: 0 auto; margin: 0 auto;
width: 100%; width: 100%;
min-height: 100vh; min-height: 100vh;
...@@ -553,3 +553,10 @@ AS MODULE CSS FORBIDS ROOT VARIABLES ...@@ -553,3 +553,10 @@ AS MODULE CSS FORBIDS ROOT VARIABLES
animation: shine 1.5s ease-in-out; animation: shine 1.5s ease-in-out;
} }
*/ */
#section1 > .h3 {
margin: 1em 0;
text-decoration-line: underline;
text-decoration-color: var(--neon-down);
text-decoration-thickness: 3px;
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment