|
15 | 15 |
|
16 | 16 | <v-flex mb-4>
|
17 | 17 | <h1 class="display-2 font-weight-bold mb-3">
|
18 |
| - Welcome to Vuetify |
| 18 | + Welcome to OpenRank |
19 | 19 | </h1>
|
20 | 20 | <p class="subheading font-weight-regular">
|
21 |
| - For help and collaboration with other Vuetify developers, |
| 21 | + For help and collaboration with other OpenRank developers, |
22 | 22 | <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> |
24 | 24 | </p>
|
25 | 25 | </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> |
83 | 26 | </v-layout>
|
84 | 27 | </v-container>
|
85 | 28 | </template>
|
86 | 29 |
|
87 | 30 | <script>
|
88 | 31 | 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 |
| - }), |
141 | 32 | };
|
142 | 33 | </script>
|
0 commit comments