2023-03-18 13:49:02 -04:00
|
|
|
<script lang="ts">
|
|
|
|
export default {}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<div class="p-4 flex items-center justify-between bg-ctp-base text-white">
|
2023-03-30 10:30:26 -04:00
|
|
|
<router-link to="/">
|
|
|
|
<h1 class="font-bold text-2xl">Safe<color class="text-purple-500">Twitch</color></h1>
|
|
|
|
</router-link>
|
2023-03-18 13:49:02 -04:00
|
|
|
|
|
|
|
<div>
|
|
|
|
<form class="relative">
|
|
|
|
<label for="searchBar" class="hidden">Search</label>
|
|
|
|
<v-icon
|
|
|
|
name="io-search-outline"
|
|
|
|
class="text-black absolute my-auto inset-y-0 left-2"
|
|
|
|
></v-icon>
|
|
|
|
<input
|
|
|
|
type="text"
|
|
|
|
id="searchBar"
|
|
|
|
name="searchBar"
|
|
|
|
placeholder="Search"
|
|
|
|
class="rounded-md p-1 pl-8 text-black"
|
|
|
|
/>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<ul class="inline-flex space-x-6 font-medium">
|
|
|
|
<router-link to="">Github</router-link>
|
|
|
|
<router-link to="/preferences">Preferences</router-link>
|
|
|
|
<router-link to="/about">About</router-link>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</template>
|