-
Notifications
You must be signed in to change notification settings - Fork 95
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
de0c579
commit 3cae1b9
Showing
1 changed file
with
7 additions
and
31 deletions.
There are no files selected for viewing
38 changes: 7 additions & 31 deletions
38
examples/conversational-ai/talk-to-santa/app/embed/[handle]/page.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,7 @@ | ||
// import { getJobStatus } from "@/app/(default)/actions/actions"; | ||
// import { notFound } from "next/navigation"; | ||
// import { getData } from "@/app/(default)/[handle]/page"; | ||
// import { Metadata } from "next"; | ||
|
||
// export default async function Page({ params }) { | ||
// const { handle } = await params; | ||
// const humanSpecimen = await getData(handle); | ||
|
||
// if (!humanSpecimen) { | ||
// return notFound(); | ||
// } | ||
|
||
// const jobId = humanSpecimen.videoJobs?.[0]; | ||
// const jobStatus = jobId ? await getJobStatus(jobId) : undefined; | ||
// const { videoUrl } = jobStatus || {}; | ||
|
||
// return ( | ||
// <video controls className={"w-full h-full"} height={512} width={512}> | ||
// <source src={videoUrl}></source> | ||
// Your browser does not support the video tag. | ||
// </video> | ||
// ); | ||
// } | ||
|
||
// export async function generateMetadata({ params }): Promise<Metadata> { | ||
// const { handle } = await params; | ||
// return { | ||
// title: `Embed | ${handle}` | ||
// } | ||
// } | ||
export function Page() { | ||
return ( | ||
<div> | ||
test | ||
</div> | ||
); | ||
} |