import SiteLayout from "./components/SiteLayout"; import layoutStyles from "@/styles/Layout.module.css"; import styles from "@/styles/World.module.css"; // Placeholder — tracks will be added when official BLB soundtrack assets are available const TRACKS: { title: string; vibe: string; file?: string }[] = [ // { title: "Bone Kingdom Theme", vibe: "Dark orchestral", file: "/music/bone-kingdom-theme.mp3" }, ]; export default function Music() { return ( {/* Hero */}
The Soundtrack

Music

The Bone Kingdom has a sound. Dark. Relentless. Yours.

{TRACKS.length > 0 ? (
{TRACKS.map((t, i) => (
{String(i + 1).padStart(2, "0")}
{t.title} {t.vibe}
{t.file && ( )}
))}
) : null} {/* YouTube playlist embed placeholder */}
🎵

Official soundtrack coming with Episode 1

Subscribe on YouTube for updates
{/* Patreon CTA */}

Support the Soundtrack

Patrons get early access to music, behind-the-scenes production content, and the full score as it's composed.

Support on Patreon
); }