Skip to content

Commit

Permalink
fix .
Browse files Browse the repository at this point in the history
  • Loading branch information
louisjoecodes committed Dec 4, 2024
1 parent de0c579 commit 3cae1b9
Showing 1 changed file with 7 additions and 31 deletions.
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>
);
}

0 comments on commit 3cae1b9

Please sign in to comment.