Files
beenvoice/src/app/dashboard/clients/new/page.tsx
Sean O'Connor a1b40e7a9c Add Turso/Vercel deployment configuration
- Updated database connection to support Turso auth token
- Added vercel.json with bun build configuration
- Updated environment schema for production deployment
- Added new features and components for production readiness
2025-07-12 01:42:43 -04:00

21 lines
591 B
TypeScript

import { HydrateClient } from "~/trpc/server";
import { ClientForm } from "~/components/client-form";
export default async function NewClientPage() {
return (
<div>
<div className="mb-8">
<h1 className="bg-gradient-to-r from-emerald-600 to-teal-600 bg-clip-text text-3xl font-bold text-transparent">
Add Client
</h1>
<p className="mt-1 text-lg text-gray-600">
Enter client details below to add a new client.
</p>
</div>
<HydrateClient>
<ClientForm mode="create" />
</HydrateClient>
</div>
);
}