diff --git a/src/pages/About.tsx b/src/pages/About.tsx new file mode 100644 index 0000000..cd92366 --- /dev/null +++ b/src/pages/About.tsx @@ -0,0 +1,117 @@ +import { useState } from "react"; +import { Card, CardContent } from "@/components/ui/card"; +import { Badge } from "@/components/ui/badge"; +import { Users, Disc3, MapPin, Award, Quote, X, ChevronLeft, ChevronRight } from "lucide-react"; +import { Button } from "@/components/ui/button"; +import Header from "@/components/Header"; +import Footer from "@/components/Footer"; + +const stats = [ + { icon: Users, label: "Monthly Listeners", value: "2.4M" }, + { icon: Disc3, label: "Albums Released", value: "4" }, + { icon: MapPin, label: "Tours Completed", value: "7" }, + { icon: Award, label: "Awards Won", value: "12" }, +]; + +const press = [ + { quote: "Nova Eclipse is redefining what electronic music can feel like. Every track is a world unto itself.", publication: "Pitchfork" }, + { quote: "A sonic architect building cathedrals of sound. The live show is nothing short of transcendent.", publication: "Rolling Stone" }, + { quote: "Chromatic Abyss is the album of the year. Dark, beautiful, and impossibly catchy.", publication: "NME" }, +]; + +const gallery = [ + { gradient: "from-purple-600 to-fuchsia-500", alt: "Live at Brooklyn Steel" }, + { gradient: "from-fuchsia-500 to-pink-500", alt: "Studio session" }, + { gradient: "from-violet-600 to-purple-500", alt: "Album artwork shoot" }, + { gradient: "from-indigo-600 to-violet-500", alt: "Festival headliner" }, + { gradient: "from-purple-700 to-indigo-500", alt: "Backstage moments" }, + { gradient: "from-fuchsia-600 to-rose-500", alt: "Press photoshoot" }, +]; + +export default function AboutPage() { + const [lightbox, setLightbox] = useState(null); + + return ( +
+
+ + {/* Hero */} +
+

About

+

The story behind the sound.

+
+ + {/* Bio */} +
+
+
+
+
+

Nova Eclipse

+

Born from the neon-lit underground of Los Angeles, Nova Eclipse emerged in 2019 as a boundary-pushing force in electronic music. Blending cinematic synthwave with darkwave textures, the project quickly gained a cult following through immersive live shows and a relentless release schedule that defied genre conventions.

+

With four studio albums, two EPs, and a global tour spanning 30 cities, Nova Eclipse has evolved from bedroom producer to arena headliner. Collaborations with visual artists and fashion houses have expanded the project into a full sensory experience, where sound, light, and emotion converge into something unforgettable.

+
+
+
+
+ + {/* Stats */} +
+
+ {stats.map((s, i) => ( + + + +
{s.value}
+
{s.label}
+
+
+ ))} +
+
+ + {/* Press */} +
+
+

Press

+
+ {press.map((p, i) => ( + + + +

{p.quote}

+ {p.publication} +
+
+ ))} +
+
+
+ + {/* Gallery */} +
+
+

Gallery

+
+ {gallery.map((img, i) => ( +
+
+
+ + {/* Lightbox */} + {lightbox !== null && ( +
setLightbox(null)}> + + +
e.stopPropagation()} /> + +
{gallery[lightbox].alt} — {lightbox + 1} / {gallery.length}
+
+ )} + +
+ ); +} \ No newline at end of file