diff --git a/src/app/page.tsx b/src/app/page.tsx index ea96e28..1f83cfc 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -43,11 +43,12 @@ export default function LandingPage() {
(function SvgTextLogo({ - logoText, - adjustHeightFactor, - verticalAlign = "top", - className = "", -}) { - const { svgRef, textRef, viewBox, aspectRatio } = useSvgTextLogo(logoText, false, adjustHeightFactor); - +export const SvgTextLogo: React.FC = ({ + text, + className = '', + dominantBaseline = 'middle', +}) => { return ( - {logoText} + {text} ); -}); +}; -SvgTextLogo.displayName = "SvgTextLogo"; - -export default SvgTextLogo; +export default SvgTextLogo; \ No newline at end of file