Add experience page + Fix style

This commit is contained in:
Florian RICHER 2023-12-09 19:08:27 +01:00
parent f8c9888d80
commit 48f3c27a20
9 changed files with 35 additions and 7 deletions

View file

@ -0,0 +1,11 @@
use leptos::*;
use super::super::components::{Title, MonParcours};
#[component]
pub fn Experience() -> impl IntoView {
view! {
<main class="m-0 p-0 bg-surface dark:bg-dark_surface text-on_surface dark:text-dark_on_surface">
<Title href="/".to_string() title="Mon parcours".to_string()/>
<MonParcours/>
</main>
}
}