mirror of
https://github.com/KuekHaoYang/KVideo.git
synced 2026-08-18 10:13:43 +08:00
20 lines
373 B
TypeScript
20 lines
373 B
TypeScript
import { Metadata } from 'next';
|
|
import { VideoTogetherScript } from '@/components/VideoTogetherScript';
|
|
|
|
export const metadata: Metadata = {
|
|
referrer: 'no-referrer',
|
|
};
|
|
|
|
export default function PlayerLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<>
|
|
{children}
|
|
<VideoTogetherScript />
|
|
</>
|
|
);
|
|
}
|