mirror of
https://github.com/spark-store-project/spark-store-abyss
synced 2025-12-17 21:01:38 +08:00
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:
5
pages/download.vue
Normal file
5
pages/download.vue
Normal file
@@ -0,0 +1,5 @@
|
||||
<script setup lang="ts"></script>
|
||||
|
||||
<template>
|
||||
<h1>Download!</h1>
|
||||
</template>
|
||||
20
pages/index.vue
Normal file
20
pages/index.vue
Normal 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>
|
||||
Reference in New Issue
Block a user