30 lines
1.0 KiB
PHP
30 lines
1.0 KiB
PHP
@php
|
|
$pageTitle = '이용안내';
|
|
$pageDesc = '구매부터 발송/환불까지 서비스 이용 방법을 한눈에 안내합니다.';
|
|
|
|
$breadcrumbs = [
|
|
['label' => '홈', 'url' => url('/')],
|
|
['label' => '고객센터', 'url' => url('/cs')],
|
|
['label' => '이용안내', 'url' => url()->current()],
|
|
];
|
|
|
|
$csActive = 'guide';
|
|
@endphp
|
|
|
|
@extends('web.layouts.subpage')
|
|
|
|
@section('title', '이용안내 | PIN FOR YOU')
|
|
@section('meta_description', 'PIN FOR YOU 이용안내입니다. 상품권 구매/발송/환불 등 이용 방법을 확인하세요.')
|
|
@section('canonical', url('/cs/guide'))
|
|
|
|
@section('subcontent')
|
|
<div class="guide-page">
|
|
@include('web.partials.content-head', [
|
|
'title' => '서비스 이용 안내',
|
|
'desc' => '주요 흐름(구매 → 결제 → 발송 → 환불)을 기준으로 안내합니다.'
|
|
])
|
|
|
|
{{-- TODO: 이용안내 본문(단계별 가이드/주의사항/정책 링크 등) --}}
|
|
</div>
|
|
@endsection
|