Skip to content

Commit 5bbc595

Browse files
committed
reposition
1 parent 8b04f4a commit 5bbc595

File tree

3 files changed

+36
-11
lines changed

3 files changed

+36
-11
lines changed

packages/docs/src/components/home/Blogs.vue

Lines changed: 25 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,25 @@
11
<template>
22
<v-responsive class="py-16">
3+
<HomeBgGradient />
4+
35
<v-container class="pt-0">
46
<div class="mb-10">
5-
<h4 class="text-h4 font-weight-bold mb-5">
6-
Blog Posts
7+
<p class="text-primary font-weight-bold mb-0">
8+
Latest news and updates
9+
</p>
10+
11+
<h4 class="text-h4 font-weight-bold my-3">
12+
Vuetify Blog
713
</h4>
814

9-
<v-responsive class="mx-auto my-5" max-width="700">
15+
<v-responsive class="mx-auto mb-5" max-width="700">
1016
<h6 class="text-h6 font-weight-regular text-medium-emphasis">
1117
Stay up to date with the latest news and updates from the Vuetify team.
1218
</h6>
1319
</v-responsive>
1420
</div>
1521

16-
<v-row class="text-left">
22+
<v-row class="text-left mb-10">
1723
<v-col
1824
v-for="(item , i) in items"
1925
:key="i"
@@ -43,6 +49,21 @@
4349
</v-card>
4450
</v-col>
4551
</v-row>
52+
53+
<v-btn
54+
append-icon="mdi-open-in-new"
55+
aria-label="See More Templates"
56+
class="text-none"
57+
color="primary"
58+
href="https://store.vuetifyjs.com"
59+
rel="noopener noreferrer"
60+
rounded="lg"
61+
size="large"
62+
target="_blank"
63+
variant="flat"
64+
>
65+
View More
66+
</v-btn>
4667
</v-container>
4768
</v-responsive>
4869
</template>

packages/docs/src/components/home/Tooling.vue

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,15 @@
44

55
<v-container>
66
<div class="mb-10">
7-
<h4 class="text-h4 font-weight-bold mb-5">
7+
<p class="text-primary font-weight-bold mb-0">
8+
Tools & Resources
9+
</p>
10+
11+
<h4 class="text-h4 font-weight-bold my-3">
812
Vuetify Tooling
913
</h4>
1014

11-
<v-responsive class="mx-auto my-5" max-width="700">
15+
<v-responsive class="mx-auto mb-5" max-width="700">
1216
<h6 class="text-h6 font-weight-regular text-medium-emphasis">
1317
Vuetify provides a suite of tools for managing your Vuetify projects.
1418
</h6>

packages/docs/src/pages/en/index.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,18 +32,18 @@ meta:
3232

3333
<HomeVuetifyOne />
3434

35-
<v-divider thickness="2" color="primary" />
36-
37-
<HomeDiscord />
38-
39-
<v-divider :color="theme.current.value.dark ? '' : 'primary'" />
35+
<v-divider />
4036

4137
<HomeBlogs />
4238

4339
<v-divider />
4440

4541
<HomeStore />
4642

43+
<v-divider thickness="2" color="primary" />
44+
45+
<HomeDiscord />
46+
4747
<script setup>
4848
const theme = useTheme()
4949
</script>

0 commit comments

Comments
 (0)