Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -53,12 +53,13 @@ Lux # For Neovim`;
<!-- Main Headlines -->
<!-- Logo -->
<div>
<img
src={logoImage.src}
alt="LuxVim Logo"
class="h-60 md:h-80 lg:h-98 mx-auto object-contain"
/>
</div>
<img
src={logoImage.src}
alt="LuxVim Logo"
class="h-60 md:h-80 lg:h-98 mx-auto object-contain transition-all duration-500 hover:scale-110 animate-pulse-gentle drop-shadow-lg logo-glow"
style="filter: drop-shadow(0 10px 20px rgba(147, 51, 234, 0.3)) drop-shadow(0 0 30px rgba(219, 39, 119, 0.2));"
/>
</div>
<h2
class="text-2xl md:text-3xl lg:text-4xl font-semibold mb-8 text-slate-800 dark:text-slate-200"
>
Expand Down Expand Up @@ -112,8 +113,7 @@ Lux # For Neovim`;

<!-- Features Preview -->
<div class="grid grid-cols-1 md:grid-cols-3 gap-6 max-w-4xl mx-auto mb-8 md:mb-12" >
<div class="flex items-center justify-center p-4 bg-white/5 dark:bg-slate-800/30 backdrop-blur-sm rounded-xl border border-slate-200/10 dark:border-slate-700/30"
>
<div class="flex items-center hover:shadow-md justify-center p-4 bg-white/17 dark:bg-slate-800/30 backdrop-blur-sm rounded-xl border border-slate-200/10 dark:border-slate-700/30" >
<div class="text-center">
<div
class="w-12 h-12 bg-gradient-to-br from-blue-500 to-cyan-500 rounded-lg flex items-center justify-center mx-auto mb-3"
Expand Down Expand Up @@ -141,7 +141,7 @@ Lux # For Neovim`;
</div>

<div
class="flex items-center justify-center p-4 bg-white/5 dark:bg-slate-800/30 backdrop-blur-sm rounded-xl border border-slate-200/10 dark:border-slate-700/30"
class="flex items-center justify-center p-4 hover:shadow-md bg-white/17 dark:bg-slate-800/30 backdrop-blur-sm rounded-xl border border-slate-200/10 dark:border-slate-700/30"
>
<div class="text-center">
<div
Expand Down Expand Up @@ -171,7 +171,7 @@ Lux # For Neovim`;
</div>

<div
class="flex items-center justify-center p-4 bg-white/5 dark:bg-slate-800/30 backdrop-blur-sm rounded-xl border border-slate-200/10 dark:border-slate-700/30"
class="flex items-center justify-center p-4 hover:shadow-md bg-white/17 dark:bg-slate-800/30 backdrop-blur-sm rounded-xl border border-slate-200/10 dark:border-slate-700/30"
>
<div class="text-center">
<div
Expand Down
25 changes: 25 additions & 0 deletions src/styles/global.css
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,31 @@ nav {
animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Gentle pulse animation for logo */
@keyframes pulse-gentle {
0%, 100% {
transform: scale(1);
filter: brightness(1);
}
50% {
transform: scale(1.02);
filter: brightness(1.1);
}
}

.animate-pulse-gentle {
animation: pulse-gentle 4s ease-in-out infinite;
}

/* Logo hover glow effect */
.logo-glow:hover {
filter: drop-shadow(0 10px 20px rgba(147, 51, 234, 0.3))
drop-shadow(0 0 30px rgba(219, 39, 119, 0.2))
drop-shadow(0 0 50px rgba(147, 51, 234, 0.4))
drop-shadow(0 0 80px rgba(219, 39, 119, 0.3)) !important;
}


/* Shiki dual theme support */
.astro-code,
.astro-code span {
Expand Down