2026-01-08 14:35:14 +09:00

40 lines
1.2 KiB
PHP

<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Voucher Mall - 상품권 최저가 쇼핑</title>
{{-- SEO --}}
<meta name="description" content="상품권, 모바일 교환권, 구글플레이, 문화상품권 등 다양한 모바일 쿠폰 최저가 할인 쇼핑몰">
<link rel="canonical" href="{{ rtrim(config('app.url'), '/') }}/">
{{-- CSRF (추후 /로그인 대비) --}}
<meta name="csrf-token" content="{{ csrf_token() }}">
{{-- Pretendard Font --}}
<link rel="stylesheet" href="{{ asset('css/pretendard.css') }}">
<link rel="preload" href="{{ asset('assets/fonts/pretendard/PretendardVariable.woff2') }}" as="font" type="font/woff2" crossorigin>
{{-- WEB 전용 번들 로딩 --}}
@vite(['resources/css/web.css', 'resources/js/web.js'])
</head>
<body>
{{-- Header --}}
@include('web.company.header')
<main>
{{-- 페이지에서 @section('content') 여기로 들어옴 --}}
@yield('content')
</main>
{{-- Footer --}}
@include('web.company.footer')
{{-- 페이지별 스크립트 추가용 --}}
@stack('scripts')
</body>
</html>