routie dev init since i didn't adhere to any proper guidance up until now

This commit is contained in:
2026-04-29 22:27:29 -06:00
commit e1dabb71e2
15301 changed files with 3562618 additions and 0 deletions
+54
View File
@@ -0,0 +1,54 @@
<template>
<v-sheet color="#0d1117" elevation="1" rounded="lg">
<v-tabs
v-model="tab"
:items="tabs"
align-tabs="center"
color="white"
height="60"
slider-color="#f78166"
>
<template v-slot:tab="{ item }">
<v-tab
:prepend-icon="item.icon"
:text="item.text"
:value="item.value"
class="text-none"
></v-tab>
</template>
<template v-slot:item="{ item }">
<v-tabs-window-item :value="item.value" class="pa-4">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Commodi, ratione debitis quis est labore voluptatibus! Eaque cupiditate minima, at placeat totam, magni doloremque veniam neque porro libero rerum unde voluptatem!
</v-tabs-window-item>
</template>
</v-tabs>
</v-sheet>
</template>
<script setup>
import { shallowRef } from 'vue'
const tab = shallowRef('tab-1')
const tabs = [
{
icon: 'mdi-book-open-page-variant',
text: 'Readme',
value: 'tab-1',
},
{
icon: 'mdi-handshake-outline',
text: 'Code of Conduct',
value: 'tab-2',
},
{
icon: 'mdi-license',
text: 'MIT License',
value: 'tab-3',
},
{
icon: 'mdi-shield-lock-outline',
text: 'Security',
value: 'tab-4',
},
]
</script>
+117
View File
@@ -0,0 +1,117 @@
<template>
<v-container class="h-full flex items-center" max-width="900">
<div>
<v-img
alt="Placeholder logo"
class="mb-4"
height="150"
src="@/assets/logo.png"
/>
<div class="mb-8 text-center">
<div class="font-light -mb-1">Welcome to</div>
<h1 class="text-6xl font-heading font-bold">Vuetify</h1>
</div>
<div class="grid md:grid-cols-2 gap-4">
<v-card
class="hero-card md:col-span-2"
image="https://cdn.vuetifyjs.com/docs/images/one/create/feature.png"
rounded="3xl"
variant="flat"
>
<template #prepend>
<v-avatar class="ml-2 mr-4" icon="mdi-rocket-launch-outline" size="60" variant="tonal" />
</template>
<template #image>
<v-img class="hidden md:flex" position="top right" />
</template>
<template #title>
<h2 class="text-2xl font-medium my-0">
Get started
</h2>
</template>
<template #subtitle>
<div class="leading-7">
Change this page by updating <v-code>components/HelloWorld.vue</v-code>.
</div>
</template>
</v-card>
<v-card
v-for="link in links"
:href="link.href"
:key="link.href"
:subtitle="link.subtitle"
:title="link.title"
class="
h-full py-3 rounded-3xl transition-[border-radius] hover:rounded-lg
flex items-center [&>.v-card-item]:w-full
group"
rel="noopener noreferrer"
target="_blank"
variant="flat"
>
<template #prepend>
<v-avatar :icon="link.icon" size="60" variant="tonal" class="ml-2 mr-4" />
</template>
<template #append>
<v-icon class="ml-1 opacity-0 transition group-hover:opacity-90 group-hover:-translate-x-1" icon="mdi-open-in-new" />
</template>
<template #subtitle>
<div class="line-clamp-2 text-wrap">{{ link.subtitle }}</div>
</template>
</v-card>
</div>
</div>
</v-container>
</template>
<script setup lang="ts">
const links = [
{
href: 'https://vuetifyjs.com/',
icon: 'mdi-text',
subtitle: 'Learn about all things Vuetify in our documentation.',
title: 'Documentation',
},
{
href: 'https://vuetifyjs.com/introduction/why-vuetify/#feature-guides',
icon: 'mdi-star',
subtitle: 'Explore available framework Features.',
title: 'Features',
},
{
href: 'https://vuetifyjs.com/components/all',
icon: 'mdi-widgets-outline',
subtitle: 'Discover components in the API Explorer.',
title: 'Components',
},
{
href: 'https://discord.vuetifyjs.com',
icon: 'mdi-account-group-outline',
subtitle: 'Connect with Vuetify developers.',
title: 'Community',
},
]
</script>
<style scoped>
@reference "../styles/tailwind.css";
/*
1. mixing helper classes and @apply for demonstration purposes only
2. the classes below are NOT wrapped in any CSS layer, so they "win" over everything else
*/
.hero-card {
@apply py-3 md:pr-[120px] w-full transition-none;
}
:deep(.v-card) {
@apply bg-gray-200;
@apply dark:bg-black dark:bg-linear-to-r dark:from-primary/50 dark:to-primary/30 dark:text-white/80;
}
</style>