初始化代码

This commit is contained in:
yiqiuyang
2025-09-03 18:05:48 +08:00
parent e5712b2e97
commit 4414fe517b
70 changed files with 2404 additions and 9 deletions

View File

@ -0,0 +1,40 @@
<script setup>
import {ref, onMounted} from 'vue'
onMounted(() => {})
</script>
<template>
<div class="logo flex column j-s">
<img class="logo-img" src="/static/images/footer/logo.png" />
<div class="logo-CN">燃谷科技</div>
<div class="logo-EN">RANGUTECH</div>
</div>
</template>
<style lang="scss" scoped>
.logo {
width: 100%;
height: 100%;
text-align: center;
color: $white;
.logo-img {
width: 204px;
height: 204px;
}
.logo-CN {
font-family: 'HYDaHeiJ';
font-weight: 400;
font-style: 'normal';
font-size: 38px;
letter-spacing: 0.1em;
}
.logo-EN {
font-family: 'HYZhongHeiJ';
font-weight: 400;
font-style: 'normal';
font-size: 24px;
letter-spacing: 0.23em;
}
}
</style>