웹 서브페이지 UI 페이지 생성

This commit is contained in:
sungro815 2026-01-12 09:22:13 +09:00
parent d66aded096
commit 6bd85b47df
5 changed files with 118 additions and 2 deletions

View File

@ -18,8 +18,6 @@
{{-- Quick Categories --}}
@include('web.main.quick-categories')
@include('web.main.notice-support')
{{-- Monthly Deals --}}
<section class="section" id="monthly-deals">
<div class="container">
@ -44,6 +42,8 @@
</div>
</section>
@include('web.main.notice-support')
{{-- All Products --}}
<section class="section" id="all-products">
<div class="container">

View File

@ -0,0 +1,29 @@
@php
$pageTitle = '교환 진행 트래킹';
$pageDesc = '요청부터 완료까지 단계별 상태를 한눈에 추적하세요.';
$breadcrumbs = [
['label' => '홈', 'url' => url('/')],
['label' => '마이페이지', 'url' => url('/mypage/info')],
['label' => '교환내역', 'url' => url()->current()],
];
$mypageActive = 'exchange';
@endphp
@extends('web.layouts.subpage')
@section('title', '교환내역 | PIN FOR YOU')
@section('meta_description', 'PIN FOR YOU 마이페이지 교환내역 입니다. 교환 진행/완료 내역을 확인하세요.')
@section('canonical', url('/mypage/exchange'))
@section('subcontent')
<div class="mypage-exchange-page">
@include('web.partials.content-head', [
'title' => '교환내역',
'desc' => '교환 처리 상태를 확인하세요.'
])
{{-- TODO: 내용 추후 구현 --}}
</div>
@endsection

View File

@ -0,0 +1,29 @@
@php
$pageTitle = '계정 설정 한 번에';
$pageDesc = '연락처, 비밀번호, 보안 관련 설정을 여기서 정리하세요.';
$breadcrumbs = [
['label' => '홈', 'url' => url('/')],
['label' => '마이페이지', 'url' => url('/mypage/info')],
['label' => '나의정보', 'url' => url()->current()],
];
$mypageActive = 'info';
@endphp
@extends('web.layouts.subpage')
@section('title', '나의정보 | PIN FOR YOU')
@section('meta_description', 'PIN FOR YOU 마이페이지 나의정보 입니다. 회원 정보 및 설정을 확인하세요.')
@section('canonical', url('/mypage/info'))
@section('subcontent')
<div class="mypage-info-page">
@include('web.partials.content-head', [
'title' => '나의정보',
'desc' => '내 계정 정보를 확인하고 필요한 항목을 관리하세요.'
])
{{-- TODO: 내용 추후 구현 --}}
</div>
@endsection

View File

@ -0,0 +1,29 @@
@php
$pageTitle = '문의 기록 보관함';
$pageDesc = '내가 남긴 질문과 답변을 모아 보고, 처리 상태를 확인하세요.';
$breadcrumbs = [
['label' => '홈', 'url' => url('/')],
['label' => '마이페이지', 'url' => url('/mypage/info')],
['label' => '1:1문의내역', 'url' => url()->current()],
];
$mypageActive = 'qna';
@endphp
@extends('web.layouts.subpage')
@section('title', '1:1문의내역 | PIN FOR YOU')
@section('meta_description', 'PIN FOR YOU 마이페이지 1:1문의내역 입니다. 문의 및 답변 내역을 확인하세요.')
@section('canonical', url('/mypage/qna'))
@section('subcontent')
<div class="mypage-qna-page">
@include('web.partials.content-head', [
'title' => '1:1문의내역',
'desc' => '문의 처리 상태를 확인할 수 있습니다.'
])
{{-- TODO: 내용 추후 구현 --}}
</div>
@endsection

View File

@ -0,0 +1,29 @@
@php
$pageTitle = '최근 이용 흐름';
$pageDesc = '구매 → 결제 → 발송 상태를 시간순으로 확인할 수 있어요.';
$breadcrumbs = [
['label' => '홈', 'url' => url('/')],
['label' => '마이페이지', 'url' => url('/mypage/info')],
['label' => '이용내역', 'url' => url()->current()],
];
$mypageActive = 'usage';
@endphp
@extends('web.layouts.subpage')
@section('title', '이용내역 | PIN FOR YOU')
@section('meta_description', 'PIN FOR YOU 마이페이지 이용내역 입니다. 구매/결제/발송 내역을 확인하세요.')
@section('canonical', url('/mypage/usage'))
@section('subcontent')
<div class="mypage-usage-page">
@include('web.partials.content-head', [
'title' => '이용내역',
'desc' => '기간별로 내역을 확인할 수 있습니다.'
])
{{-- TODO: 내용 추후 구현 --}}
</div>
@endsection