添加一个文件

This commit is contained in:
zhcnyuyang 2025-05-02 17:50:00 +08:00
parent 506dd94d1d
commit 764738b642
2 changed files with 6 additions and 1 deletions

BIN
public/April29th_batch.mp4 Normal file

Binary file not shown.

View File

@ -1,11 +1,12 @@
<script setup> <script setup>
import Footer from './Footer.vue' import Footer from './Footer.vue'
import FooterContent from './Tools/FooterContent.vue'
</script> </script>
<template> <template>
<div id="contactRoot"> <div id="contactRoot">
<div id="upbar"></div> <div id="upbar"></div>
<Footer></Footer> <FooterContent></FooterContent>
</div> </div>
</template> </template>
@ -36,5 +37,9 @@ export default {
width: 100%; width: 100%;
height: 100vh; height: 100vh;
background-color: black; background-color: black;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
} }
</style> </style>