c9cf644ac5
- 添加 build-and-push.sh 脚本用于自动化构建和推送 Docker 镜像 - 更新 .dockerignore 排除 pnpm-workspace.yaml - 更新项目依赖和配置文件
14 lines
280 B
Vue
Executable File
14 lines
280 B
Vue
Executable File
<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 页面
|
|
useSeoMeta({
|
|
title: 'Work',
|
|
description: '作品页面',
|
|
})
|
|
</script>
|