2025-03-02 18:38:46 +08:00

28 lines
833 B
Plaintext

---
// 页面 Info
import SITE_CONFIG from "../../config";
const { Description, Twikoo } = SITE_CONFIG;
// Aside组件
import Aside from "../../components/Aside.astro";
// 公共 Layout
import Layout from "../../layouts/Layout.astro";
// 评论组件
import Comment from "../../components/Comment.astro";
// 动态说说样式
import "../../styles/Links.less";
---
<Layout title="友情链接" description={Description}>
<section class="vh-container">
<section class="vh-links vh-animation vh-animation-init">
<header class="vh-page-header">
<h1>朋友圈 👭</h1>
<p>天下快意之事莫若友。</p>
</header>
<main><section class="vh-space-loading"><span></span><span></span><span></span></section></main>
{Twikoo.envId && <Comment envId={Twikoo.envId} />}
</section>
<Aside />
</section>
</Layout>