feat(homepage): create initial homepage component

This commit is contained in:
Ryan Mwangi 2024-12-04 15:51:58 +03:00
parent 7b4ab9246d
commit 4c6a8dc6dd
1 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,13 @@
use yew::prelude::*;
#[function_component(HomePage)]
fn home_page() -> Html {
html! {
<div>
<h1>{ "Welcome to CompareWare" }</h1>
<p>{ "Compare tools and collaborate seamlessly!" }</p>
<input type="text" placeholder="Search for tools..." />
<button>{ "Search" }</button>
</div>
}
}