feat: Add content footer, update tools and layout components

This commit is contained in:
KazooTTT
2025-02-08 16:41:53 +08:00
parent 8043294a72
commit 5f13ceb06a
8 changed files with 80 additions and 16 deletions

View File

@ -2,6 +2,8 @@
import PageLayout from "@/layouts/Base.astro";
import Tools from "@/components/tools/index.astro";
import GiscusComment from "@/components/componentsBefore/GiscusComment";
import SocialList from "@/components/SocialList.astro";
import ContentFooter from "@/components/ContentFooter.astro";
const meta = {
description: "introduction for KazooTTT",
title: "About",
@ -11,7 +13,8 @@ const meta = {
<PageLayout meta={meta}>
<h1 class="title mb-6">About</h1>
<div class="prose prose-base prose-cactus max-w-none">TODO ...</div>
<div class="mt-2">
<div class="my-2">
<a href="https://wakatime.com/@d3dc2570-e4bf-4469-b0c2-127b495e8b91"
><img
src="https://wakatime.com/badge/user/d3dc2570-e4bf-4469-b0c2-127b495e8b91.svg"
@ -20,6 +23,8 @@ const meta = {
>
</div>
<Tools />
<SocialList />
<Tools enableCollapse={true} defaultOpen={false} />
<ContentFooter />
<GiscusComment client:load />
</PageLayout>