Rebrand PodcastYes -> Podcast Distribution AI (podcastdistributionai.com)

This commit is contained in:
Leon Serfaty
2026-06-20 20:12:43 -04:00
parent 3ad90f076f
commit 4fb2645db1
38 changed files with 94 additions and 93 deletions
+1 -1
View File
@@ -18,7 +18,7 @@ export default async function ApiKeysPage() {
return (
<>
<PageHeader title="API keys" description="Programmatic access to the PodcastYes API." />
<PageHeader title="API keys" description="Programmatic access to the Podcast Distribution AI API." />
{!allowed ? (
<UpgradeGate
title="API access is a Pro feature"
+2 -2
View File
@@ -31,7 +31,7 @@ export default async function AppLayout({ children }: { children: React.ReactNod
const brandStyle = brandHsl
? ({ "--brand": brandHsl, "--ring": brandHsl } as React.CSSProperties)
: undefined;
const workspaceName = branding?.brandName ?? "PodcastYes";
const workspaceName = branding?.brandName ?? "Podcast Distribution AI";
return (
<ThemeProvider>
@@ -89,7 +89,7 @@ export default async function AppLayout({ children }: { children: React.ReactNod
<main className="flex-1 bg-secondary/50">
<div className="container max-w-6xl py-8 md:py-10">{children}</div>
{branding && !branding.removePoweredBy && (
<p className="pb-8 text-center text-xs text-muted-foreground">Powered by PodcastYes</p>
<p className="pb-8 text-center text-xs text-muted-foreground">Powered by Podcast Distribution AI</p>
)}
</main>
</div>