safetwitch/src/components/NavbarView.vue

26 lines
608 B
Vue
Raw Normal View History

2023-03-18 13:49:02 -04:00
<script lang="ts">
2023-04-16 12:37:23 -04:00
import SearchBar from './SearchBar.vue'
export default {
components: {
SearchBar
}
}
2023-03-18 13:49:02 -04:00
</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>
2023-04-16 12:37:23 -04:00
<search-bar></search-bar>
2023-03-18 13:49:02 -04:00
</div>
<ul class="inline-flex space-x-6 font-medium">
2023-04-08 20:56:08 -04:00
<a href="https://codeberg.org/dragongoose/safetwitch">Code</a>
<router-link to="/privacy">Privacy</router-link>
2023-03-18 13:49:02 -04:00
</ul>
</div>
</template>