purityselect/resources/js/layouts/components/navbar-custom.vue
2024-10-25 01:05:27 +05:00

23 lines
614 B
Vue

<script setup>
const props = defineProps({
logo: {
type: String,
required: true,
},
})
</script>
<template>
<v-app-bar color="white" prominent>
<!-- Logo with a link -->
<a href="https://peptidewebmd.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="black" href="https://peptidewebmd.com/contact-us/" target="_blank">Contact Us</v-btn>
</v-app-bar>
</template>