30 lines
974 B
PHP
30 lines
974 B
PHP
@php
|
|
$pageTitle = '이용약관';
|
|
$pageDesc = '서비스 이용 조건, 책임 범위, 분쟁 처리 기준 안내.';
|
|
|
|
$breadcrumbs = [
|
|
['label' => '홈', 'url' => url('/')],
|
|
['label' => '약관 및 정책', 'url' => url('/policy')],
|
|
['label' => '이용약관', 'url' => url()->current()],
|
|
];
|
|
|
|
$policyActive = 'terms';
|
|
@endphp
|
|
|
|
@extends('web.layouts.subpage')
|
|
|
|
@section('title', '이용약관 | PIN FOR YOU')
|
|
@section('meta_description', 'PIN FOR YOU 이용약관입니다. 서비스 이용 조건과 책임 범위, 분쟁 처리 기준을 안내합니다.')
|
|
@section('canonical', url('/policy/terms'))
|
|
|
|
@section('subcontent')
|
|
<div class="policy-terms-page">
|
|
@include('web.partials.content-head', [
|
|
'title' => '서비스 이용 규칙',
|
|
'desc' => '회원 의무, 거래/결제, 환불, 제재 기준을 포함합니다.'
|
|
])
|
|
|
|
{{-- TODO: 이용약관 본문 --}}
|
|
</div>
|
|
@endsection
|