Skip to content

Commit

Permalink
add video record links
Browse files Browse the repository at this point in the history
  • Loading branch information
Sea-n committed May 6, 2024
1 parent 7486315 commit 96f9eab
Showing 1 changed file with 9 additions and 10 deletions.
19 changes: 9 additions & 10 deletions components/website/SessionCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -256,23 +256,22 @@ export default function SessionCard({
}
}
>
{/* 製播組還在整理影片,等弄好再放上來 by SimbaFs */}
{/* {!session.live && !session.record && ( */}
<div className="flex aspect-video w-full flex-col items-center justify-center gap-2 rounded-xl bg-black/10">
<IoPlay className="text-5xl" />
<div>即將上線</div>
</div>
{/* <div className="flex aspect-video w-full flex-col items-center justify-center gap-2 rounded-xl bg-black/10"> */}
{/* <IoPlay className="text-5xl" /> */}
{/* <div>即將上線</div> */}
{/* </div> */}
{/* )} */}
{/* {session.live && ( */}
{/* <YouTubeEmbed */}
{/* videoid={new URL(session.live).searchParams.get("v")!} */}
{/* /> */}
{/* )} */}
{/* {session.record && ( */}
{/* <YouTubeEmbed */}
{/* videoid={new URL(session.record).searchParams.get("v")!} */}
{/* /> */}
{/* )} */}
{session.record && (
<YouTubeEmbed
videoid={session.record}
/>
)}

<div className="flex flex-row gap-2">
{session.qa && (
Expand Down

0 comments on commit 96f9eab

Please sign in to comment.