Compare commits

..

No commits in common. "fb95feef0f00b95b7a9d57e916824181b3214abe" and "8109a226203b26ba37f041a955c3f5b056888fef" have entirely different histories.

6 changed files with 5 additions and 6 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.7 KiB

View File

@ -1,5 +1,5 @@
export const GET_BASE_PATH = "" export const GET_BASE_PATH = ""
let MAIN_DOMAIN = "http://127.0.0.1:8000"; let MAIN_DOMAIN = "http://127.0.0.1:8005";
export const ADMIN_LOGIN_API = MAIN_DOMAIN + "/api/admin/login" export const ADMIN_LOGIN_API = MAIN_DOMAIN + "/api/admin/login"
export const PATIENT_LIST_API = MAIN_DOMAIN + "/api/admin/patient-list" export const PATIENT_LIST_API = MAIN_DOMAIN + "/api/admin/patient-list"

View File

@ -3,7 +3,7 @@
<head> <head>
<meta charset="UTF-8" /> <meta charset="UTF-8" />
<link rel="icon" href="{{ asset('images/favicon.webp') }}" /> <link rel="icon" href="{{ asset('favicon.ico') }}" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Materio - Vuetify Vuejs Admin Template</title> <title>Materio - Vuetify Vuejs Admin Template</title>
<link rel="stylesheet" type="text/css" href="{{ asset('loader.css') }}" /> <link rel="stylesheet" type="text/css" href="{{ asset('loader.css') }}" />

View File

@ -4,16 +4,15 @@ import { breakpointsVuetify } from '@vueuse/core'
import { VIcon } from 'vuetify/components/VIcon' import { VIcon } from 'vuetify/components/VIcon'
// ❗ Logo SVG must be imported with ?raw suffix // ❗ Logo SVG must be imported with ?raw suffix
import logoImage from '@images/logo-peptied-web.webp' import logo from '@images/logo.svg?raw'
import { AppContentLayoutNav, ContentWidth, FooterType, NavbarType } from '@layouts/enums' import { AppContentLayoutNav, ContentWidth, FooterType, NavbarType } from '@layouts/enums'
export const { themeConfig, layoutConfig } = defineThemeConfig({ export const { themeConfig, layoutConfig } = defineThemeConfig({
app: { app: {
title: '', title: 'TelemedPro',
// ❗ if you have SVG logo and want it to adapt according to theme color, you have to apply color as `color: rgb(var(--v-global-theme-primary))` // ❗ if you have SVG logo and want it to adapt according to theme color, you have to apply color as `color: rgb(var(--v-global-theme-primary))`
logo: h('div', { innerHTML: `<img src="${logoImage}" alt="Logo" style="width:150px;">` }), logo: h('div', { innerHTML: logo, style: 'line-height:0; color: rgb(var(--v-global-theme-primary))' }),
contentWidth: ContentWidth.Boxed, contentWidth: ContentWidth.Boxed,
contentLayoutNav: AppContentLayoutNav.Vertical, contentLayoutNav: AppContentLayoutNav.Vertical,
overlayNavFromBreakpoint: breakpointsVuetify.md + 16, // 16 for scrollbar. Docs: https://next.vuetifyjs.com/en/features/display-and-platform/ overlayNavFromBreakpoint: breakpointsVuetify.md + 16, // 16 for scrollbar. Docs: https://next.vuetifyjs.com/en/features/display-and-platform/