diff --git a/src/app/page.tsx b/src/app/page.tsx index a7a34b8..2b7a3ee 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -19,7 +19,7 @@ export default function LandingPage() { borderRadius="pill" contentWidth="mediumSmall" sizing="largeSizeMediumTitles" - background="blurBottom" + background="circleGradient" cardStyle="gradient-mesh" primaryButtonStyle="diagonal-gradient" secondaryButtonStyle="solid" @@ -42,7 +42,7 @@ export default function LandingPage() { { + text?: string; + fontSize?: number; + fontWeight?: number | string; + letterSpacing?: number; className?: string; } -const SvgTextLogo = memo(function SvgTextLogo({ - logoText, - adjustHeightFactor, - verticalAlign = "top", - className = "", -}) { - const { svgRef, textRef, viewBox, aspectRatio } = useSvgTextLogo(logoText, false, adjustHeightFactor); - - return ( - - ( + ( + { + text = 'Logo Text', + fontSize = 24, + fontWeight = 'bold', + letterSpacing = 2, + className = '', + ...props + }, + ref + ) => { + return ( + - {logoText} - - - ); -}); + + + + + + + + {text} + + + ); + } +); -SvgTextLogo.displayName = "SvgTextLogo"; +SvgTextLogo.displayName = 'SvgTextLogo'; export default SvgTextLogo;