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
+8
View File
@@ -0,0 +1,8 @@
import type { Metadata } from "next";
import { ForgotPasswordForm } from "@/components/auth/forgot-password-form";
export const metadata: Metadata = { title: "Forgot password" };
export default function ForgotPasswordPage() {
return <ForgotPasswordForm />;
}