사이트 2차 수정, 신규 페이지 추가
This commit is contained in:
@@ -2,11 +2,41 @@
|
||||
// 커피챗 신청 — 클라이언트 검증 + 완료 화면 (원본 바닐라 JS → Vue 반응형 이식)
|
||||
import { reactive, ref, nextTick } from 'vue'
|
||||
|
||||
const config = useRuntimeConfig()
|
||||
const siteUrl = String(config.public.siteUrl || '').replace(/\/$/, '')
|
||||
|
||||
useSeo({
|
||||
title: '커피챗 신청 | 이너탭(innertab)',
|
||||
description:
|
||||
'정식 지원 전에 이너탭 담당자와 가볍게 이야기 나눠보세요. 약 30분 내외, 온·오프라인으로 진행되는 커피챗을 신청할 수 있습니다.',
|
||||
path: '/coffee-chat',
|
||||
keywords:
|
||||
'이너탭, innertab, 커피챗, 채용 상담, 커리어 상담, 채용, 면담 신청, 입사 지원, 스타트업 채용',
|
||||
})
|
||||
|
||||
// 구조화 데이터(JSON-LD) — 연락/신청 페이지(ContactPage) + 빵부스러기
|
||||
useHead({
|
||||
script: [
|
||||
{
|
||||
type: 'application/ld+json',
|
||||
innerHTML: JSON.stringify({
|
||||
'@context': 'https://schema.org',
|
||||
'@type': 'ContactPage',
|
||||
name: '커피챗 신청 | 이너탭(innertab)',
|
||||
description: '이너탭 담당자와의 비공식 커피챗(채용 전 면담) 신청 페이지',
|
||||
url: `${siteUrl}/coffee-chat`,
|
||||
isPartOf: { '@type': 'WebSite', name: '이너탭 innertab', url: siteUrl },
|
||||
about: { '@type': 'Organization', name: '이너탭', alternateName: 'innertab', url: siteUrl },
|
||||
breadcrumb: {
|
||||
'@type': 'BreadcrumbList',
|
||||
itemListElement: [
|
||||
{ '@type': 'ListItem', position: 1, name: '홈', item: `${siteUrl}/` },
|
||||
{ '@type': 'ListItem', position: 2, name: '커피챗', item: `${siteUrl}/coffee-chat` },
|
||||
],
|
||||
},
|
||||
}),
|
||||
},
|
||||
],
|
||||
})
|
||||
|
||||
// 폼 상태
|
||||
|
||||
Reference in New Issue
Block a user