From b3a987c14173f40f87eddec934f9f3735c1fdb3a Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 05:31:09 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 5d05bc4..c0a1263 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -68,7 +68,7 @@ export default function LandingPage() { imageSrc="http://img.b2bpic.net/free-photo/man-studio-creates-leather-ware_1157-33217.jpg" imageAlt="Michelle's jewelry studio workspace showcasing fine craftsmanship" mediaAnimation="slide-up" - metricsAnimation="entrance-slide" + metricsAnimation="slide-up" useInvertedBackground={false} ariaLabel="About section - Michelle's permanent jewelry studio" /> @@ -119,7 +119,7 @@ export default function LandingPage() { src: "http://img.b2bpic.net/free-photo/elegant-beautiful-blonde-woman-white-stylish-blouse-pearl-jewelry-smiles-widely-looks-away-sits-by-little-table-street-cafe_197531-23208.jpg", alt: "Woman jewelry appointment professional confident" } ]} - ratingAnimation="entrance-slide" + ratingAnimation="slide-up" avatarsAnimation="slide-up" useInvertedBackground={true} ariaLabel="Testimonials section - Client reviews" @@ -130,7 +130,7 @@ export default function LandingPage() { Date: Thu, 12 Mar 2026 05:31:10 +0000 Subject: [PATCH 2/2] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- .../shared/SvgTextLogo/SvgTextLogo.tsx | 62 ++++++++----------- 1 file changed, 25 insertions(+), 37 deletions(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index f214190..5c53c0d 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -1,51 +1,39 @@ -"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"; className?: string; + textColor?: 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 = ({ + className = '', + textColor = '#000000', + width = 200, + height = 60, +}) => { return ( - {logoText} + Logo ); -}); +}; -SvgTextLogo.displayName = "SvgTextLogo"; - -export default SvgTextLogo; +export default SvgTextLogo; \ No newline at end of file -- 2.49.1