35323f2b2c
- 대시보드: KPI 카드 (이번달 문의, 신규 문의, 포스트 수) - 블로그 관리: 목록/작성/수정 페이지 - 문의 관리: 목록 및 상태 변경 - 설정: 사이트 연락처 정보 - 인증: Cookie 기반 8시간 세션 Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
15 lines
512 B
Plaintext
15 lines
512 B
Plaintext
@using Microsoft.AspNetCore.Components.Routing
|
|
|
|
<Router AppAssembly="typeof(Program).Assembly">
|
|
<Found Context="routeData">
|
|
<RouteView RouteData="routeData" DefaultLayout="typeof(MainLayout)" />
|
|
<FocusOnNavigate RouteData="routeData" Selector="h1" />
|
|
</Found>
|
|
<NotFound>
|
|
<PageTitle>찾을 수 없음</PageTitle>
|
|
<LayoutView Layout="typeof(MainLayout)">
|
|
<p>요청한 페이지를 찾을 수 없습니다.</p>
|
|
</LayoutView>
|
|
</NotFound>
|
|
</Router>
|