import { BotIcon } from "lucide-react";
import Link from "next/link";
import { cn } from "~/lib/utils";
interface LogoProps {
href?: string;
className?: string;
iconClassName?: string;
textClassName?: string;
}
export function Logo({
href = "/",
className,
iconClassName,
textClassName
}: LogoProps) {
return (
HRI
Studio
);
}