import Image from "next/image"; const nav = [ { label: "ENTER ALIV", href: "#enter" }, { label: "ACCESS", href: "#access" }, { label: "COME ALIV", href: "#come" }, { label: "VIP SOCIETY", href: "#vip" }, { label: "DIR SHOP", href: "#shop" }, ]; const experience = [ { title: "FOOD VILLAGE", desc: "Curated cuisine from around the world.", icon: "🍽️", }, { title: "CARNIVAL RIDES", desc: "Thrilling rides and spectacular views.", icon: "🎑", }, { title: "CARNIVAL GAMES", desc: "Classic games and fun challenges.", icon: "🎯", }, { title: "IMMERSIVE ACTIVATIONS", desc: "Interactive moments & brand experiences.", icon: "πŸ”₯", highlight: true, }, { title: "PARTY AREA", desc: "Epic DJ sets and all-night celebrations.", icon: "πŸ•ΊπŸ½", }, ]; export default function Page() { return (
{/* Ambient background */}
); } function Header() { return (
); } function Hero() { return (
{/* top glow line */}
{/* Logo Hero */}
{/* YOUR LOGO IMAGE */}
ALIVFEST Logo
{/* Date line like your screenshot */}
DECEMBER 17 β€” JANUARY 4 MULTIPLE STAGES CURATED VILLAGES VIP SOCIETY
{/* Buttons */}
{/* bottom glow line */}
); } function Dot() { return ; } function Experience() { return (

The Experience.

Curated moments from day to night.

{experience.map((x) => (
{x.icon}
{x.title}
{x.desc}
{x.highlight && (
)}
))}
{/* subtle divider glow */}
); } function VIP() { return (

VIP Society.

Premium access. Fast entry. Elevated lounge energy. The kind of night you post about for weeks.

  • β€’ VIP entry lane + priority security
  • β€’ Lounge seating + premium viewing
  • β€’ Curated bar & bottle service options
  • β€’ Photo moments + brand activations
COMING SOON
Ticket Drops + Lineup Announcements

Add your email capture here (Mailchimp/ConvertKit later). For now, this is a premium waitlist block.

By joining, you agree to receive ALIVFEST updates.
); } function Footer() { return ( ); }