import { redirect } from "next/navigation" import { desc, eq } from "drizzle-orm" import { db } from "@/lib/db" import { ai_predictions } from "@/lib/db/schema" import { getSessionUser } from "@/lib/session" import { getEffectiveOwnerId } from "@/lib/account" import { PredictionsClient } from "./predictions-client" export const metadata = { title: "Predictive Analytics" } export default async function PredictionsPage() { const user = await getSessionUser() if (!user) redirect("/login") const ownerId = await getEffectiveOwnerId(user.id) const predictions = await db .select() .from(ai_predictions) .where(eq(ai_predictions.user_id, ownerId)) .orderBy(desc(ai_predictions.created_at)) return }