|
1 | 1 | <template> |
2 | | - <div>Use Cases</div> |
| 2 | + <div ref="vantaDots" class="h-100"> |
| 3 | + <v-container class="py-16"> |
| 4 | + <div class="mb-16"> |
| 5 | + <h1 class="text-h2 font-weight-bold text-center mb-4"> |
| 6 | + Use Cases |
| 7 | + </h1> |
| 8 | + <p class="text-body-1 text-center text-primary mx-auto" :style="{ maxWidth: '600px' }"> |
| 9 | + Explore how Mycelium Cloud empowers different industries and teams. |
| 10 | + </p> |
| 11 | + </div> |
| 12 | + |
| 13 | + <VRow> |
| 14 | + <VCol v-for="feature in features" :key="feature.title" cols="4"> |
| 15 | + <FeatureCard v-bind="feature" /> |
| 16 | + </VCol> |
| 17 | + </VRow> |
| 18 | + </v-container> |
| 19 | + </div> |
3 | 20 | </template> |
4 | 21 |
|
5 | 22 | <script setup lang="ts"> |
6 | 23 | definePageMeta({ middleware: "public" }) |
| 24 | +
|
| 25 | +ensureThreeGlobal() |
| 26 | +const vantaDots = ref<HTMLElement | null>(null) |
| 27 | +
|
| 28 | +useHead({ |
| 29 | + script: [ |
| 30 | + { |
| 31 | + async: true, |
| 32 | + src: "/scripts/vanta.dots.min.js", |
| 33 | + defer: true, |
| 34 | + onload() { |
| 35 | + applyVantaDots(vantaDots.value!) |
| 36 | + }, |
| 37 | + }, |
| 38 | + ], |
| 39 | +}) |
| 40 | +
|
| 41 | +const features = [ |
| 42 | + { |
| 43 | + icon: "mdi-brain", |
| 44 | + title: "AI/ML Training", |
| 45 | + description: "Run GPU-accelerated workloads for deep learning and data science on demand.", |
| 46 | + tags: ["GPU Acceleration", "Scalable Compute", "Cost Optimization"], |
| 47 | + }, |
| 48 | + { |
| 49 | + icon: "mdi-domain", |
| 50 | + title: "Enterprise Kubernetes", |
| 51 | + description: "Deploy production-grade clusters with full control and no vendor lock-in.", |
| 52 | + tags: ["High Availability", "Security", "Compliance"], |
| 53 | + }, |
| 54 | + { |
| 55 | + icon: "mdi-router-wireless", |
| 56 | + title: "Edge & IoT", |
| 57 | + description: "Leverage global nodes for low-latency edge computing and IoT applications.", |
| 58 | + tags: ["Low Latency", "Global Distribution", "Real-time Processing"], |
| 59 | + }, |
| 60 | +] |
7 | 61 | </script> |
0 commit comments