feat: Add initial styles and pages for the application

- Created main.css to include Tailwind CSS and PrimeIcons.
- Added download.vue page with a simple heading.
- Implemented index.vue page structure with multiple sections and basic styling.

Co-authored-by: xudeyu444 <tai_365@qq.com>
Co-authored-by: Sylvanysc <1915657537@qq.com>
This commit is contained in:
2025-05-12 00:00:26 +08:00
parent 87e7bc793e
commit 621bc20edd
7 changed files with 637 additions and 51 deletions

5
pages/download.vue Normal file
View File

@@ -0,0 +1,5 @@
<script setup lang="ts"></script>
<template>
<h1>Download!</h1>
</template>

20
pages/index.vue Normal file
View File

@@ -0,0 +1,20 @@
<script setup lang="ts"></script>
<template>
<div class="page">
<section></section>
<section></section>
<section></section>
<section></section>
<section></section>
<section></section>
<section></section>
</div>
</template>
<style scoped>
section {
width: 100vw;
height: 100vh;
}
</style>