We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b2d754f commit f7e87cfCopy full SHA for f7e87cf
1 file changed
src/shell.rs
@@ -23,7 +23,6 @@ pub fn Route(route: ReadSignal<Routes>) -> View {
23
},
24
})
25
}
26
- Footer()
27
28
29
@@ -46,23 +45,6 @@ fn Header() -> View {
46
45
47
48
49
-#[component]
50
-fn Footer() -> View {
51
- view! {
52
- footer(class="p-2 bg-slate-900 text-xs font-mono") {
53
- div(class="flex flex-row justify-between") {
54
- div { "© 2025 Luke Chu" }
55
- div(class="text-[9pt]") {
56
- "Made with "
57
- a(class="hover:underline font-bold text-red-200", href="https://rust-lang.org") { "Rust" }
58
- " and "
59
- a(class="hover:underline font-bold text-red-200", href="https://github.com/sycamore-rs/sycamore") { "Sycamore" }
60
- }
61
62
63
64
-}
65
-
66
#[component]
67
pub fn NotFound() -> View {
68
view! {
0 commit comments