From 0caca0d5e3422d68043849a48bdb692cb5e5a217 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 00:18:16 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 89cfd3a..ea6df7c 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -93,6 +93,7 @@ export default function LandingPage() { imageAlt="Our professional cleaning team" useInvertedBackground={false} mediaAnimation="slide-up" + metricsAnimation="slide-up" /> @@ -154,20 +155,17 @@ export default function LandingPage() { animationType="slide-up" plans={[ { - id: "standard", title: "Standard Clean", price: "$149", period: "/visit", imageSrc: "http://img.b2bpic.net/free-photo/smiley-woman-with-rubber-gloves-holding-basket-cleaning-products_23-2148464979.jpg", imageAlt: "Standard cleaning service", button: { text: "Book Standard", href: "contact" }, - features: [ + id: "standard", title: "Standard Clean", price: "$149", period: "/visit", imageSrc: "http://img.b2bpic.net/free-photo/smiley-woman-with-rubber-gloves-holding-basket-cleaning-products_23-2148464979.jpg", imageAlt: "Standard cleaning service", button: { text: "Book Standard", href: "contact" }, features: [ "All main living areas", "Bathrooms and kitchen", "Vacuuming and mopping", "Dusting and surfaces" ] }, { - id: "premium", title: "Premium Clean", price: "$199", period: "/visit", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-walking-with-cleaning-cart_23-2149345543.jpg", imageAlt: "Premium cleaning service", button: { text: "Book Premium", href: "contact" }, - features: [ + id: "premium", title: "Premium Clean", price: "$199", period: "/visit", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-walking-with-cleaning-cart_23-2149345543.jpg", imageAlt: "Premium cleaning service", button: { text: "Book Premium", href: "contact" }, features: [ "Everything in Standard", "Deep baseboards", "Inside appliances", "Window interiors", "Detailed attention to detail" ] }, { - id: "deluxe", title: "Deluxe White Glove", price: "$249", period: "/visit", imageSrc: "http://img.b2bpic.net/free-photo/housewife-woking-home_1157-45521.jpg", imageAlt: "Deluxe white glove service", button: { text: "Book Deluxe", href: "contact" }, - features: [ + id: "deluxe", title: "Deluxe White Glove", price: "$249", period: "/visit", imageSrc: "http://img.b2bpic.net/free-photo/housewife-woking-home_1157-45521.jpg", imageAlt: "Deluxe white glove service", button: { text: "Book Deluxe", href: "contact" }, features: [ "Everything in Premium", "Exterior windows", "Wall spots and marks", "Ceiling fans and fixtures", "Organization assistance" ] } From 5fc11b92c66120489df00a0ac2fc98dd9b51e44b Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 00:18:17 +0000 Subject: [PATCH 2/2] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- .../shared/SvgTextLogo/SvgTextLogo.tsx | 62 ++++++++----------- 1 file changed, 26 insertions(+), 36 deletions(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index f214190..1ee7cab 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -1,51 +1,41 @@ -"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; + width?: number; + height?: number; } -const SvgTextLogo = memo(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 = 80, +}) => { return ( - {logoText} + {text} ); -}); - -SvgTextLogo.displayName = "SvgTextLogo"; +}; export default SvgTextLogo;