feat: UI overhaul

This commit is contained in:
2026-01-28 16:19:43 +01:00
parent 472b33688d
commit e730d66f9e
35 changed files with 580 additions and 699 deletions

View File

@@ -0,0 +1,12 @@
use crate::components::{error_boundary_message::ErrorBoundaryMessage, project_form::ProjectForm};
use dioxus::prelude::*;
#[component]
pub(crate) fn ProjectFormPage() -> Element {
rsx! {
ErrorBoundaryMessage {
class: "grow py-4 flex flex-col gap-12",
ProjectForm {}
}
}
}