import Link from "next/link"; import { TutorialStep } from "./tutorial-step"; import { ArrowUpRight } from "lucide-react"; export default function SignUpUserSteps() { return (
    {process.env.VERCEL_ENV === "preview" || process.env.VERCEL_ENV === "production" ? (

    It looks like this App is hosted on Vercel.

    This particular deployment is "{process.env.VERCEL_ENV}" {" "} on https://{process.env.VERCEL_URL} .

    You will need to{" "} update your Supabase project {" "} with redirect URLs based on your Vercel deployment URLs.

    Redirect URLs Docs
    ) : null}

    Head over to the{" "} Sign up {" "} page and sign up your first user. It's okay if this is just you for now. Your awesome idea will have plenty of users later!

); }