diff --git a/src/app/page.tsx b/src/app/page.tsx index c1b7b90..81e8ed6 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -18,7 +18,7 @@ export default function LandingPage() { borderRadius="rounded" contentWidth="compact" sizing="largeSmallSizeLargeTitles" - background="blurBottom" + background="circleGradient" cardStyle="gradient-mesh" primaryButtonStyle="double-inset" secondaryButtonStyle="layered" @@ -41,7 +41,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, + className = '', + fontSize = 48, + letterSpacing = 2, + fontWeight = 'bold', + fill = 'currentColor', + opacity = 1, +}) => { + const textLength = text.length; + const estimatedWidth = textLength * (fontSize * 0.6) + letterSpacing * (textLength - 1); + const estimatedHeight = fontSize * 1.2; return ( - {logoText} + {text} ); -}); - -SvgTextLogo.displayName = "SvgTextLogo"; +}; export default SvgTextLogo;