|
| 1 | +<template> |
| 2 | + <v-responsive class="py-15"> |
| 3 | + <v-container> |
| 4 | + <HomeBgGradient /> |
| 5 | + |
| 6 | + <div class="mb-10"> |
| 7 | + <h4 class="text-h4 font-weight-bold mb-5"> |
| 8 | + More than just Components |
| 9 | + </h4> |
| 10 | + |
| 11 | + <v-responsive class="mx-auto mb-15" max-width="700"> |
| 12 | + <h6 class="text-h6 font-weight-regular text-medium-emphasis"> |
| 13 | + Vuetify is a complete Vue ecosystem that provides you with all of the tools necessary to create beautiful content rich web applications. |
| 14 | + </h6> |
| 15 | + </v-responsive> |
| 16 | + </div> |
| 17 | + |
| 18 | + <HomeMarquee :items="features" class="my-5"> |
| 19 | + <template #default="{ item }"> |
| 20 | + <v-img |
| 21 | + :src="item.image" |
| 22 | + class="px-6" |
| 23 | + width="200" |
| 24 | + /> |
| 25 | + </template> |
| 26 | + </HomeMarquee> |
| 27 | + </v-container> |
| 28 | + </v-responsive> |
| 29 | +</template> |
| 30 | + |
| 31 | +<script setup> |
| 32 | + const theme = useTheme() |
| 33 | + const features = computed(() => [ |
| 34 | + { |
| 35 | + description: 'Vuetify MCP is a tool for managing your Vuetify projects. You can manage your projects and see the status of the project.', |
| 36 | + image: `https://cdn.vuetifyjs.com/docs/images/logos/vone-logo-${theme.current.value.dark ? 'dark' : 'light'}.png`, |
| 37 | + }, |
| 38 | + { |
| 39 | + description: 'Vuetify MCP is a tool for managing your Vuetify projects. You can manage your projects and see the status of the project.', |
| 40 | + image: `https://cdn.vuetifyjs.com/docs/images/logos/v0-logo-${theme.current.value.dark ? 'dark' : 'light'}.png`, |
| 41 | + }, |
| 42 | + { |
| 43 | + image: `https://cdn.vuetifyjs.com/docs/images/one/logos/vplay-logo-${theme.current.value.dark ? 'dark' : 'light'}.png`, |
| 44 | + description: 'You can use Vuetify Playground to experiment with Vuetify components and see how they work.', |
| 45 | + }, |
| 46 | + { |
| 47 | + description: 'Bin is a tool for sharing code snippets. You can save your snippets with a unique URL.', |
| 48 | + image: `https://cdn.vuetifyjs.com/docs/images/one/logos/vbin-logo-${theme.current.value.dark ? 'dark' : 'light'}.png`, |
| 49 | + }, |
| 50 | + { |
| 51 | + description: 'Vuetify Link can be used to shorten long URLs. You can save them for later use.', |
| 52 | + image: `https://cdn.vuetifyjs.com/docs/images/one/logos/vlink-logo-${theme.current.value.dark ? 'dark' : 'light'}.png`, |
| 53 | + }, |
| 54 | + { |
| 55 | + description: 'Vuetify Studio is a tool for creating Vuetify components. You can create your own components and share them with others.', |
| 56 | + image: `https://cdn.vuetifyjs.com/docs/images/one/logos/vstudio-logo-${theme.current.value.dark ? 'dark' : 'light'}.png`, |
| 57 | + }, |
| 58 | + { |
| 59 | + description: 'Vuetify Issues is a tool for reporting issues with Vuetify. You can report issues and see the status of the issue.', |
| 60 | + image: `https://cdn.vuetifyjs.com/docs/images/one/logos/vissues-logo-${theme.current.value.dark ? 'dark' : 'light'}.png`, |
| 61 | + }, |
| 62 | + { |
| 63 | + description: 'Vuetify MCP is a tool for managing your Vuetify projects. You can manage your projects and see the status of the project.', |
| 64 | + image: `https://cdn.vuetifyjs.com/docs/images/logos/vmcp-logo-${theme.current.value.dark ? 'dark' : 'light'}.png`, |
| 65 | + }, |
| 66 | + { |
| 67 | + description: 'Vuetify MCP is a tool for managing your Vuetify projects. You can manage your projects and see the status of the project.', |
| 68 | + image: `https://cdn.vuetifyjs.com/docs/images/logos/vsnips-logo-${theme.current.value.dark ? 'dark' : 'light'}.png`, |
| 69 | + }, |
| 70 | + { |
| 71 | + description: 'Vuetify MCP is a tool for managing your Vuetify projects. You can manage your projects and see the status of the project.', |
| 72 | + image: `https://cdn.vuetifyjs.com/docs/images/logos/vloader-logo-${theme.current.value.dark ? 'dark' : 'light'}.png`, |
| 73 | + }, |
| 74 | + ]) |
| 75 | +</script> |
0 commit comments