Renomeia o projeto em ~40 arquivos (package.json, manifests, layouts, componentes, server actions, emails, Docker, docs, landing page). Adiciona suporte a multi-domínio via PUBLIC_DOMAIN onde o domínio público serve apenas a landing page sem botões de auth. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
55 lines
1014 B
TypeScript
55 lines
1014 B
TypeScript
import Image from "next/image";
|
|
import { cn } from "@/lib/utils/ui";
|
|
import { version } from "@/package.json";
|
|
|
|
interface LogoProps {
|
|
variant?: "full" | "small";
|
|
className?: string;
|
|
showVersion?: boolean;
|
|
}
|
|
|
|
export function Logo({
|
|
variant = "full",
|
|
className,
|
|
showVersion = false,
|
|
}: LogoProps) {
|
|
if (variant === "small") {
|
|
return (
|
|
<Image
|
|
src="/logo_small.png"
|
|
alt="OpenMonetis"
|
|
width={32}
|
|
height={32}
|
|
className={cn("object-contain", className)}
|
|
priority
|
|
/>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<div className={cn("flex items-center gap-1.5 py-4", className)}>
|
|
<Image
|
|
src="/logo_small.png"
|
|
alt="OpenMonetis"
|
|
width={28}
|
|
height={28}
|
|
className="object-contain"
|
|
priority
|
|
/>
|
|
<Image
|
|
src="/logo_text.png"
|
|
alt="OpenMonetis"
|
|
width={100}
|
|
height={32}
|
|
className="object-contain dark:invert"
|
|
priority
|
|
/>
|
|
{showVersion && (
|
|
<span className="text-[10px] font-medium text-muted-foreground">
|
|
v{version}
|
|
</span>
|
|
)}
|
|
</div>
|
|
);
|
|
}
|