Add searchbar component

This commit is contained in:
2026-05-06 20:29:19 +02:00
parent 06e3601d70
commit 7892fe2ed6
2 changed files with 22 additions and 0 deletions
@@ -0,0 +1,6 @@
<template>
<div class="search-wrapper">
<input type="search" name="search" placeholder="Search..." required />
<button type="submit" class="search-button">Search</button>
</div>
</template>
+16
View File
@@ -0,0 +1,16 @@
<script setup>
import Searchbar from '../features/search/components/Searchbar.vue'
</script>
<template>
<header class="global-header">
<h1>Seekra</h1>
<span class="slogan">
Built to search.
</span>
</header>
<form id="search-form">
<Searchbar />
</form>
</template>