Skip to content

Commit 667547d

Browse files
committed
fix(fonts): Missing fonts + branding updated
1 parent ef37dec commit 667547d

File tree

4 files changed

+59
-20
lines changed

4 files changed

+59
-20
lines changed

public/index.html

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,23 @@
11
<!DOCTYPE html>
22
<html lang="en">
33
<head>
4-
<meta charset="utf-8">
5-
<meta http-equiv="X-UA-Compatible" content="IE=edge">
6-
<meta name="viewport" content="width=device-width,initial-scale=1.0">
7-
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
4+
<meta charset="utf-8" />
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
6+
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
7+
<link rel="icon" href="<%= BASE_URL %>favicon.ico" />
88
<title><%= htmlWebpackPlugin.options.title %></title>
9-
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900">
10-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@mdi/font@latest/css/materialdesignicons.min.css">
9+
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900" />
10+
<link
11+
href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap"
12+
rel="stylesheet"
13+
/>
1114
</head>
1215
<body>
1316
<noscript>
14-
<strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
17+
<strong
18+
>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please
19+
enable it to continue.</strong
20+
>
1521
</noscript>
1622
<div id="app"></div>
1723
<!-- built files will be auto injected -->

src/components/UpgradeToPro.vue

Lines changed: 21 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,6 @@
2828
<v-card
2929
class="elevation-0"
3030
max-width="400"
31-
href="https://themeselection.com/demo/materio-vuetify-vuejs-admin-template/landing"
32-
target="_blank"
33-
rel="nofollow"
3431
>
3532
<v-img
3633
max-width="400"
@@ -45,8 +42,28 @@
4542
Materio Admin is the most developer friendly &amp; highly customisable Admin Dashboard Template based on Vuetify.
4643
</v-card-text>
4744
<v-card-text>
48-
<span>Click on below button to explore PRO version including <strong>3 niche dashboards</strong> and carefully crafted <strong>5 Applications</strong>.</span>
45+
<span>Click on below button to explore PRO version.</span>
4946
</v-card-text>
47+
<v-card-actions>
48+
<v-btn
49+
color="primary"
50+
class="me-2"
51+
href="https://themeselection.com/demo/materio-vuetify-vuejs-admin-template/landing"
52+
target="_blank"
53+
rel="nofollow"
54+
>
55+
Demo
56+
</v-btn>
57+
<v-btn
58+
color="primary"
59+
outlined
60+
href="https://themeselection.com/demo/materio-vuetify-vuejs-admin-template"
61+
target="_blank"
62+
rel="nofollow"
63+
>
64+
Download
65+
</v-btn>
66+
</v-card-actions>
5067
</v-card>
5168
</v-menu>
5269
</template>

src/layouts/Content.vue

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,16 @@
2727
<v-spacer></v-spacer>
2828

2929
<!-- Right Content -->
30-
<theme-switcher class="ms-6"></theme-switcher>
30+
<a
31+
href="https://github.com/themeselection/materio-vuetify-vuejs-admin-template-free"
32+
target="_blank"
33+
rel="nofollow"
34+
>
35+
<v-icon class="ms-6 me-4">
36+
{{ icons.mdiGithub }}
37+
</v-icon>
38+
</a>
39+
<theme-switcher></theme-switcher>
3140
<v-btn
3241
icon
3342
small
@@ -89,7 +98,7 @@
8998

9099
<script>
91100
import { ref } from '@vue/composition-api'
92-
import { mdiMagnify, mdiBellOutline } from '@mdi/js'
101+
import { mdiMagnify, mdiBellOutline, mdiGithub } from '@mdi/js'
93102
import VerticalNavMenu from './components/vertical-nav-menu/VerticalNavMenu.vue'
94103
import ThemeSwitcher from './components/ThemeSwitcher.vue'
95104
import AppBarUserMenu from './components/AppBarUserMenu.vue'
@@ -110,6 +119,7 @@ export default {
110119
icons: {
111120
mdiMagnify,
112121
mdiBellOutline,
122+
mdiGithub,
113123
},
114124
}
115125
},

src/layouts/components/vertical-nav-menu/VerticalNavMenu.vue

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -94,13 +94,19 @@
9494
:icon="icons.mdiFormSelect"
9595
></nav-menu-link>
9696
</v-list>
97-
<v-img
98-
:src="require(`@/assets/images/pro/upgrade-banner-${$vuetify.theme.dark ? 'dark' : 'light'}.png`)"
99-
alt="upgrade-banner"
100-
transition="scale-transition"
101-
class="upgrade-banner mx-auto"
102-
max-width="230"
103-
></v-img>
97+
<a
98+
href="https://themeselection.com/demo/materio-vuetify-vuejs-admin-template/landing"
99+
target="_blank"
100+
rel="nofollow"
101+
>
102+
<v-img
103+
:src="require(`@/assets/images/pro/upgrade-banner-${$vuetify.theme.dark ? 'dark' : 'light'}.png`)"
104+
alt="upgrade-banner"
105+
transition="scale-transition"
106+
class="upgrade-banner mx-auto"
107+
max-width="230"
108+
></v-img>
109+
</a>
104110
</v-navigation-drawer>
105111
</template>
106112

0 commit comments

Comments
 (0)