diff --git a/public/images/favicon.webp b/public/images/favicon.webp new file mode 100644 index 0000000..1a08720 Binary files /dev/null and b/public/images/favicon.webp differ diff --git a/resources/images/favicon.webp b/resources/images/favicon.webp new file mode 100644 index 0000000..1a08720 Binary files /dev/null and b/resources/images/favicon.webp differ diff --git a/resources/images/logo-peptied-web.webp b/resources/images/logo-peptied-web.webp new file mode 100644 index 0000000..2fadb67 Binary files /dev/null and b/resources/images/logo-peptied-web.webp differ diff --git a/resources/js/constants.js b/resources/js/constants.js index ac1a5d4..38a0b28 100644 --- a/resources/js/constants.js +++ b/resources/js/constants.js @@ -1,5 +1,5 @@ export const GET_BASE_PATH = "" -let MAIN_DOMAIN = "http://127.0.0.1:8005"; +let MAIN_DOMAIN = "http://127.0.0.1:8000"; export const ADMIN_LOGIN_API = MAIN_DOMAIN + "/api/admin/login" export const PATIENT_LIST_API = MAIN_DOMAIN + "/api/admin/patient-list" diff --git a/resources/views/application.blade.php b/resources/views/application.blade.php index 340c664..ff90bb4 100644 --- a/resources/views/application.blade.php +++ b/resources/views/application.blade.php @@ -3,7 +3,7 @@ - + Materio - Vuetify Vuejs Admin Template diff --git a/themeConfig.js b/themeConfig.js index 4225e0b..33efe34 100644 --- a/themeConfig.js +++ b/themeConfig.js @@ -4,15 +4,16 @@ import { breakpointsVuetify } from '@vueuse/core' import { VIcon } from 'vuetify/components/VIcon' // ❗ Logo SVG must be imported with ?raw suffix -import logo from '@images/logo.svg?raw' +import logoImage from '@images/logo-peptied-web.webp' + import { AppContentLayoutNav, ContentWidth, FooterType, NavbarType } from '@layouts/enums' export const { themeConfig, layoutConfig } = defineThemeConfig({ app: { - title: 'TelemedPro', + title: '', // ❗ 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: logo, style: 'line-height:0; color: rgb(var(--v-global-theme-primary))' }), + logo: h('div', { innerHTML: `Logo` }), contentWidth: ContentWidth.Boxed, contentLayoutNav: AppContentLayoutNav.Vertical, overlayNavFromBreakpoint: breakpointsVuetify.md + 16, // 16 for scrollbar. Docs: https://next.vuetifyjs.com/en/features/display-and-platform/