purityselect/resources/js/layouts/components/navbar-custom.vue
2024-10-27 02:51:48 +05:00

23 lines
665 B
Vue

<script setup>
const props = defineProps({
logo: {
type: String,
required: true,
},
})
</script>
<template>
<v-app-bar color="white" prominent style="background-color: #022878 !important">
<!-- Logo with a link -->
<a href="https://purityselect.com" target="_blank" style="margin-left: 10px;width: 100%;">
<VImg :src='logo' max-width="250" height="50" />
</a>
<v-spacer></v-spacer>
<!-- Links on the right -->
<!-- <v-btn text color="black" href="#">Live Chat</v-btn> -->
<v-btn text color="white" href="https://purityselect.com/contact/" target="_blank">Contact Us</v-btn>
</v-app-bar>
</template>