- While we work out the kinks, participating on Frontpage is
- invite-only.
-
-
- Please DM us on Bluesky{" "}
-
- @frontpage.fyi
- {" "}
- and we'll invite you ASAP. Thanks!
-
-
- Here's a list of things that are currently broken and/or
- we're working on:
-
-
-
Comment and post voting
-
Comment replies
-
Comment deletion
-
Allow reading deleted posts and comment threads
-
Rank homepage and comments by hotness
-
-
-
- );
-}
diff --git a/packages/frontpage/app/(app)/layout.tsx b/packages/frontpage/app/(app)/layout.tsx
index 9b3ff0cb..0c200083 100644
--- a/packages/frontpage/app/(app)/layout.tsx
+++ b/packages/frontpage/app/(app)/layout.tsx
@@ -2,7 +2,7 @@ import { deleteAuthCookie, getSession, signOut } from "@/lib/auth";
import Link from "next/link";
import { Suspense } from "react";
import { Button } from "@/lib/components/ui/button";
-import { isAdmin, isBetaUser } from "@/lib/data/user";
+import { isAdmin } from "@/lib/data/user";
import { OpenInNewWindowIcon } from "@radix-ui/react-icons";
import { ThemeToggle } from "./_components/theme-toggle";
import {
@@ -34,7 +34,6 @@ export default async function Layout({
children: React.ReactNode;
}) {
const session = await getSession();
- const isInBeta = await isBetaUser();
return (
@@ -55,37 +54,6 @@ export default async function Layout({
- {session ? (
-
-
- {isInBeta ? (
- <>
- Thanks for joining the beta! There will be bugs! Please the
- report them to{" "}
-
- @frontpage.fyi
-
- >
- ) : (
- <>You're not currently part of the beta>
- )}
-
-
- {!isInBeta && (
-
- )}
-