diff --git a/src/app/page.tsx b/src/app/page.tsx index dba059b..dfabbea 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -41,6 +41,7 @@ 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 = 'Webild', + width = 200, + height = 50, + className = '', +}) => { return ( - {logoText} + {text} ); -}); - -SvgTextLogo.displayName = "SvgTextLogo"; +}; export default SvgTextLogo;