diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 67b724c..f9e1566 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -20,8 +20,7 @@ export default function ContactPage() { const footerColumns = [ { - title: "Company", - items: [ + title: "Company", items: [ { label: "About Us", href: "/about" }, { label: "Our Services", href: "/services" }, { label: "Portfolio", href: "/portfolio" }, @@ -29,8 +28,7 @@ export default function ContactPage() { ], }, { - title: "Services", - items: [ + title: "Services", items: [ { label: "Roof Waterproofing", href: "/services" }, { label: "Basement Waterproofing", href: "/services" }, { label: "Concrete Repair", href: "/services" }, @@ -38,8 +36,7 @@ export default function ContactPage() { ], }, { - title: "Contact", - items: [ + title: "Contact", items: [ { label: "Request a Quote", href: "/contact" }, { label: "Emergency Support", href: "/contact" }, { label: "Privacy Policy", href: "#" }, @@ -55,7 +52,7 @@ export default function ContactPage() { borderRadius="pill" contentWidth="small" sizing="large" - background="aurora" + background="circleGradient" cardStyle="outline" primaryButtonStyle="radial-glow" secondaryButtonStyle="solid" @@ -66,9 +63,7 @@ export default function ContactPage() { brandName="PFC Group" navItems={navigationItems} button={{ - text: "Request a Quote", - href: "/contact", - }} + text: "Request a Quote", href: "/contact"}} animateOnLoad={true} /> @@ -77,7 +72,7 @@ export default function ContactPage() { @@ -48,7 +46,7 @@ export default function HomePage() { (function SvgTextLogo({ - logoText, - adjustHeightFactor, - verticalAlign = "top", - className = "", -}) { - const { svgRef, textRef, viewBox, aspectRatio } = useSvgTextLogo(logoText, false, adjustHeightFactor); - +export const SvgTextLogo: React.FC = ({ + text, + className = '', + textClassName = '', + pathClassName = '', +}) => { return ( + + + + + + - {logoText} + {text} ); -}); +}; -SvgTextLogo.displayName = "SvgTextLogo"; - -export default SvgTextLogo; +export default SvgTextLogo; \ No newline at end of file