forked from emre/www_projectmycelium_com
- Removed unused React imports from components (now using named imports only) - Removed unused cursor state and onMouseMove handler from text-hover-effect - Removed unused H1 import from HomeBlink
9 lines
251 B
TypeScript
9 lines
251 B
TypeScript
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>
|
|
);
|
|
} |