Stage 2: student lesson viewer, Kinescope player, PDF files, prev/next nav, My Courses dashboard

This commit is contained in:
2026-04-07 12:13:12 +05:00
parent 03e3972388
commit 05dd4d1df2
13 changed files with 657 additions and 40 deletions
@@ -0,0 +1,19 @@
"use client";
import KinescopeReactPlayer from "@kinescope/react-kinescope-player";
interface Props {
videoId: string;
}
export function KinescopePlayer({ videoId }: Props) {
return (
<div className="w-full aspect-video" style={{ border: "2px solid var(--border)" }}>
<KinescopeReactPlayer
videoId={videoId}
width="100%"
height="100%"
/>
</div>
);
}