Files
lixiyu-net/pages/sponsor.tsx

40 lines
1.4 KiB
TypeScript
Raw Normal View History

import { ContentContainer, Page } from "@/components/layouts";
2024-04-03 22:08:27 +08:00
import { SponsorBoard } from "@/components/sponsor-page/SponsorBoard";
import { SponsorDescription } from "@/components/sponsor-page/SponsorDescription";
import { Toaster } from "@/components/ui/toaster";
2023-12-25 17:21:39 +08:00
import { Footer } from "@/components/utils/Footer";
import { NavBar } from "@/components/utils/NavBar";
import { SEO } from "@/components/utils/SEO";
import { Config } from "@/data/config";
import { GoHeartFill } from "react-icons/go";
2024-08-12 10:49:21 +08:00
export default function SponsorPage() {
2023-12-25 17:21:39 +08:00
return (
<Page>
<SEO
description={
"If you like my works, I would deeply appreciate your support as a patron. Your contribution not only fuels my creative journey but also allows me to delve deeper into my passion."
}
2024-04-03 22:08:27 +08:00
title={`${Config.SiteTitle} - Sponsor Me`}
2023-12-25 17:21:39 +08:00
/>
2024-04-03 22:08:27 +08:00
<Toaster />
<NavBar />
2023-12-25 17:21:39 +08:00
<ContentContainer>
2024-04-03 22:08:27 +08:00
<div className="md:flex mt-10">
2023-12-25 17:21:39 +08:00
<div className="flex flex-col justify-center md:w-1/2">
2024-08-12 13:39:19 +08:00
<h2 className={`my-5 flex justify-center text-2xl font-bold text-red-500 caption-font`}>
2023-12-25 17:21:39 +08:00
<GoHeartFill className="mx-2 my-auto" />
{"SPONSOR"}
</h2>
2024-04-03 22:08:27 +08:00
<SponsorDescription />
2023-12-25 17:21:39 +08:00
</div>
<div className="md:px-15 md:w-1/2">
2024-04-03 22:08:27 +08:00
<SponsorBoard />
2023-12-25 17:21:39 +08:00
</div>
</div>
</ContentContainer>
<Footer />
</Page>
);
}