diff --git a/src/app/page.tsx b/src/app/page.tsx index 322ce83..c3aadf7 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -42,7 +42,7 @@ export default function Page() { me@imnya.ng -
+
diff --git a/src/components/txt.tsx b/src/components/txt.tsx index 453ff4e..d244e17 100644 --- a/src/components/txt.tsx +++ b/src/components/txt.tsx @@ -1,10 +1,15 @@ import Image from "next/image"; +import { useIsMobile } from "@/hooks/use-mobile"; interface TXTProps { onHover?: (position: { x: number; y: number } | null) => void; } export default function TXT({ onHover }: TXTProps) { + const isMobile = useIsMobile(); + + if (isMobile) return null; + return (