samgis / static /src /components /NavBar /MobileNavBar.vue
alessandro trinca tornidor
test: add data-test-id and aria-labels to improve the playwright tests
7edcc96
<template>
<nav class="bg-gray-200 items-center h-8" data-testid="mobile-navbar" aria-label="Mobile navigation">
<TabComponent description="About SamGIS" href="https://trinca.tornidor.com/projects/samgis-segment-anything-applied-to-GIS" />
<TabComponent description="My blog" href="https://trinca.tornidor.com/" />
<TabComponent description="SamGIS docs" href="https://docs.ml-trinca.tornidor.com/" />
</nav>
</template>
<script setup lang="ts">
import TabComponent from '@/components/NavBar/TabComponent.vue'
</script>