first commit

This commit is contained in:
2025-07-19 13:59:44 +00:00
commit 2540bc968f
113 changed files with 21736 additions and 0 deletions

View File

@ -0,0 +1,18 @@
<template>
<div class="flex-1 flex items-center justify-center">
<NuxtImg
src="/landing/nuxt-logo-3D.svg"
class="h-42 floating-logo"
alt="Nuxt 3D Logo"
/>
</div>
</template>
<style>
.floating-logo {
transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.group:hover .floating-logo {
transform: translateY(-20px);
}
</style>