初始化
Some checks failed
Update pnpm Dependencies / update-dependencies (push) Has been cancelled

This commit is contained in:
2025-09-18 17:04:40 +08:00
parent dc88818dd2
commit 5966ed4b98
32 changed files with 18247 additions and 3108 deletions

View File

@@ -18,9 +18,9 @@ export const FriendLinkList = (props: { friends: TFriendItem[] }) => {
<Separator />
<div className="my-2 flex flex-col justify-start text-base">
<div className="mx-auto">
{"Welcome to exchange our friend links and every high-quality blog websites are welcomed. "}
{"欢迎你和我交换友情链接。"}
<Link className="underline" href={`mailto:${Config.SocialLinks.email}`}>
{"Email me please"}
{"请邮件联系我"}
</Link>
</div>
</div>

View File

@@ -9,7 +9,7 @@ export const HomeCover = () => {
className="mt-5 mb-20 flex w-full justify-center rounded-xl"
style={{
aspectRatio: "4/1",
background: `url(${Config.PageCovers.websiteCoverURL})`,
background: `url(${Config.PageCovers.websiteCoverURL})` + " no-repeat center center",
backgroundSize: "cover",
}}
>

View File

@@ -27,9 +27,6 @@ export const Footer = () => {
>
{"Source Code"}
</Link>
<Link href="/sponsor" title="Sponsor me for my works.">
{"Sponsor"}
</Link>
<Link href="/friends" title="My friend links.">
{"Friends"}
</Link>

View File

@@ -8,17 +8,17 @@ import { MdMenu, MdOutlineDarkMode, MdOutlineLightMode, MdSearch } from "react-i
const MenuItems = [
{
title: "HOME",
title: "主页",
href: "/",
},
{
title: "POSTS",
title: "日记",
href: "/posts",
},
{
title: "ABOUT",
href: "/about",
},
// {
// title: "关于",
// href: "/about",
// },
];
export const NavBar = () => {