Nuxt 초기 세팅 추가
This commit is contained in:
19
pages/pages/[slug].vue
Normal file
19
pages/pages/[slug].vue
Normal file
@@ -0,0 +1,19 @@
|
||||
<script setup>
|
||||
definePageMeta({
|
||||
layout: 'page'
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<article class="static-page mx-auto min-h-screen max-w-3xl px-6 py-16">
|
||||
<p class="static-page__eyebrow text-xs font-semibold uppercase text-muted">
|
||||
Page
|
||||
</p>
|
||||
<h1 class="static-page__title mt-4 text-5xl font-semibold leading-tight">
|
||||
고정 페이지
|
||||
</h1>
|
||||
<p class="static-page__description mt-6 text-lg leading-8 text-muted">
|
||||
About, Projects, Links, Contact 같은 고정 페이지는 헤더와 사이드바 없이 본문 중심으로 표시합니다.
|
||||
</p>
|
||||
</article>
|
||||
</template>
|
||||
Reference in New Issue
Block a user