ci: added basic workflows (#2)
Some checks failed
CI / Clippy (push) Successful in 2m35s
CI / Security Audit (push) Successful in 1m46s
CI / Tests (push) Successful in 3m5s
CI / Format (push) Successful in 6m53s
CI / Build & Push Image (push) Failing after 1m54s
CI / Changelog (push) Failing after 1m39s

Co-authored-by: Sharang Parnerkar <parnerkarsharang@gmail.com>
Reviewed-on: #2
This commit was merged in pull request #2.
This commit is contained in:
2026-02-18 09:46:29 +00:00
parent 1072770d11
commit 6d3e99220c
11 changed files with 316 additions and 58 deletions

View File

@@ -40,11 +40,7 @@ pub fn OverviewPage() -> Element {
description: "Guides & API Reference".to_string(),
href: "#".to_string(),
icon: rsx! {
Icon {
icon: BsBook,
width: 28,
height: 28,
}
Icon { icon: BsBook, width: 28, height: 28 }
},
}
DashboardCard {
@@ -52,11 +48,7 @@ pub fn OverviewPage() -> Element {
description: "Observability & Analytics".to_string(),
href: "#".to_string(),
icon: rsx! {
Icon {
icon: FaChartLine,
width: 28,
height: 28,
}
Icon { icon: FaChartLine, width: 28, height: 28 }
},
}
DashboardCard {
@@ -64,11 +56,7 @@ pub fn OverviewPage() -> Element {
description: "Agent Framework".to_string(),
href: "#".to_string(),
icon: rsx! {
Icon {
icon: FaGears,
width: 28,
height: 28,
}
Icon { icon: FaGears, width: 28, height: 28 }
},
}
DashboardCard {
@@ -76,11 +64,7 @@ pub fn OverviewPage() -> Element {
description: "Browse Models".to_string(),
href: "#".to_string(),
icon: rsx! {
Icon {
icon: FaCubes,
width: 28,
height: 28,
}
Icon { icon: FaCubes, width: 28, height: 28 }
},
}
}