Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 402bdbb

Browse files
author
Bhanu Teja P
committed
Update HelloWorld page
1 parent ca6572f commit 402bdbb

File tree

3 files changed

+4
-113
lines changed

3 files changed

+4
-113
lines changed

src/assets/logo.png

-4.97 KB
Loading

src/assets/logo.svg

Lines changed: 1 addition & 1 deletion
Loading

src/components/HelloWorld.vue

Lines changed: 3 additions & 112 deletions
Original file line numberDiff line numberDiff line change
@@ -15,128 +15,19 @@
1515

1616
<v-flex mb-4>
1717
<h1 class="display-2 font-weight-bold mb-3">
18-
Welcome to Vuetify
18+
Welcome to OpenRank
1919
</h1>
2020
<p class="subheading font-weight-regular">
21-
For help and collaboration with other Vuetify developers,
21+
For help and collaboration with other OpenRank developers,
2222
<br>please join our online
23-
<a href="https://community.vuetifyjs.com" target="_blank">Discord Community</a>
23+
<a href="https://discord.gg/qEA8vxd" target="_blank">Discord Community</a>
2424
</p>
2525
</v-flex>
26-
27-
<v-flex
28-
mb-5
29-
xs12
30-
>
31-
<h2 class="headline font-weight-bold mb-3">What's next?</h2>
32-
33-
<v-layout justify-center>
34-
<a
35-
v-for="(next, i) in whatsNext"
36-
:key="i"
37-
:href="next.href"
38-
class="subheading mx-3"
39-
target="_blank"
40-
>
41-
{{ next.text }}
42-
</a>
43-
</v-layout>
44-
</v-flex>
45-
46-
<v-flex
47-
xs12
48-
mb-5
49-
>
50-
<h2 class="headline font-weight-bold mb-3">Important Links</h2>
51-
52-
<v-layout justify-center>
53-
<a
54-
v-for="(link, i) in importantLinks"
55-
:key="i"
56-
:href="link.href"
57-
class="subheading mx-3"
58-
target="_blank"
59-
>
60-
{{ link.text }}
61-
</a>
62-
</v-layout>
63-
</v-flex>
64-
65-
<v-flex
66-
xs12
67-
mb-5
68-
>
69-
<h2 class="headline font-weight-bold mb-3">Ecosystem</h2>
70-
71-
<v-layout justify-center>
72-
<a
73-
v-for="(eco, i) in ecosystem"
74-
:key="i"
75-
:href="eco.href"
76-
class="subheading mx-3"
77-
target="_blank"
78-
>
79-
{{ eco.text }}
80-
</a>
81-
</v-layout>
82-
</v-flex>
8326
</v-layout>
8427
</v-container>
8528
</template>
8629

8730
<script>
8831
export default {
89-
data: () => ({
90-
ecosystem: [
91-
{
92-
text: 'vuetify-loader',
93-
href: 'https://github.com/vuetifyjs/vuetify-loader',
94-
},
95-
{
96-
text: 'github',
97-
href: 'https://github.com/vuetifyjs/vuetify',
98-
},
99-
{
100-
text: 'awesome-vuetify',
101-
href: 'https://github.com/vuetifyjs/awesome-vuetify',
102-
},
103-
],
104-
importantLinks: [
105-
{
106-
text: 'Documentation',
107-
href: 'https://vuetifyjs.com',
108-
},
109-
{
110-
text: 'Chat',
111-
href: 'https://community.vuetifyjs.com',
112-
},
113-
{
114-
text: 'Made with Vuetify',
115-
href: 'https://madewithvuejs.com/vuetify',
116-
},
117-
{
118-
text: 'Twitter',
119-
href: 'https://twitter.com/vuetifyjs',
120-
},
121-
{
122-
text: 'Articles',
123-
href: 'https://medium.com/vuetify',
124-
},
125-
],
126-
whatsNext: [
127-
{
128-
text: 'Explore components',
129-
href: 'https://vuetifyjs.com/components/api-explorer',
130-
},
131-
{
132-
text: 'Select a layout',
133-
href: 'https://vuetifyjs.com/layout/pre-defined',
134-
},
135-
{
136-
text: 'Frequently Asked Questions',
137-
href: 'https://vuetifyjs.com/getting-started/frequently-asked-questions',
138-
},
139-
],
140-
}),
14132
};
14233
</script>

0 commit comments

Comments
 (0)