21 lines
926 B
TypeScript
21 lines
926 B
TypeScript
|
|
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>
|
||
|
|
);
|
||
|
|
}
|