Skip to content

Commit

Permalink
[ECO-2797] Update community-projects.json with an example and turn …
Browse files Browse the repository at this point in the history
…off feature gate (#571)
  • Loading branch information
xbtmatt authored Feb 7, 2025
1 parent d4e99a8 commit 15a9e5b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 17 deletions.
12 changes: 3 additions & 9 deletions src/typescript/frontend/public/community-projects.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,8 @@
[
{
"description": "Get ready to engage in a magical conversation with draco8, where your words could lead to exciting rewards \ud83c\udf1f\nEngage in meaningful and favorable conversations with draco8 to earn additional \ud83c\udf51",
"description": "Get ready to have some fun with emojis. This is a recursive example!",
"id": "0",
"name": "draco8",
"url": "https://waifus-jade.vercel.app/"
},
{
"description": "Receive \ud83e\udde7 by interacting with the community on hongbao chat. Most prosperous holders are ranked on a leaderboard!",
"id": "1",
"name": "hongbao chat",
"url": "https://hongbao-chat.vercel.app/"
"name": "emojicoin",
"url": "https://emojicoin.fun"
}
]
9 changes: 1 addition & 8 deletions src/typescript/frontend/src/app/cult/page.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
import { type Metadata } from "next";
import CultClientPage from "components/pages/cult/CultClientPage";
import LaunchingPage from "app/launching/page";
import { VERCEL_TARGET_ENV } from "@sdk/const";

export const dynamic = "force-static";

Expand All @@ -11,10 +9,5 @@ export const metadata: Metadata = {
};

export default function CultPage() {
// Temporarily disable the page in non-development/non-preview modes and show the Launching Soon page instead.
return VERCEL_TARGET_ENV === "development" || VERCEL_TARGET_ENV === "preview" ? (
<CultClientPage />
) : (
<LaunchingPage />
);
return <CultClientPage />;
}

0 comments on commit 15a9e5b

Please sign in to comment.