diff --git a/src/app/page.tsx b/src/app/page.tsx index 1657f66..f6fe6f0 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -28,7 +28,7 @@ export default function LandingPage() { borderRadius="pill" contentWidth="compact" sizing="largeSmall" - background="blurBottom" + background="circleGradient" cardStyle="solid" primaryButtonStyle="gradient" secondaryButtonStyle="radial-glow" @@ -42,13 +42,13 @@ export default function LandingPage() { { + text?: string; + fontSize?: number; + fillColor?: string; className?: string; } -const SvgTextLogo = memo(function SvgTextLogo({ - logoText, - adjustHeightFactor, - verticalAlign = "top", - className = "", -}) { - const { svgRef, textRef, viewBox, aspectRatio } = useSvgTextLogo(logoText, false, adjustHeightFactor); - +const SvgTextLogo: React.FC = ({ + text = 'LOGO', + fontSize = 64, + fillColor = '#000000', + className = '', + ...svgProps +}) => { return ( - {logoText} + {text} ); -}); - -SvgTextLogo.displayName = "SvgTextLogo"; +}; export default SvgTextLogo;