import Link from "next/link";
import { BRAND_NAME } from "@/lib/branding";
type Props = {
href?: string;
size?: "sm" | "md" | "lg";
};
export function Logo({ href = "/", size = "md" }: Props) {
const textSize = size === "sm" ? "text-xl" : size === "lg" ? "text-3xl" : "text-2xl";
const content = (
Songs
2VID
);
const label = BRAND_NAME;
if (href) {
return (
{content}
);
}
return (
{content}
);
}