From 57984d5d231d3aed0f41e46f18181b18e7662570 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 04:24:52 +0000 Subject: [PATCH 1/3] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 26 +++++++++----------------- 1 file changed, 9 insertions(+), 17 deletions(-) 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() { Date: Wed, 11 Mar 2026 04:24:52 +0000 Subject: [PATCH 2/3] Update src/app/page.tsx --- src/app/page.tsx | 97 +++++++++++------------------------------------- 1 file changed, 21 insertions(+), 76 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 5e4dbeb..4feb0b6 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -20,7 +20,7 @@ export default function HomePage() { borderRadius="pill" contentWidth="small" sizing="large" - background="aurora" + background="circleGradient" cardStyle="outline" primaryButtonStyle="radial-glow" secondaryButtonStyle="solid" @@ -37,9 +37,7 @@ export default function HomePage() { { name: "Contact", id: "/contact" }, ]} button={{ - text: "Request a Quote", - href: "/contact", - }} + text: "Request a Quote", href: "/contact"}} animateOnLoad={true} /> @@ -48,7 +46,7 @@ export default function HomePage() { Date: Wed, 11 Mar 2026 04:24:53 +0000 Subject: [PATCH 3/3] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- .../shared/SvgTextLogo/SvgTextLogo.tsx | 71 +++++++++---------- 1 file changed, 34 insertions(+), 37 deletions(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index f214190..71c718c 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -1,51 +1,48 @@ -"use client"; - -import { memo } from "react"; -import useSvgTextLogo from "./useSvgTextLogo"; -import { cls } from "@/lib/utils"; +import React from 'react'; interface SvgTextLogoProps { - logoText: string; - adjustHeightFactor?: number; - verticalAlign?: "top" | "center"; + text: string; className?: string; + textClassName?: string; + pathClassName?: string; } -const SvgTextLogo = memo(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 -- 2.49.1