import { auth } from "~/server/auth"; import { HydrateClient } from "~/trpc/server"; import { Button } from "~/components/ui/button"; import { ClientForm } from "~/components/client-form"; import Link from "next/link"; export default async function NewClientPage() { const session = await auth(); if (!session?.user) { return (
Please sign in to create clients
Enter client details below to add a new client.