diff --git a/index.css b/index.css index 3524036..48d8bd8 100644 --- a/index.css +++ b/index.css @@ -4044,6 +4044,7 @@ font-size: 14px; color: #6AB0B3; margin: 0 0 10px; + white-space: pre-line; } /* URL Input Dropdown */ @@ -4549,11 +4550,12 @@ } .hero-input-hint { - font-size: 12px; + font-size: 14px; font-weight: 400; color: #CEE5E6; letter-spacing: -0.006em; - margin-bottom: 16px; + margin-bottom: 24px; + white-space: pre-line; } .hero-error { diff --git a/src/locales/en.json b/src/locales/en.json index d561a5d..2496ec2 100644 --- a/src/locales/en.json +++ b/src/locales/en.json @@ -79,7 +79,7 @@ "hero": { "searchTypeBusinessName": "Business Name", "placeholderBusinessName": "Enter a business name", - "guideUrl": "A video will be automatically generated from the information gathered from the URL.", + "guideUrl": "Enter the Naver Place URL.", "guideBusinessName": "Search by business name to retrieve information.", "errorUrlRequired": "Please enter a URL.", "errorNameRequired": "Please enter a business name.", @@ -115,7 +115,7 @@ "urlInput": { "searchTypeBusinessName": "Business Name", "placeholderBusinessName": "Enter a business name", - "guideUrl": "A video will be automatically generated from the information gathered from the URL.", + "guideUrl": "Select a place on Naver Maps, click Share,\nand paste the URL that appears.", "guideBusinessName": "Search by business name to retrieve information.", "searchButton": "Search", "searching": "Searching...", diff --git a/src/locales/ko.json b/src/locales/ko.json index 07716a4..bd635b0 100644 --- a/src/locales/ko.json +++ b/src/locales/ko.json @@ -78,8 +78,8 @@ "landing": { "hero": { "searchTypeBusinessName": "업체명", - "placeholderBusinessName": "업체명을 입력하세요", - "guideUrl": "URL에서 가져온 정보로 영상이 자동 생성됩니다.", + "placeholderBusinessName": "업체명을 입력하세요.", + "guideUrl": "네이버 Place URL을 입력하세요.", "guideBusinessName": "업체명으로 검색하여 정보를 가져옵니다.", "errorUrlRequired": "URL을 입력해주세요.", "errorNameRequired": "업체명을 입력해주세요.", @@ -95,7 +95,7 @@ "title": "ADO2.AI에 오신 것을 환영합니다.", "subtitle": "분석, 제작, 배포까지 콘텐츠 마케팅의 전과정을 자동화", "feature1Title": "비즈니스 핵심 정보 분석", - "feature1Desc": "홈페이지, 네이버 지도, 블로그 등의\nURL을 입력하세요", + "feature1Desc": "홈페이지, 네이버 지도, 블로그 등의\nURL을 입력하세요.", "feature2Title": "홍보 콘텐츠 자동 제작", "feature2Desc": "분석된 정보를 바탕으로\n비즈니스에 맞는 음악, 자막, 노래, 영상을\n자동으로 제작해요", "feature3Title": "멀티채널 자동 배포", @@ -114,8 +114,8 @@ }, "urlInput": { "searchTypeBusinessName": "업체명", - "placeholderBusinessName": "업체명을 입력하세요", - "guideUrl": "URL에서 가져온 정보로 영상이 자동 생성됩니다.", + "placeholderBusinessName": "업체명을 입력하세요.", + "guideUrl": "네이버 Place URL을 입력하세요.", "guideBusinessName": "업체명으로 검색하여 정보를 가져옵니다.", "searchButton": "검색하기", "searching": "검색 중...", diff --git a/src/pages/Dashboard/UrlInputContent.tsx b/src/pages/Dashboard/UrlInputContent.tsx index 498e652..b1bc505 100644 --- a/src/pages/Dashboard/UrlInputContent.tsx +++ b/src/pages/Dashboard/UrlInputContent.tsx @@ -53,7 +53,7 @@ const UrlInputContent: React.FC = ({ onAnalyze, onAutocomp const getPlaceholder = () => { return searchType === 'url' - ? 'https://www.castad.com' + ? 'https://naver.me/abcdef' : t('urlInput.placeholderBusinessName'); }; diff --git a/src/pages/Landing/HeroSection.tsx b/src/pages/Landing/HeroSection.tsx index 4318e86..f90f281 100755 --- a/src/pages/Landing/HeroSection.tsx +++ b/src/pages/Landing/HeroSection.tsx @@ -260,7 +260,7 @@ const HeroSection: React.FC = ({ onAnalyze, onAutocomplete, on const getPlaceholder = () => { return searchType === 'url' - ? 'https://www.castad.com' + ? 'https://naver.me/abcdef' : t('landing.hero.placeholderBusinessName'); };