diff options
author | Ashelyn Rose <git@ashen.earth> | 2025-03-22 18:02:52 -0600 |
---|---|---|
committer | Ashelyn Rose <git@ashen.earth> | 2025-03-22 18:02:52 -0600 |
commit | f5f542777febe6a2a4463bb8042e9a72e628e724 (patch) | |
tree | c7cb33a5bbb023f99e1c012af55e6819f26c5c93 /src/components/layout/mod.rs | |
parent | 2bf70606fc62c989973f84f2961df2d42d7f9c04 (diff) |
Fonts
Diffstat (limited to 'src/components/layout/mod.rs')
-rw-r--r-- | src/components/layout/mod.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/components/layout/mod.rs b/src/components/layout/mod.rs index 4b8061e..e688f5f 100644 --- a/src/components/layout/mod.rs +++ b/src/components/layout/mod.rs @@ -9,13 +9,12 @@ pub fn Layout() -> impl IntoView { view! { <div class=styles::layout> <header> - <h1>Site Title</h1> + <a href="/" id="siteTitle">Site Title</a> </header> <nav> <p>Nav</p> </nav> <main> - <p>Article</p> <Outlet/> </main> <footer> |