logo alignment fix

This commit is contained in:
RandyJC
2025-12-09 11:54:53 +01:00
parent dba5024207
commit efbea1801c
2 changed files with 23 additions and 25 deletions

View File

@@ -14,13 +14,13 @@ const BrandHeading = ({ className, size = "lg" }: Props) => {
const sizeClass =
size === "lg"
? "text-4xl md:text-5xl"
? "text-4xl md:text-5xl lg:text-6xl"
: "text-2xl md:text-3xl"
return (
<div
className={clsx(
"text-center font-black tracking-tight text-[#f7931e] drop-shadow-lg",
"text-center font-black tracking-tight text-[#f7931e] drop-shadow-lg leading-tight",
sizeClass,
className,
)}