// Blast Events — About page const { useEffect, useState } = React; const { TR, PulseLine, Nav, MobileMenu, Footer, useCursor, useReveal, useNavScroll } = window; // ============ Page Hero ============ function AboutHero() { return (
(ABOUT) · CHI SIAMO
BL · BELLUNO · IT
EST. 2019

Chi siamo.

Storia, persone, filosofia. Dietro ogni evento c'è una squadra. Questa è la nostra.

04 capitoli · scroll
); } // ============ Story (chapters) ============ const CHAPTERS = [ { year: '2019', title: 'Le origini.', body: [ Blast Events nasce nella provincia di Belluno con un'idea precisa. Proporre un nuovo format di eventi, capace di unire intrattenimento, qualità e attenzione ai dettagli., Fin dall'inizio il focus è creare esperienze coinvolgenti, costruite su misura per il territorio e per il pubblico, curando ogni aspetto organizzativo e creativo.] }, { year: '2025', title: 'La svolta tecnica.', body: [ Negli anni abbiamo evoluto le competenze, ampliando il raggio d'azione e consolidando un know-how tecnico sempre più solido., Con il 2025 un passo avanti importante. Ci specializziamo nel service audio e luci, diventando parte integrante di ciò che sta dietro ogni evento. La struttura tecnica, l'atmosfera, la resa scenica.] }, { year: 'Oggi', title: 'Assistenza completa.', body: [ Un servizio che parte dall'ideazione e arriva fino alla realizzazione, includendo la progettazione di palchi completamente personalizzati in base alle esigenze del cliente., Ogni progetto viene studiato con attenzione, combinando funzionalità, estetica e sicurezza.] }]; function Story() { return (
(01) La storia

Sette anni, una rotta.

{CHAPTERS.map((c, i) =>
{c.year}
[CAP·0{i + 1}]

{c.title}

{c.body.map((p, j) =>

{p}

)}
)}
); } // ============ Philosophy ============ const PILLARS = [ { n: '01', word: 'Passione', tag: 'CORE VALUE' }, { n: '02', word: 'Affidabilità', tag: 'CORE VALUE' }, { n: '03', word: 'Innovazione', tag: 'CORE VALUE', accent: true }]; function Philosophy() { return (
(02) Filosofia

Il nostro codice.

{PILLARS.map((p) =>
[{p.n}] {p.accent ? {p.word} : p.word} {p.tag}
)}
); } // ============ Team ============ const TEAM = [ { n: '01', first: 'Manuel', last: 'Dal Pont', role: 'Audio & Lighting' }, { n: '02', first: 'Lorenzo', last: 'De Moliner', role: 'Ledwall & Lighting' }]; function TeamRow({ p }) { return (
[{p.n}]
{p.first} {p.last}
{p.role}
); } function Team() { return (
(03) Il team

Le persone dietro.

{TEAM.map((p) => )}
); } // ============ CTA — back to home contact ============ function CTA() { return (
(04) Prossimo capitolo

Lavoriamo insieme.

Richiedi un preventivo Vedi i lavori
); } // ============ Root ============ function AboutApp({ tweaks }) { useCursor(); useReveal(); useNavScroll(); const [menu, setMenu] = useState(false); // Apply tweaks (same shape as home) useEffect(() => { const r = document.documentElement.style; r.setProperty('--accent', tweaks.accent); r.setProperty('--display', tweaks.display); r.setProperty('--density', tweaks.density); if (tweaks.theme === 'light') { r.setProperty('--bg', '#f4f1ea'); r.setProperty('--bg-2', '#ebe7dd'); r.setProperty('--fg', '#0a0a0a'); r.setProperty('--fg-dim', '#666'); r.setProperty('--line', '#dcd6c8'); r.setProperty('--line-2', '#c8c1b0'); r.setProperty('--accent-ink', '#f4f1ea'); } else { r.setProperty('--bg', '#000'); r.setProperty('--bg-2', '#0a0a0a'); r.setProperty('--fg', '#ffffff'); r.setProperty('--fg-dim', '#8a8a8a'); r.setProperty('--line', '#1a1a1a'); r.setProperty('--line-2', '#2a2a2a'); r.setProperty('--accent-ink', '#000'); } }, [tweaks]); return ( <>