diff --git a/src/app/page.tsx b/src/app/page.tsx index acd0430..f10d7cd 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -15,11 +15,11 @@ export default function LandingPage() { return ( (function SvgTextLogo({ - logoText, - adjustHeightFactor, - verticalAlign = "top", - className = "", -}) { - const { svgRef, textRef, viewBox, aspectRatio } = useSvgTextLogo(logoText, false, adjustHeightFactor); - +const SvgTextLogo: React.FC = ({ + text, + fontSize = 32, + fontWeight = 700, + fill = '#000000', + className = '', +}) => { return ( - {logoText} + {text} ); -}); +}; -SvgTextLogo.displayName = "SvgTextLogo"; - -export default SvgTextLogo; +export default SvgTextLogo; \ No newline at end of file