mirror of
https://github.com/soconnor0919/beenvoice.git
synced 2025-12-13 17:44:44 -05:00
The changes focus on improving the layout, styling and UX of the business details pages by: - Streamlining the edit page layout - Adding consistent card styling and spacing - Improving header structure and actions - Enhancing content organization with separators - Updating icon styles and colors - Refining typography and spacing
21 lines
558 B
TypeScript
21 lines
558 B
TypeScript
import Link from "next/link";
|
|
import { BusinessForm } from "~/components/forms/business-form";
|
|
import { PageHeader } from "~/components/layout/page-header";
|
|
import { HydrateClient } from "~/trpc/server";
|
|
|
|
export default function NewBusinessPage() {
|
|
return (
|
|
<div className="space-y-6 pb-32">
|
|
<PageHeader
|
|
title="Add Business"
|
|
description="Enter business details below to add a new business."
|
|
variant="gradient"
|
|
/>
|
|
|
|
<HydrateClient>
|
|
<BusinessForm mode="create" />
|
|
</HydrateClient>
|
|
</div>
|
|
);
|
|
}
|