'use client'; import { Github } from 'lucide-react'; import Image from 'next/image'; import { useEffect, useState } from 'react'; import { ControlUI } from '@/components/ControlUI'; import { Features } from '@/components/Features'; import { Footer } from '@/components/Footer'; import { Navbar } from '@/components/Navbar'; import { AppleIcon, LinuxIcon, WindowsIcon } from '@/components/PlatformIcons'; import { DOWNLOAD_LINKS, GITHUB_REPO } from '@/lib/constants'; import type { DownloadLinks } from '@/lib/releases'; export default function Home() { const [downloadLinks, setDownloadLinks] = useState(DOWNLOAD_LINKS); useEffect(() => { fetch('/api/releases') .then((res) => { if (!res.ok) throw new Error('Failed to fetch releases'); return res.json(); }) .then((data) => { if (data.downloadLinks) setDownloadLinks(data.downloadLinks); }) .catch((error) => { console.error('Failed to fetch release info:', error); }); }, []); return ( <> {/* ── Hero Section ─────────────────────────────────────────────── */}
{/* Background glow */}
{/* Logo */}
Voicebox
{/* Headline */}

Your voice, your machine.

{/* Subtitle */}

Open source voice cloning studio powered by Qwen3-TTS. Clone any voice, generate natural speech, and compose multi-voice projects — all running locally.

{/* CTAs */} {/* Version */}

Free and open source · macOS, Windows, Linux

{/* ── ControlUI mockup ─────────────────────────────────────── */}
{/* ── Features ─────────────────────────────────────────────── */} {/* ── About / Manifesto ────────────────────────────────────── */}

Why Voicebox exists

Cloud voice cloning services lock your voice data behind subscriptions, rate limits, and terms of service that can change at any time. Your voice — and the voices you clone — should belong to you.

Voicebox is a local-first voice cloning studio. Download a model, clone any voice from a few seconds of audio, and generate speech entirely on your machine.

Optimized with Metal acceleration on Mac and CUDA on Windows/Linux. No Python install required. No cloud. No subscriptions. Free and open-source, forever.

{/* ── Download Section ─────────────────────────────────────── */}

Download Voicebox

Available for macOS, Windows, and Linux. No dependencies required.

{/* macOS ARM */}
macOS
Apple Silicon (ARM)
{/* macOS Intel */}
macOS
Intel (x64)
{/* Windows */}
Windows
64-bit (MSI)
{/* Linux */}
Linux
Coming soon
{/* GitHub link */}
{/* ── Footer ───────────────────────────────────────────────── */}