"use client" import { IconArrowLeft } from "@tabler/icons-react" import Link from "next/link" import { Button } from "@/components/ui/button" import { Separator } from "@/components/ui/separator" import { SidebarTrigger } from "@/components/ui/sidebar" import { ThemeToggle } from "@/components/theme-toggle" export function SiteHeader({ title, backHref, }: { title: string backHref?: string }) { return (
{backHref && ( )}

{title}

) }