import type { Metadata } from "next"; import Link from "next/link"; import { Sparkles, Wand2, ShieldCheck, Globe, Zap, HeartHandshake, ArrowRight, } from "lucide-react"; import { Button } from "@/components/ui/button"; export const metadata: Metadata = { title: "About", description: "Podcast Distribution AI is an AI studio that turns a single idea into a finished, publishable podcast — script, voices, and cover art — in minutes. Learn why we built it and what we believe.", }; const STATS = [ { value: "3", label: "AI models in one workflow" }, { value: "14+", label: "Realistic narrator voices" }, { value: "13+", label: "Languages supported" }, { value: "Minutes", label: "From idea to finished episode" }, ]; const VALUES = [ { icon: Sparkles, title: "Creativity for everyone", body: "Powerful production shouldn't require gear, a budget, or technical skill. If you can describe an idea, you can turn it into a finished episode.", }, { icon: Wand2, title: "Quality you'd actually publish", body: "AI drafts are a starting point, not the finish line. Every script and voice is editable, so the final cut always sounds like you.", }, { icon: ShieldCheck, title: "Built responsibly", body: "We screen content against a clear policy, never use your private work to train our models, and make sure you own everything you create.", }, { icon: Globe, title: "Global from day one", body: "Stories aren't only told in English. With 13+ languages, you can produce for an audience anywhere — no re-recording required.", }, { icon: Zap, title: "Fast, but never careless", body: "Minutes from idea to episode, with the controls to get the details right before you hit publish. Speed and craft aren't a trade-off.", }, { icon: HeartHandshake, title: "Honest and transparent", body: "Simple plans, clear limits, cancel anytime. No dark patterns and no surprises — just a tool that respects your time and your work.", }, ]; export default function AboutPage() { return ( <> {/* Hero */}

About us

Making great podcasts possible for everyone

Podcast Distribution AI is an AI studio that turns a single idea into a finished, publishable episode — script, voices, and cover art — in minutes. No microphone, no editing suite, no production budget.

{/* Stats */}
{STATS.map((s) => (

{s.value}

{s.label}

))}
{/* Mission */}

Our mission

To remove every barrier between a great idea and a published podcast — so anyone with something to say can be{" "} heard.

{/* Story */}

Our story

Why we built Podcast Distribution AI

Podcasting is one of the most personal ways to reach an audience — and one of the hardest to start. Scripting, recording, editing, designing artwork, and publishing can take days and a stack of tools and skills most people simply don't have. Brilliant ideas die in that gap between “I should make a podcast” and actually shipping one.

We thought the modern AI stack could collapse all of that into a single workflow. GPT-4 can write a tight, on-brand script. ElevenLabs can voice it with realistic, multi-speaker narration. DALL·E can design cover art that matches the topic. Stitched together, they turn “I have a topic” into “I have an episode.”

So we built Podcast Distribution AI: a studio that lives in your browser. Describe an idea, fine-tune the result in a real editor, download the MP3 — then repurpose it into a blog post, a social thread, or a newsletter. We're a small team of engineers, audio nerds, and storytellers obsessed with making production effortless without making it feel generic.

{/* Values */}

What we believe

The principles behind the product

{VALUES.map((v) => (

{v.title}

{v.body}

))}
{/* CTA */}

Come make something worth listening to

Spin up a fully produced episode on the free plan in a couple of minutes — then decide.

); }