import Link from "next/link"; import { ThemeToggle } from "@/components/ThemeToggle"; import { brand } from "@/content/ebook"; type SiteHeaderProps = { ctaHref?: string; ctaLabel?: string; showBack?: boolean; }; export function SiteHeader({ ctaHref = "/read", ctaLabel = "Start reading", showBack = false, }: SiteHeaderProps) { return (
{showBack ? ( Home ) : null} {brand.name} {brand.tagline}
{ctaLabel}
); }