refactor: remove unused imports and variables

- 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
This commit is contained in:
2025-11-12 16:26:51 +01:00
parent e9c1fd795e
commit e5cf6ee362
3 changed files with 4 additions and 7 deletions

View File

@@ -2,7 +2,7 @@
import { Button } from "@/components/Button";
import { Spotlight } from "@/components/ui/spotlight";
import { H1, H4, H5 } from "@/components/Texts";
import { H4, H5 } from "@/components/Texts";
import { HomeHeadline } from "@/components/HomeHeadline";
export function HomeBlink({ onGetStartedClick }: { onGetStartedClick: () => void }) {