feat(页面): 添加新闻、作品、工作室和联系页面
添加四个新的页面组件:news.vue、work.vue、studio.vue 和 contact.vue 同时更新.gitignore文件,添加.trae忽略项
This commit is contained in:
@@ -17,6 +17,7 @@ logs
|
|||||||
.DS_Store
|
.DS_Store
|
||||||
.fleet
|
.fleet
|
||||||
.idea
|
.idea
|
||||||
|
.trae
|
||||||
|
|
||||||
# Local env files
|
# Local env files
|
||||||
.env
|
.env
|
||||||
|
|||||||
@@ -0,0 +1,9 @@
|
|||||||
|
<template>
|
||||||
|
<div class="page-container flex min-h-screen items-center justify-center pt-32">
|
||||||
|
<h1 class="text-4xl font-bold">Contact Page</h1>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup lang="ts">
|
||||||
|
// Contact 页面
|
||||||
|
</script>
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
<template>
|
||||||
|
<div class="page-container flex min-h-screen items-center justify-center pt-32">
|
||||||
|
<h1 class="text-4xl font-bold">News Page</h1>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup lang="ts">
|
||||||
|
// News 页面
|
||||||
|
</script>
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
<template>
|
||||||
|
<div class="page-container flex min-h-screen items-center justify-center pt-32">
|
||||||
|
<h1 class="text-4xl font-bold">Studio Page</h1>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup lang="ts">
|
||||||
|
// Studio 页面
|
||||||
|
</script>
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
<template>
|
||||||
|
<div class="page-container flex min-h-screen items-center justify-center pt-32">
|
||||||
|
<h1 class="text-4xl font-bold">Work Page</h1>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup lang="ts">
|
||||||
|
// Work 页面
|
||||||
|
</script>
|
||||||
Reference in New Issue
Block a user