Add experience page + Fix style
This commit is contained in:
parent
f8c9888d80
commit
48f3c27a20
9 changed files with 35 additions and 7 deletions
11
src/app/pages/experience.rs
Normal file
11
src/app/pages/experience.rs
Normal 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>
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue