feat:新增联系我们

This commit is contained in:
Xwen
2023-12-24 20:05:34 +08:00
parent 3b73121c29
commit 038e0bea86
5 changed files with 64 additions and 11 deletions

View File

@@ -0,0 +1,34 @@
<template>
<div class="contact-box">
<div class="content">
<h2>联系我们</h2>
<p>作者QQ454313500</p>
<p>2029年之前作者24小时在线时刻保持活跃更新</p>
<p>
QQ交流群官方一群已满官方二群已满官方三群786308927基本已满官方四群:498310311新群
联系作者这里人人都是顾问
</p>
<p>官方网址留言区ccnetcore.com</p>
</div>
</div>
</template>
<script setup></script>
<style scoped lang="scss">
.contact-box {
width: 100%;
padding: 20px;
// height: 100%;
display: flex;
justify-content: center;
background-color: #fff;
.content {
width: 1300px;
> p {
margin: 50px 0;
font-size: 16px;
}
}
}
</style>