From 08579eb50c4f91e59630df1f528137372bf096f5 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 07:11:39 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 2021f42..83d9abe 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,6 +1,6 @@ "use client"; -import { Building2, CheckCircle, Leaf, Shield, Sparkles, Wind, Zap } from "lucide-react"; +import { Building2, CheckCircle, Home, Leaf, Shield, Sparkles, Wind, Zap } from "lucide-react"; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; import HeroLogoBillboardSplit from '@/components/sections/hero/HeroLogoBillboardSplit'; import TextAbout from '@/components/sections/about/TextAbout'; @@ -15,7 +15,7 @@ export default function LandingPage() { return ( @@ -78,7 +78,7 @@ export default function LandingPage() { title: "Deep Cleaning", description: "Intensive cleaning including all corners and hard-to-reach areas" }, { - icon: Building2, + icon: Home, title: "Move-Out Cleaning", description: "Complete turnover cleaning for rental apartments and properties" }, { -- 2.49.1 From 14d91585c3052cb725d0ddae4e88a36d471b2b19 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 07:11:39 +0000 Subject: [PATCH 2/2] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- .../shared/SvgTextLogo/SvgTextLogo.tsx | 79 ++++++++++--------- 1 file changed, 43 insertions(+), 36 deletions(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index f214190..4425276 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -1,51 +1,58 @@ -"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; + fillColor?: string; + strokeColor?: string; + strokeWidth?: number; + fontSize?: number; + fontWeight?: number | string; + fontFamily?: string; + letterSpacing?: number; + textAnchor?: 'start' | 'middle' | 'end'; + dominantBaseline?: 'auto' | 'text-bottom' | 'alphabetic' | 'ideographic' | 'middle' | 'central' | 'mathematical' | 'hanging'; } -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 = '', + fillColor = 'currentColor', + strokeColor = 'none', + strokeWidth = 0, + fontSize = 48, + fontWeight = 700, + fontFamily = 'sans-serif', + letterSpacing = 0, + textAnchor = 'middle', + dominantBaseline = 'middle', +}) => { return ( - {logoText} + {text} ); -}); - -SvgTextLogo.displayName = "SvgTextLogo"; +}; export default SvgTextLogo; -- 2.49.1