Merge version_1 into main #1

Merged
bender merged 2 commits from version_1 into main 2026-03-11 19:30:08 +00:00
2 changed files with 47 additions and 35 deletions

View File

@@ -85,7 +85,7 @@ export default function LandingPage() {
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
buttonAnimation="fade"
buttonAnimation="slide-up"
/>
</div>

View File

@@ -1,51 +1,63 @@
"use client";
import { memo } from "react";
import useSvgTextLogo from "./useSvgTextLogo";
import { cls } from "@/lib/utils";
import React, { useMemo } from 'react';
interface SvgTextLogoProps {
logoText: string;
adjustHeightFactor?: number;
verticalAlign?: "top" | "center";
text: string;
className?: string;
textClassName?: string;
fontSize?: number;
fontWeight?: 'light' | 'normal' | 'medium' | 'semibold' | 'bold' | 'extrabold';
dominantBaseline?: 'auto' | 'baseline' | 'hanging' | 'middle' | 'central';
}
const SvgTextLogo = memo<SvgTextLogoProps>(function SvgTextLogo({
logoText,
adjustHeightFactor,
verticalAlign = "top",
className = "",
}) {
const { svgRef, textRef, viewBox, aspectRatio } = useSvgTextLogo(logoText, false, adjustHeightFactor);
const fontWeightMap: Record<string, number> = {
light: 300,
normal: 400,
medium: 500,
semibold: 600,
bold: 700,
extrabold: 800,
};
export const SvgTextLogo: React.FC<SvgTextLogoProps> = ({
text,
className = '',
textClassName = '',
fontSize = 48,
fontWeight = 'bold',
dominantBaseline = 'middle',
}) => {
const textRef = React.useRef<SVGTextElement>(null);
const [viewBoxWidth, setViewBoxWidth] = React.useState(300);
const numericFontWeight = fontWeightMap[fontWeight] || 700;
React.useEffect(() => {
if (textRef.current) {
const bbox = textRef.current.getBBox();
setViewBoxWidth(Math.max(bbox.width + 20, 300));
}
}, [text]);
return (
<svg
ref={svgRef}
viewBox={viewBox}
className={cls("w-full", className)}
style={{ aspectRatio: aspectRatio }}
preserveAspectRatio="none"
role="img"
aria-label={`${logoText} logo`}
viewBox={`0 0 ${viewBoxWidth} 120`}
className={`w-full h-auto ${className}`}
preserveAspectRatio="xMidYMid meet"
>
<text
ref={textRef}
x="0"
y={verticalAlign === "center" ? "50%" : "0"}
className="font-bold fill-current"
style={{
fontSize: "20px",
letterSpacing: "-0.02em",
dominantBaseline: verticalAlign === "center" ? "middle" : "text-before-edge"
}}
x="50%"
y="60"
textAnchor="middle"
dominantBaseline="central"
fontSize={fontSize}
fontWeight={numericFontWeight}
className={textClassName}
>
{logoText}
{text}
</text>
</svg>
);
});
SvgTextLogo.displayName = "SvgTextLogo";
};
export default SvgTextLogo;