mirror of
https://github.com/afoim/fuwari.git
synced 2026-01-31 09:03:18 +08:00
- 将主域名从2x.nz更改为acofork.com - 移除侧边栏中的DomainSwitcher组件 - 更新所有相关配置中的域名引用 - 修改统计和图片服务的URL为新域名
39 lines
1.3 KiB
Plaintext
39 lines
1.3 KiB
Plaintext
---
|
|
import type { MarkdownHeading } from "astro";
|
|
|
|
import Profile from "./Profile.astro";
|
|
import Tag from "./Tags.astro";
|
|
import DomainSwitcher from "./DomainSwitcher.astro";
|
|
|
|
interface Props {
|
|
class?: string;
|
|
headings?: MarkdownHeading[];
|
|
}
|
|
|
|
const className = Astro.props.class;
|
|
---
|
|
<div id="sidebar" class:list={[className, "w-full"]}>
|
|
<div class="flex flex-col w-full gap-4 mb-4">
|
|
<Profile></Profile>
|
|
</div>
|
|
<div id="sidebar-sticky" class="transition-all duration-700 flex flex-col w-full gap-4 top-4 sticky top-4">
|
|
<Tag class="onload-animation" style="animation-delay: 200ms"></Tag>
|
|
<!-- 赞助标 -->
|
|
<div class="overflow-hidden flex justify-center">
|
|
<a href="https://secbit.ai/" target="_blank" rel="noopener noreferrer">
|
|
<img src="/aff/secbit-banner-1.gif" alt="Secbit" class="w-full max-w-[280px] rounded-lg hover:opacity-90 transition-opacity" />
|
|
</a>
|
|
</div>
|
|
<div class="overflow-hidden flex justify-center">
|
|
<iframe
|
|
src="https://support.nodeget.com/page/promotion?id=316"
|
|
style="border:none; border-radius:8px; height:270px; width:100%; max-width:280px;
|
|
transform: scale(1.0); transform-origin: center top;"
|
|
></iframe>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|