diff --git a/src/pages/contact.rs b/src/pages/contact.rs index e5636c3..a1165ed 100644 --- a/src/pages/contact.rs +++ b/src/pages/contact.rs @@ -1,6 +1,6 @@ use yew::prelude::*; -use crate::components::nav_bar::NavigationBar; +use crate::components::{nav_bar::NavigationBar, footer::PageFooter}; #[function_component(ContactPage)] @@ -8,9 +8,10 @@ pub fn contact_page() -> Html { html!{ <> -
+
//TODO: remove this margin when landing page done {"Contact Page"}
+ } } \ No newline at end of file diff --git a/src/pages/landing.rs b/src/pages/landing.rs index 7561ee0..36734c5 100644 --- a/src/pages/landing.rs +++ b/src/pages/landing.rs @@ -1,6 +1,6 @@ use yew::prelude::*; -use crate::components::nav_bar::NavigationBar; +use crate::components::{nav_bar::NavigationBar, footer::PageFooter}; #[function_component(LandingPage)] @@ -8,9 +8,10 @@ pub fn landing_page() -> Html { html!{ <> -
+
//TODO: remove this margin when landing page done {"Landing Page"}
+ } } \ No newline at end of file diff --git a/src/pages/not_found.rs b/src/pages/not_found.rs index 7f3efc2..407babf 100644 --- a/src/pages/not_found.rs +++ b/src/pages/not_found.rs @@ -1,15 +1,16 @@ use yew::prelude::*; -use crate::components::nav_bar::NavigationBar; +use crate::components::{nav_bar::NavigationBar, footer::PageFooter}; #[function_component(NotFoundPage)] pub fn not_found_page() -> Html { html! { <> -
+
{"Not found page"}
+ } } \ No newline at end of file