From ce52f5459c4000bf28532ed5faef487a069abe25 Mon Sep 17 00:00:00 2001 From: Kimjiwon Date: Thu, 30 Apr 2026 23:53:09 +0900 Subject: [PATCH] =?UTF-8?q?hotfix:=20=EC=A7=80=EA=B8=88=20=EB=AC=B4?= =?UTF-8?q?=EB=A3=8C=EB=A1=9C=20=EC=8B=9C=EC=9E=91=ED=95=98=EA=B8=B0=20?= =?UTF-8?q?=ED=94=8C=EB=A1=9C=EC=9A=B0=20=ED=83=80=EB=8F=84=EB=A1=9D=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/landing/CTASection.tsx | 13 +++++++------ src/components/landing/heroSection.shared.tsx | 6 +++--- 2 files changed, 10 insertions(+), 9 deletions(-) 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 (
- + - +
); }