"use client"; import * as React from "react"; import { Building2, Plus } from "lucide-react"; import Link from "next/link"; import { ModeToggle } from "@/components/mode-toggle"; import { Button } from "@/components/ui/button"; import { Separator } from "@/components/ui/separator"; import { SidebarTrigger } from "@/components/ui/sidebar"; import type { ShellCompany } from "@/app/(dashboard)/dashboard-shell"; export function SiteHeader({ company }: { company?: ShellCompany }) { const showNewJobCta = company?.kind === "clinic"; return (
{company && (
{company.name}
)}
{showNewJobCta && ( )}
); }