2024-01-15 11:06:49 +08:00
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 / >
2024-01-09 16:48:48 +08:00
< NavBar / >
2023-12-25 17:21:39 +08:00
< ContentContainer >
2024-08-14 12:57:22 +08:00
< div className = "mt-10 md:flex" >
2023-12-25 17:21:39 +08:00
< div className = "flex flex-col justify-center md:w-1/2" >
2024-08-14 12:57:22 +08:00
< h2 className = { "caption-font my-5 flex justify-center font-bold text-2xl text-red-500" } >
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 >
2024-08-14 12:57:22 +08:00
< div className = "md:w-1/2 md:px-15" >
2024-04-03 22:08:27 +08:00
< SponsorBoard / >
2023-12-25 17:21:39 +08:00
< / div >
< / div >
< / ContentContainer >
< Footer / >
< / Page >
) ;
}