alessandro trinca tornidor
[feat] refactor UI: navbar, mobile navbar, some links
c75f9b4
raw
history blame
427 Bytes
<template>
<div class="bg-gray-200 items-center h-8">
<TabComponent :description="switchTabDescription" :href="switchTabUrl" />
<TabComponent description="docs" href="https://docs.trinca.tornidor.com/" />
</div>
</template>
<script setup lang="ts">
import TabComponent from '@/components/NavBar/TabComponent.vue'
const props = defineProps<{
switchTabDescription: string,
switchTabUrl: string,
}>()
</script>