fix(ci): ran dx fmt
This commit is contained in:
@@ -15,9 +15,7 @@ pub fn AppShell() -> Element {
|
|||||||
email: "user@example.com".to_string(),
|
email: "user@example.com".to_string(),
|
||||||
avatar_url: String::new(),
|
avatar_url: String::new(),
|
||||||
}
|
}
|
||||||
main { class: "main-content",
|
main { class: "main-content", Outlet::<Route> {} }
|
||||||
Outlet::<Route> {}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -65,15 +65,9 @@ pub fn Sidebar(email: String, avatar_url: String) -> Element {
|
|||||||
{
|
{
|
||||||
// Simple active check: highlight Overview only when on `/`.
|
// Simple active check: highlight Overview only when on `/`.
|
||||||
let is_active = item.route == current_route;
|
let is_active = item.route == current_route;
|
||||||
let cls = if is_active {
|
let cls = if is_active { "sidebar-link active" } else { "sidebar-link" };
|
||||||
"sidebar-link active"
|
|
||||||
} else {
|
|
||||||
"sidebar-link"
|
|
||||||
};
|
|
||||||
rsx! {
|
rsx! {
|
||||||
Link {
|
Link { to: item.route, class: cls,
|
||||||
to: item.route,
|
|
||||||
class: cls,
|
|
||||||
{item.icon}
|
{item.icon}
|
||||||
span { "{item.label}" }
|
span { "{item.label}" }
|
||||||
}
|
}
|
||||||
@@ -134,16 +128,10 @@ fn SidebarFooter() -> Element {
|
|||||||
rsx! {
|
rsx! {
|
||||||
footer { class: "sidebar-footer",
|
footer { class: "sidebar-footer",
|
||||||
div { class: "sidebar-social",
|
div { class: "sidebar-social",
|
||||||
a {
|
a { href: "#", class: "social-link", title: "GitHub",
|
||||||
href: "#",
|
|
||||||
class: "social-link",
|
|
||||||
title: "GitHub",
|
|
||||||
Icon { icon: BsGithub, width: 16, height: 16 }
|
Icon { icon: BsGithub, width: 16, height: 16 }
|
||||||
}
|
}
|
||||||
a {
|
a { href: "#", class: "social-link", title: "Impressum",
|
||||||
href: "#",
|
|
||||||
class: "social-link",
|
|
||||||
title: "Impressum",
|
|
||||||
Icon { icon: BsGrid, width: 16, height: 16 }
|
Icon { icon: BsGrid, width: 16, height: 16 }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -40,11 +40,7 @@ pub fn OverviewPage() -> Element {
|
|||||||
description: "Guides & API Reference".to_string(),
|
description: "Guides & API Reference".to_string(),
|
||||||
href: "#".to_string(),
|
href: "#".to_string(),
|
||||||
icon: rsx! {
|
icon: rsx! {
|
||||||
Icon {
|
Icon { icon: BsBook, width: 28, height: 28 }
|
||||||
icon: BsBook,
|
|
||||||
width: 28,
|
|
||||||
height: 28,
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
DashboardCard {
|
DashboardCard {
|
||||||
@@ -52,11 +48,7 @@ pub fn OverviewPage() -> Element {
|
|||||||
description: "Observability & Analytics".to_string(),
|
description: "Observability & Analytics".to_string(),
|
||||||
href: "#".to_string(),
|
href: "#".to_string(),
|
||||||
icon: rsx! {
|
icon: rsx! {
|
||||||
Icon {
|
Icon { icon: FaChartLine, width: 28, height: 28 }
|
||||||
icon: FaChartLine,
|
|
||||||
width: 28,
|
|
||||||
height: 28,
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
DashboardCard {
|
DashboardCard {
|
||||||
@@ -64,11 +56,7 @@ pub fn OverviewPage() -> Element {
|
|||||||
description: "Agent Framework".to_string(),
|
description: "Agent Framework".to_string(),
|
||||||
href: "#".to_string(),
|
href: "#".to_string(),
|
||||||
icon: rsx! {
|
icon: rsx! {
|
||||||
Icon {
|
Icon { icon: FaGears, width: 28, height: 28 }
|
||||||
icon: FaGears,
|
|
||||||
width: 28,
|
|
||||||
height: 28,
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
DashboardCard {
|
DashboardCard {
|
||||||
@@ -76,11 +64,7 @@ pub fn OverviewPage() -> Element {
|
|||||||
description: "Browse Models".to_string(),
|
description: "Browse Models".to_string(),
|
||||||
href: "#".to_string(),
|
href: "#".to_string(),
|
||||||
icon: rsx! {
|
icon: rsx! {
|
||||||
Icon {
|
Icon { icon: FaCubes, width: 28, height: 28 }
|
||||||
icon: FaCubes,
|
|
||||||
width: 28,
|
|
||||||
height: 28,
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user