-
-
-
- {children}
-
+ > */}
+ {/* Main content */}
+
-
+
+ {/* */}
diff --git a/src/components/AuthPageFooterNotices.tsx b/src/components/AuthPageFooterNotices.tsx
index af9125953..ce557e63d 100644
--- a/src/components/AuthPageFooterNotices.tsx
+++ b/src/components/AuthPageFooterNotices.tsx
@@ -1,24 +1,24 @@
"use client";
-import { useSupporterStatusContext } from "@app/hooks/useSupporterStatusContext";
+// import { useSupporterStatusContext } from "@app/hooks/useSupporterStatusContext";
import { useLicenseStatusContext } from "@app/hooks/useLicenseStatusContext";
import { useTranslations } from "next-intl";
import { build } from "@server/build";
export default function AuthPageFooterNotices() {
const t = useTranslations();
- const { supporterStatus } = useSupporterStatusContext();
+ // const { supporterStatus } = useSupporterStatusContext();
const { isUnlocked, licenseStatus } = useLicenseStatusContext();
return (
<>
- {supporterStatus?.visible && (
+ {/* {supporterStatus?.visible && (
{t("noSupportKey")}
- )}
+ )} */}
{build === "enterprise" && !isUnlocked() ? (
diff --git a/src/components/SupporterMessage.tsx b/src/components/SupporterMessage.tsx
index 6e7aedbc9..def3c062b 100644
--- a/src/components/SupporterMessage.tsx
+++ b/src/components/SupporterMessage.tsx
@@ -9,33 +9,34 @@ export default function SupporterMessage({ tier }: { tier: string }) {
const t = useTranslations();
return (
-
-
{
- // Get the bounding box of the element
- const rect = (
- e.target as HTMLElement
- ).getBoundingClientRect();
+ <>>
+ //
+ //
{
+ // // Get the bounding box of the element
+ // const rect = (
+ // e.target as HTMLElement
+ // ).getBoundingClientRect();
- // Trigger confetti centered on the word "Pangolin"
- confetti({
- particleCount: 100,
- spread: 70,
- origin: {
- x: (rect.left + rect.width / 2) / window.innerWidth,
- y: rect.top / window.innerHeight
- },
- colors: ["#FFA500", "#FF4500", "#FFD700"]
- });
- }}
- >
- Pangolin
-
-
-
- {t("componentsSupporterMessage", { tier: tier })}
-
-
+ // // Trigger confetti centered on the word "Pangolin"
+ // confetti({
+ // particleCount: 100,
+ // spread: 70,
+ // origin: {
+ // x: (rect.left + rect.width / 2) / window.innerWidth,
+ // y: rect.top / window.innerHeight
+ // },
+ // colors: ["#FFA500", "#FF4500", "#FFD700"]
+ // });
+ // }}
+ // >
+ // Pangolin
+ //
+ //
+ //
+ // {t("componentsSupporterMessage", { tier: tier })}
+ //
+ //
);
}