diff --git a/src/app/page.tsx b/src/app/page.tsx index 896c41f..29634b9 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -25,7 +25,7 @@ export default function LandingPage() { borderRadius="pill" contentWidth="mediumLarge" sizing="mediumLargeSizeLargeTitles" - background="blurBottom" + background="circleGradient" cardStyle="inset" primaryButtonStyle="radial-glow" secondaryButtonStyle="layered" @@ -48,7 +48,7 @@ export default function LandingPage() { (function SvgTextLogo({ - logoText, - adjustHeightFactor, - verticalAlign = "top", - className = "", -}) { - const { svgRef, textRef, viewBox, aspectRatio } = useSvgTextLogo(logoText, false, adjustHeightFactor); - +const SvgTextLogo: React.FC = ({ + text, + width = 200, + height = 60, + fontSize = 32, + fontFamily = 'Arial, sans-serif', + fill = '#000000', + className = '', +}) => { return ( - {logoText} + {text} ); -}); - -SvgTextLogo.displayName = "SvgTextLogo"; +}; export default SvgTextLogo;