diff --git a/src/app/page.tsx b/src/app/page.tsx index 0692033..3cc1fe8 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -19,7 +19,7 @@ export default function HomePage() { borderRadius="rounded" contentWidth="small" sizing="medium" - background="fluid" + background="circleGradient" cardStyle="gradient-mesh" primaryButtonStyle="diagonal-gradient" secondaryButtonStyle="glass" @@ -35,9 +35,7 @@ export default function HomePage() { { name: "Contact", id: "contact" }, ]} button={{ - text: "Call Now", - href: "tel:+1-479-824-3724", - }} + text: "Call Now", href: "tel:+1-479-824-3724"}} /> @@ -45,20 +43,16 @@ export default function HomePage() { (function SvgTextLogo({ - logoText, - adjustHeightFactor, - verticalAlign = "top", - className = "", -}) { - const { svgRef, textRef, viewBox, aspectRatio } = useSvgTextLogo(logoText, false, adjustHeightFactor); - - return ( - - ( + ( + { + text, + className = "", fontSize = 48, + fontFamily = "system-ui, -apple-system, sans-serif", fontWeight = "bold", fill = "currentColor", textAnchor = "middle", dominantBaseline = "middle"}, + ref + ) => { + return ( + - {logoText} - - - ); -}); + + {text} + + + ); + } +); SvgTextLogo.displayName = "SvgTextLogo";