upgraded for new changes

This commit is contained in:
Inshal
2024-10-27 02:51:48 +05:00
parent 76e6f914a7
commit fe495ebd89
41 changed files with 452 additions and 260 deletions

View File

@@ -146,6 +146,7 @@ const logout = () => {
localStorage.removeItem("selectedSidebarMenu");
localStorage.removeItem("plan_name");
localStorage.removeItem("plan_price");
localStorage.removeItem("getCalendlyAvailableTImes");
if (currentUser.value == "agent") {
router.push("/provider/login");
} else {

View File

@@ -1,14 +1,21 @@
<script setup>
import axios from '@axios';
const seetingFooterText = ref();
const constact = () => {
// window.open('/terms-and-conditions', '_blank');
window.open('https://purityselect.com/contact/')
};
const gotoTermsCondition = () => {
window.open('/terms-and-conditions', '_blank');
// window.open('/terms-and-conditions', '_blank');
window.open('https://purityselect.com/terms-and-condition/')
};
const gotoPrivacyPolicy = () => {
window.open('/privacy-policy', '_blank');
// window.open('/privacy-policy', '_blank');
window.open('https://purityselect.com/privacy-policy/')
};
const gotoRefundPolicy = () => {
window.open('/refund-policy', '_blank');
// window.open('/refund-policy', '_blank');
window.open('https://purityselect.com/refund-and-return-policy/')
};
onMounted(async () => {
@@ -25,7 +32,7 @@ onMounted(async () => {
</span>
<!-- 👉 Footer: right content -->
<div class="d-flex align-center">
<a type="button" class="mr-3 ">Contact Us</a>
<a type="button" class="mr-3 " @click="constact()">Contact Us</a>
<a type="button" class="mr-3 " @click="gotoTermsCondition()">Terms & Conditions</a>
<a type="button" class="mr-3 " @click="gotoPrivacyPolicy()">Privacy Policy</a>
<a type="button" class="" @click="gotoRefundPolicy()">Refund Policy</a>

View File

@@ -16,7 +16,7 @@ const props = defineProps({
<v-spacer></v-spacer>
<!-- Links on the right -->
<v-btn text color="white" href="#">Live Chat</v-btn>
<!-- <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>