diff --git a/src/components/HomePage.rs b/src/components/HomePage.rs new file mode 100644 index 0000000..373f9b4 --- /dev/null +++ b/src/components/HomePage.rs @@ -0,0 +1,13 @@ +use yew::prelude::*; + +#[function_component(HomePage)] +fn home_page() -> Html { + html! { +
+

{ "Welcome to CompareWare" }

+

{ "Compare tools and collaborate seamlessly!" }

+ + +
+ } +}