Files
agologum/client/src/components/Header.vue
Blitblank c807412076
Some checks failed
Build and Deploy Frontend / build-and-deploy (push) Failing after 3s
idk how vue works
2026-02-28 23:49:10 -06:00

22 lines
422 B
Vue

<template>
<b-navbar toggleable="lg" type="dark" variant="primary">
<b-container>
<b-row class="text-white">
<b-col>
<b-icon-people-fill class="h2"></b-icon-people-fill>
</b-col>
<b-col>
<span class="h3">CRM</span>
</b-col>
</b-row>
</b-container>
</b-navbar>
</template>
<script setup lang="ts">
export default {
name: "Header"
};
</script>