refactor(projects): perf page home

This commit is contained in:
Soybean
2024-01-26 01:51:06 +08:00
parent 123fd4f96c
commit 4c61c6ff3c
7 changed files with 288 additions and 222 deletions

View File

@@ -0,0 +1,17 @@
<script setup lang="ts">
import { $t } from '@/locales';
defineOptions({
name: 'CreativityBanner'
});
</script>
<template>
<NCard :title="$t('page.home.creativity')" :bordered="false" size="small" class="card-wrapper h-full">
<div class="flex-center h-full">
<IconLocalBanner class="text-400px sm:text-320px text-primary" />
</div>
</NCard>
</template>
<style scoped></style>