Added some more pizazz to the thank you message

This commit is contained in:
grokdesigns 2025-04-07 14:38:49 -07:00
parent 9ea37789d6
commit b2faeb3c17
No known key found for this signature in database
GPG key ID: 1084CD111FEE75DD
5 changed files with 69 additions and 9 deletions

View file

@ -12,6 +12,7 @@ import SupportStatusProvider from "@app/providers/SupporterStatusProvider";
import { createApiClient, internal, priv } from "@app/lib/api";
import { AxiosResponse } from "axios";
import { IsSupporterKeyVisibleResponse } from "@server/routers/supporterKey";
import SupporterMessage from "./components/SupporterMessage";
export const metadata: Metadata = {
title: `Dashboard - Pangolin`,
@ -114,15 +115,9 @@ export default async function RootLayout({
)}
</div>
{supporterData?.tier && (
<div className="mt-4 text-center">
<div className="relative inline-block px-3 py-2 bg-white/10 backdrop-blur-md border border-white/20 rounded-md shadow-sm max-w-screen-sm mx-auto">
<h2 className="text-lg font-semibold text-transparent bg-clip-text bg-gradient-to-r from-orange-400 via-orange-500 to-orange-600">
Thank you for supporting
Pangolin as a{" "}
{supporterData.tier}!
</h2>
</div>
</div>
<SupporterMessage
tier={supporterData.tier}
/>
)}
</footer>
</SupportStatusProvider>