Initial commit: PodcastYes — AI podcast platform

This commit is contained in:
Leon Serfaty
2026-06-07 03:58:32 -04:00
commit 155507f21a
151 changed files with 19826 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
import type { Metadata } from "next";
export const metadata: Metadata = { title: "Privacy Policy" };
export default function PrivacyPage() {
return (
<div className="container max-w-3xl py-20 md:py-24">
<h1 className="font-display text-4xl font-extrabold tracking-tight md:text-5xl">Privacy Policy</h1>
<p className="mt-4 text-muted-foreground">
We collect the account information you provide (name, email) and the content you create to
operate PodcastYes. Episode prompts are sent to our AI providers (OpenAI and ElevenLabs) to
generate scripts, audio, and artwork. Generated assets are stored to deliver your episodes.
We do not sell your personal data. Payment processing is handled by Stripe and PayPal.
</p>
<p className="mt-4 text-sm text-muted-foreground">
This is placeholder copy replace with your reviewed privacy policy before launch.
</p>
</div>
);
}