feat(homepage): create initial homepage component
This commit is contained in:
parent
7b4ab9246d
commit
4c6a8dc6dd
|
@ -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>
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue