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: "Terms of Service" };
export default function TermsPage() {
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">Terms of Service</h1>
<p className="mt-4 text-muted-foreground">
These terms govern your use of PodcastYes. By creating an account you agree to use the
service lawfully and to retain responsibility for the content you generate. AI-generated
scripts, audio, and artwork are provided as-is; review them before publishing. Subscriptions
renew automatically until cancelled, and usage limits reset monthly.
</p>
<p className="mt-4 text-sm text-muted-foreground">
This is placeholder copy replace with your reviewed legal terms before launch.
</p>
</div>
);
}