diff --git a/apps/web/src/components/mainpage/greeting/GreetingSection.tsx b/apps/web/src/components/mainpage/greeting/GreetingSection.tsx index 36262a0..b2a962e 100644 --- a/apps/web/src/components/mainpage/greeting/GreetingSection.tsx +++ b/apps/web/src/components/mainpage/greeting/GreetingSection.tsx @@ -6,7 +6,7 @@ import { useRef } from 'react'; import MakersLogo3D from '@/components/common/MakersLogo3D'; import Intro from './Intro'; -import MakersIntodution from './MakersIntodution'; +import MakersIntroduction from './MakersIntroduction'; import Missions from './Missions'; export default function Greeting() { @@ -31,7 +31,7 @@ export default function Greeting() { - + diff --git a/apps/web/src/components/mainpage/greeting/MakersIntodution.tsx b/apps/web/src/components/mainpage/greeting/MakersIntroduction.tsx similarity index 99% rename from apps/web/src/components/mainpage/greeting/MakersIntodution.tsx rename to apps/web/src/components/mainpage/greeting/MakersIntroduction.tsx index c27f016..c182aca 100644 --- a/apps/web/src/components/mainpage/greeting/MakersIntodution.tsx +++ b/apps/web/src/components/mainpage/greeting/MakersIntroduction.tsx @@ -8,7 +8,7 @@ interface GreetingProps { className?: string; } -export default function MakersIntodution({ className }: GreetingProps) { +export default function MakersIntroduction({ className }: GreetingProps) { const containerRef = useRef(null); const { scrollYProgress } = useScroll({ target: containerRef, offset: ['start start', 'end start'] });