first commit
This commit is contained in:
18
docs/app/components/content/FloatingNuxt.vue
Normal file
18
docs/app/components/content/FloatingNuxt.vue
Normal 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>
|
Reference in New Issue
Block a user