viewer improvements

updates to config
thumbnail size increase
This commit is contained in:
2025-05-27 21:58:30 -04:00
parent c78a65161a
commit ffe1e5ce3a
9 changed files with 67 additions and 24 deletions

View File

@@ -1,6 +1,6 @@
use dioxus::prelude::*;
use crate::{contexts::AuthContext, Route};
use crate::{Route, contexts::AuthContext};
const NAV_CSS: Asset = asset!("/assets/style/nav.scss");
const NAV_ICON: Asset = asset!("/assets/favicon.ico");
@@ -32,8 +32,7 @@ pub fn MainNaviagation() -> Element {
pub fn Branding() -> Element {
rsx! {
div { class: "branding",
"Aoba"
img {src: NAV_ICON}
img {src: NAV_ICON, alt: "Aoba"}
}
}
}