diff --git a/src/app/page.tsx b/src/app/page.tsx index bcc4278..2fc4da6 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -27,6 +27,7 @@ import { Facebook, Instagram, Linkedin, + Shield, } from "lucide-react"; export default function LandingPage() { @@ -37,7 +38,7 @@ export default function LandingPage() { borderRadius="pill" contentWidth="medium" sizing="medium" - background="aurora" + background="circleGradient" cardStyle="layered-gradient" primaryButtonStyle="gradient" secondaryButtonStyle="glass" @@ -53,7 +54,8 @@ export default function LandingPage() { { name: "Contact", id: "contact" }, ]} button={{ - text: "Call Now: 07588 883183", href: "tel:07588883183"}} + text: "Call Now: 07588 883183", href: "tel:07588883183" + }} animateOnLoad={true} /> @@ -62,7 +64,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 = "", textClassName = "", width = 200, + height = 100, +}) => { return ( - {logoText} + {text} ); -}); - -SvgTextLogo.displayName = "SvgTextLogo"; +}; export default SvgTextLogo;