import { isFirstSetup } from "@/lib/setup"; import Image from "next/image"; import { redirect } from "next/navigation"; export default async function Home() { const firstSetup = await isFirstSetup(); if (firstSetup) { redirect('/setup') } return (
Next.js logo
  1. Get started by editing{" "} app/page.tsx .
  2. Save and see your changes instantly.
Vercel logomark Deploy now Read our docs
); }