diff --git a/app/services/automation/page.tsx b/app/services/automation/page.tsx index 80ad5c3..c61aee9 100644 --- a/app/services/automation/page.tsx +++ b/app/services/automation/page.tsx @@ -3,7 +3,6 @@ import { useState } from 'react'; import Link from 'next/link'; import ContactModal from '../../components/ContactModal'; -import PaymentButton from '../../components/PaymentButton'; const tools = [ { @@ -236,25 +235,14 @@ export default function AutomationPage() {
예: {plan.examples}
- {plan.productId ? ( - - 바로 결제하기 - - ) : ( - - )} + ))} diff --git a/app/services/prompt/page.tsx b/app/services/prompt/page.tsx index 6ad0aec..c6907d1 100644 --- a/app/services/prompt/page.tsx +++ b/app/services/prompt/page.tsx @@ -3,7 +3,6 @@ import { useState } from 'react'; import Link from 'next/link'; import ContactModal from '../../components/ContactModal'; -import PaymentButton from '../../components/PaymentButton'; const CHECKLIST = [ '주로 어떤 AI 도구를 사용하는지 (ChatGPT / Claude / Gemini)', @@ -230,25 +229,14 @@ export default function PromptPage() { ))} - {plan.productId ? ( - - 바로 결제하기 - - ) : ( - - )} + ))} diff --git a/app/services/website/page.tsx b/app/services/website/page.tsx index 01d29f7..5509740 100644 --- a/app/services/website/page.tsx +++ b/app/services/website/page.tsx @@ -2,7 +2,7 @@ import Link from 'next/link'; import { useState, useEffect, useRef } from 'react'; -import PaymentButton from '../../components/PaymentButton'; +import ContactModal from '../../components/ContactModal'; const samples = [ { @@ -160,6 +160,13 @@ function useReveal() { export default function WebsiteServicePage() { const [openFaq, setOpenFaq] = useState(null); const [showTop, setShowTop] = useState(false); + const [modalOpen, setModalOpen] = useState(false); + const [modalService, setModalService] = useState('홈페이지 제작'); + + const openModal = (service: string) => { + setModalService(service); + setModalOpen(true); + }; useEffect(() => { const scroller = (document.querySelector('.main-content') as HTMLElement | null) ?? document.documentElement; @@ -176,6 +183,21 @@ export default function WebsiteServicePage() { return (
+ setModalOpen(false)} + service={modalService} + checklist={[ + '원하시는 홈페이지 종류 (소개/쇼핑몰/SaaS 등)', + '참고하고 싶은 사이트 URL (있으면)', + '필요한 주요 페이지 및 기능', + '희망 납품 일정 및 예산 범위', + '디자인 선호 스타일 (모던/감성/심플 등)', + ]} + accentColor="text-indigo-400" + headerFrom="#0a0a1a" + headerTo="#1e1b4b" + />