Add placeholder embed pages
This commit is contained in:
parent
5645f0070f
commit
8d7a5d6d6e
3
web/pages/embed/chat/readonly.tsx
Normal file
3
web/pages/embed/chat/readonly.tsx
Normal file
@ -0,0 +1,3 @@
|
||||
export default function ReadOnlyChatEmbed() {
|
||||
return <div className="chat-embed">chat container goes here</div>;
|
||||
}
|
3
web/pages/embed/chat/readwrite.tsx
Normal file
3
web/pages/embed/chat/readwrite.tsx
Normal file
@ -0,0 +1,3 @@
|
||||
export default function ReadWriteChatEmbed() {
|
||||
return <div className="standalone-chat-embed">fully featured chat embed goes here</div>;
|
||||
}
|
10
web/pages/embed/video/index.tsx
Normal file
10
web/pages/embed/video/index.tsx
Normal file
@ -0,0 +1,10 @@
|
||||
import OwncastPlayer from '../../../components/video/OwncastPlayer';
|
||||
|
||||
export default function VideoEmbed() {
|
||||
const online = false;
|
||||
return (
|
||||
<div className="video-embed">
|
||||
<OwncastPlayer source="/hls/stream.m3u8" online={online} />
|
||||
</div>
|
||||
);
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user