samgis / static /src /components /NavBar /TabComponent.vue
aletrn's picture
[feat] add navbar with blog, samgis presentation, samgis docs
6457f07
raw
history blame
337 Bytes
<template>
<h2>
<a :href="props.href"
class="bg-white border-2 no-underline pl-2 pr-2 p-1
landscape:border-gray-300 landscape:font-semibold landscape:text-lg"
>{{ props.description }}</a>
</h2>
</template>
<script setup lang="ts">
const props = defineProps<{
href: string,
description: string,
}>()
</script>