랜딩화면 문구 변경

feature-tutorial
김성경 2026-04-07 11:20:13 +09:00
parent e7814742e5
commit d7cb0167ec
4 changed files with 9 additions and 7 deletions

View File

@ -4044,6 +4044,7 @@
font-size: 14px; font-size: 14px;
color: #6AB0B3; color: #6AB0B3;
margin: 0 0 10px; margin: 0 0 10px;
white-space: pre-line;
} }
/* URL Input Dropdown */ /* URL Input Dropdown */
@ -4549,11 +4550,12 @@
} }
.hero-input-hint { .hero-input-hint {
font-size: 12px; font-size: 14px;
font-weight: 400; font-weight: 400;
color: #CEE5E6; color: #CEE5E6;
letter-spacing: -0.006em; letter-spacing: -0.006em;
margin-bottom: 16px; margin-bottom: 24px;
white-space: pre-line;
} }
.hero-error { .hero-error {

View File

@ -79,7 +79,7 @@
"hero": { "hero": {
"searchTypeBusinessName": "Business Name", "searchTypeBusinessName": "Business Name",
"placeholderBusinessName": "Enter a 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.", "guideBusinessName": "Search by business name to retrieve information.",
"errorUrlRequired": "Please enter a URL.", "errorUrlRequired": "Please enter a URL.",
"errorNameRequired": "Please enter a business name.", "errorNameRequired": "Please enter a business name.",
@ -115,7 +115,7 @@
"urlInput": { "urlInput": {
"searchTypeBusinessName": "Business Name", "searchTypeBusinessName": "Business Name",
"placeholderBusinessName": "Enter a 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.", "guideBusinessName": "Search by business name to retrieve information.",
"searchButton": "Search", "searchButton": "Search",
"searching": "Searching...", "searching": "Searching...",

View File

@ -79,7 +79,7 @@
"hero": { "hero": {
"searchTypeBusinessName": "업체명", "searchTypeBusinessName": "업체명",
"placeholderBusinessName": "업체명을 입력하세요", "placeholderBusinessName": "업체명을 입력하세요",
"guideUrl": "URL에서 가져온 정보로 영상이 자동 생성됩니다.", "guideUrl": "네이버 지도에서 우리 펜션을 검색한 뒤 공유를 클릭하고,\nURL을 복사해서 여기에 붙여넣어 주세요.",
"guideBusinessName": "업체명으로 검색하여 정보를 가져옵니다.", "guideBusinessName": "업체명으로 검색하여 정보를 가져옵니다.",
"errorUrlRequired": "URL을 입력해주세요.", "errorUrlRequired": "URL을 입력해주세요.",
"errorNameRequired": "업체명을 입력해주세요.", "errorNameRequired": "업체명을 입력해주세요.",
@ -115,7 +115,7 @@
"urlInput": { "urlInput": {
"searchTypeBusinessName": "업체명", "searchTypeBusinessName": "업체명",
"placeholderBusinessName": "업체명을 입력하세요", "placeholderBusinessName": "업체명을 입력하세요",
"guideUrl": "URL에서 가져온 정보로 영상이 자동 생성됩니다.", "guideUrl": "네이버 지도에서 우리 펜션을 검색한 뒤 공유를 클릭하고,\nURL을 복사해서 여기에 붙여넣어 주세요.",
"guideBusinessName": "업체명으로 검색하여 정보를 가져옵니다.", "guideBusinessName": "업체명으로 검색하여 정보를 가져옵니다.",
"searchButton": "검색하기", "searchButton": "검색하기",
"searching": "검색 중...", "searching": "검색 중...",

View File

@ -260,7 +260,7 @@ const HeroSection: React.FC<HeroSectionProps> = ({ onAnalyze, onAutocomplete, on
const getPlaceholder = () => { const getPlaceholder = () => {
return searchType === 'url' return searchType === 'url'
? 'https://www.castad.com' ? 'https://naver.me/abcdef'
: t('landing.hero.placeholderBusinessName'); : t('landing.hero.placeholderBusinessName');
}; };