import Link from "next/link";
import { BRAND_NAME } from "@/lib/branding";
type Props = {
href?: string;
size?: "sm" | "md";
/** Small Beta mark at top-right of the wordmark (public marketing surfaces). */
beta?: boolean;
};
export function Logo({ href = "/", size = "md", beta = false }: Props) {
const textSize = size === "sm" ? "text-xl" : "text-2xl";
const betaSize = size === "sm" ? "text-[0.5rem]" : "text-[0.55rem]";
const content = (
Songs
2VID
{beta ? (
Beta
) : null}
);
const label = beta ? `${BRAND_NAME} Beta` : BRAND_NAME;
if (href) {
return (
{content}
);
}
return (
{content}
);
}