Compare commits

...

2 Commits

Author SHA1 Message Date
Inshal
f29d604e13 admin calendly redirect link 2024-10-25 20:22:58 +05:00
Inshal
dc11f71ecf nav bg 2024-10-25 19:17:08 +05:00
2 changed files with 4 additions and 4 deletions

View File

@ -25,7 +25,7 @@ class CalendlyController extends Controller
{
$calendly = new Calendly();
$calendly->authorize($request->input("code"));
return redirect("https://webmd-provider.codelfi.com/build/admin/dashboard");
return redirect("https://crm.purityselect.com/build/admin/dashboard");
}
public function getEvent(Request $request)
{

View File

@ -7,7 +7,7 @@ const props = defineProps({
})
</script>
<template>
<v-app-bar color="white" prominent>
<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" />
@ -16,8 +16,8 @@ const props = defineProps({
<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://purityselect.com/contact/" target="_blank">Contact Us</v-btn>
<v-btn text color="white" 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>