Initial commit: 网络验证平台

This commit is contained in:
Admin
2026-04-27 17:22:56 +08:00
commit afe67d704e
780 changed files with 88960 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
<script setup lang="ts">
import Footer from '@/components/marketing-layout/the-footer.vue'
import Header from '@/components/marketing-layout/the-header.vue'
</script>
<template>
<div class="min-h-screen flex flex-col">
<Header />
<main class="flex-1">
<div class="relative bg-background">
<div class="py-8 lg:py-12">
<div class="mx-auto max-w-6xl px-4 sm:px-6 lg:px-8">
<router-view />
</div>
</div>
</div>
</main>
<Footer />
</div>
</template>