Files
sofa/app/page.tsx
T
jake 73b07f5ff6 Refactor auth session handling and server actions across app
- Overhaul `lib/auth/server.ts` and `lib/auth/session.ts`; update all API
  routes and server actions to use the revised session pattern
- Refactor server actions (settings, titles, watchlist, setup) for
  consistency with new auth layer
- Extract `SetupForm` into its own client component with `useActionState`,
  animated steps, and copyable env snippets
- Move landing page redirect logic into `app/page.tsx`; slim down
  `LandingPage` component
- Add `proxy.ts` for local dev proxying
- Minor cleanup to `NavBar`, `MobileTabBar`, and `TitleCard`
2026-03-06 17:05:49 -05:00

45 lines
1.6 KiB
TypeScript

import { redirect } from "next/navigation";
import { connection } from "next/server";
import { LandingPage } from "@/components/landing-page";
import { getSession } from "@/lib/auth/session";
import { isTmdbConfigured } from "@/lib/config";
import { getUserCount, isRegistrationOpen } from "@/lib/services/settings";
import { tmdbImageUrl } from "@/lib/tmdb/image";
// Well-known TMDB poster paths for the background collage
const posterPaths = [
"/qJ2tW6WMUDux911r6m7haRef0WH.jpg", // The Dark Knight
"/gEU2QniE6E77NI6lCU6MxlNBvIx.jpg", // Interstellar
"/rCzpDGLbOoPwLjy3OAm5NUPOTrC.jpg", // The Lord of the Rings
"/pB8BM7pdSp6B6Ih7QZ4DrQ3PmJK.jpg", // Fight Club
"/d5NXSklXo0qyIYkgV94XAgMIckC.jpg", // Dune
"/ztkUQFLlC19CCMYHW9o1zWhJRNq.jpg", // Breaking Bad
"/7DJKHzAi83BmQrWLrYYOqcoKfhR.jpg", // The Office
"/u3bZgnGQ9T01sWNhyveQz0wH0Hl.jpg", // Stranger Things
"/ggFHVNu6YYI5L9pCfOacjizRGt.jpg", // Back to the Future
"/q6y0Go1tsGEsmtFryDOJo3dEmqu.jpg", // The Shawshank Redemption
"/pIkRyD18kl4FhoCNQuWxWu5cBLM.jpg", // Inception
"/saHP97rTPS5eLmrLQEcANmKrsFl.jpg", // Forrest Gump
];
const posterUrls = posterPaths
.map((p) => tmdbImageUrl(p, "w300"))
.filter(Boolean) as string[];
export default async function Home() {
await connection();
const session = await getSession();
if (session?.user) redirect("/dashboard");
if (!isTmdbConfigured()) redirect("/setup");
const userCount = getUserCount();
return (
<LandingPage
posterUrls={posterUrls}
freshInstall={userCount === 0}
registrationOpen={isRegistrationOpen()}
/>
);
}