diff --git a/src/components/landing/CTASection.tsx b/src/components/landing/CTASection.tsx index 44c25a68..a33a9642 100644 --- a/src/components/landing/CTASection.tsx +++ b/src/components/landing/CTASection.tsx @@ -5,7 +5,7 @@ import { useGSAP } from '@gsap/react'; import gsap from 'gsap'; import { ScrollTrigger } from 'gsap/ScrollTrigger'; import { useWindowSize } from 'react-use'; -import { InquiryDialog } from './InquiryDialog'; +import Link from 'next/link'; gsap.registerPlugin(ScrollTrigger); @@ -69,11 +69,12 @@ function CTASection({ className }: { className?: string }) { 3분 만에 사이트를 개설해보세요.

- - - + + 지금 무료로 시작하기 +
diff --git a/src/components/landing/heroSection.shared.tsx b/src/components/landing/heroSection.shared.tsx index 84058f21..030856d8 100644 --- a/src/components/landing/heroSection.shared.tsx +++ b/src/components/landing/heroSection.shared.tsx @@ -1,6 +1,6 @@ 'use client'; -import { InquiryDialog } from './InquiryDialog'; +import Link from 'next/link'; import { Button } from '../ui'; interface HeroSectionProps { @@ -19,11 +19,11 @@ const TEXT_STYLE = { function HeroSectionCTA() { return (
- + - +
); }