diff --git a/src/app/page.tsx b/src/app/page.tsx index 5294802..49f2f17 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -18,7 +18,7 @@ export default function LandingPage() { borderRadius="soft" contentWidth="smallMedium" sizing="medium" - background="noise" + background="circleGradient" cardStyle="outline" primaryButtonStyle="double-inset" secondaryButtonStyle="layered" @@ -43,13 +43,13 @@ 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, + className = '', + fontSize = 32, + fontFamily = 'Arial, sans-serif', + fontWeight = 'bold', + fill = '#000000', + letterSpacing = 0, +}) => { + const textWidth = text.length * (fontSize * 0.6); + const viewBoxWidth = textWidth + 20; + const viewBoxHeight = fontSize + 20; return ( - {logoText} + {text} ); -}); +}; -SvgTextLogo.displayName = "SvgTextLogo"; - -export default SvgTextLogo; +export default SvgTextLogo; \ No newline at end of file