mirror of
https://github.com/RhenCloud/Cloud-Home.git
synced 2026-01-22 17:39:07 +08:00
- 改进项目页面、网站页面、友链页面 - 从 styles.css 中移除全局样式。 - 添加 tailwind.config.ts 以配置 Tailwind CSS。 - 更新 tsconfig.json,加入 Vue 组件的新路径映射。
24 lines
641 B
Vue
24 lines
641 B
Vue
<template>
|
|
<main class="page">
|
|
<HeroSection :profile="profile" />
|
|
<SocialLinks :links="socialLinks" />
|
|
<AboutSection :items="about" :profile="profile" />
|
|
</main>
|
|
</template>
|
|
|
|
<script setup>
|
|
import HeroSection from "~/components/HeroSection.vue";
|
|
import SocialLinks from "~/components/SocialLinks.vue";
|
|
import AboutSection from "~/components/AboutSection.vue";
|
|
import siteConfig from "~/config/siteConfig";
|
|
|
|
const profile = siteConfig.profile;
|
|
const socialLinks = siteConfig.socialLinks;
|
|
const about = siteConfig.about;
|
|
|
|
definePageMeta({
|
|
order: 0,
|
|
label: "首页",
|
|
});
|
|
</script>
|