랜딩화면 문구 변경

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;
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 {

View File

@ -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": "Select a place on Naver Maps, click Share,\nand paste the URL that appears.",
"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...",

View File

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

View File

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