the champ

This commit is contained in:
Chris Cochrun 2025-06-30 17:10:31 -05:00
parent 2ca2698cb7
commit bbe05b3be8
4 changed files with 1192 additions and 1 deletions

3
.gitignore vendored
View file

@ -6,4 +6,5 @@
# These are backup files generated by rustfmt
**/*.rs.bk
.direnv
.direnv
.dioxus

1171
assets/tailwind.css Normal file

File diff suppressed because it is too large Load diff

View file

@ -69,6 +69,7 @@
gst_all_1.gst-vaapi
gst_all_1.gstreamer
webkitgtk_4_1
xdotool
ffmpeg-full
# yt-dlp

18
src/ui/presenter.rs Normal file
View file

@ -0,0 +1,18 @@
#![allow(non_snake_case)]
use dioxus::prelude::*;
use dioxus_logger::tracing::info;
use crate::ui::video::VideoEl;
#[component]
pub fn Presenter() -> Element {
rsx!(
div {
class: "flex",
p { class: "my-10 flex-center",
"The Presenter"
}
VideoEl { }
}
)
}