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
+21
View File
@@ -0,0 +1,21 @@
import type { Metadata } from "next";
import { requireAuth } from "@/lib/auth/guards";
import { getEffectivePlan } from "@/lib/billing/subscription";
import { PageHeader } from "@/components/app/page-header";
import { EpisodeWizard } from "@/components/app/episode-wizard";
export const metadata: Metadata = { title: "Create an episode" };
export default async function NewEpisodePage() {
const session = await requireAuth();
const { plan } = await getEffectivePlan(session.user.id, session.session.activeOrganizationId);
return (
<>
<PageHeader
title="Create an episode"
description="Configure your episode and let the AI write, record, and design it."
/>
<EpisodeWizard maxMinutes={plan.limits.maxEpisodeMinutes} />
</>
);
}