diff --git a/src/app/page.tsx b/src/app/page.tsx index 1d00ccd..86c3271 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -51,6 +51,7 @@ export default function LandingPage() { (function SvgTextLogo({ - logoText, - adjustHeightFactor, - verticalAlign = "top", - className = "", -}) { - const { svgRef, textRef, viewBox, aspectRatio } = useSvgTextLogo(logoText, false, adjustHeightFactor); +export default function SvgTextLogo({ + text, + className = '', + fontSize = 24, + fontWeight = 700, +}: SvgTextLogoProps) { + const width = text.length * fontSize * 0.6; + const height = fontSize * 1.5; return ( - {logoText} + {text} ); -}); - -SvgTextLogo.displayName = "SvgTextLogo"; - -export default SvgTextLogo; +}