diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index 4362da9..30003ef 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -1,5 +1,4 @@ import React, { useState, useEffect } from 'react'; -import { useTheme } from '@/hooks'; interface SvgTextLogoProps { text: string; @@ -12,7 +11,6 @@ export default function SvgTextLogo({ className = '', animate = false, }: SvgTextLogoProps) { - const theme = useTheme?.(); const [isVisible, setIsVisible] = useState(!animate); useEffect(() => {