forked from emre/www_projectmycelium_com
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:
10
src/components/HomeHeadline.tsx
Normal file
10
src/components/HomeHeadline.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user