feat: add animated text hover effect to home headline

- Created TextHoverEffect component with animated gradient mask and stroke drawing
- Replaced static H1 title with interactive HomeHeadline component featuring auto-looping animation
- Enhanced visual appeal with cyan gradient glow and smooth reveal effects
This commit is contained in:
2025-11-12 16:19:17 +01:00
parent 37d4371288
commit 7a0675a408
3 changed files with 156 additions and 11 deletions

View File

@@ -0,0 +1,10 @@
import React from "react";
import { TextHoverEffect } from "@/components/ui/text-hover-effect";
export function HomeHeadline() {
return (
<div className="flex items-center justify-center h-auto max-h-[200px]">
<TextHoverEffect text="MYCELIUM" />
</div>
);
}