Added personal picture and added Author component

Signed-off-by: Tuan-Dat Tran <tuan-dat.tran@tudattr.dev>
This commit is contained in:
Tuan-Dat Tran
2024-07-25 03:39:53 +02:00
parent 3fb233ebcc
commit 4a18e432b2
13 changed files with 217 additions and 131 deletions

View File

@@ -10,15 +10,12 @@ use header::Header;
pub fn Layout() -> Element {
rsx! {
div {
class: "flex justify-center ",
div {
class: "max-w-screen-xl flex-col" ,
Header {},
Body {
Outlet::<Route> {},
}
Footer {},
class: "flex flex-col min-h-screen" ,
Header {},
Body {
Outlet::<Route> {},
}
Footer {},
}
}
}