import FormShell from "@/components/app/FormShell"
import PageHeader from "@/components/app/PageHeader"
import PageShell from "@/components/app/PageShell"
import { Button } from "@/components/ui/button"
import BranchForm from "@/features/branches/components/BranchForm"

export default function CreateBranchPage() {
  return (
    <PageShell>
      <PageHeader
        title="Add Company"
        actions={
          <Button asChild variant="secondary">
            <a href="/branches">Back</a>
          </Button>
        }
      />
      <FormShell>
        <BranchForm />
      </FormShell>
    </PageShell>
  )
}
