From 4f1434292e67ba526c69d7c1f701c3add62b1cbd Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 13 Mar 2026 00:22:50 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 24fc441..c170d58 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -71,6 +71,7 @@ export default function LandingPage() { imageAlt="Professional hair stylists at work in the Mood Hair Beauty salon" useInvertedBackground={true} mediaAnimation="slide-up" + metricsAnimation="slide-up" /> @@ -139,13 +140,13 @@ export default function LandingPage() { id: "1", title: "A Transformation I'll Never Forget", quote: "The team at Mood Hair Beauty completely transformed my look. Marco understood exactly what I wanted and delivered beyond expectations. The salon atmosphere is so welcoming and luxurious.", name: "Sophia Romano", role: "Business Executive", imageSrc: "http://img.b2bpic.net/free-photo/closeup-portrait-successful-confident-young-woman-start-career-look-determined-get-job-waiting-interview-lean-glass-wall-business-center-smiling-looking-away-satisfied_197531-30572.jpg", imageAlt: "Sophia Romano" }, { - id: "2", title: "The Best Color Work I've Ever Had", quote: "Giulia's expertise with color is incredible. My new highlights look so natural and vibrant. I've been recommending Mood Hair Beauty to all my friends.", name: "Isabella Verdi", role: "Fashion Designer", imageSrc: "/placeholders/placeholder1.webp?_wi=1", imageAlt: "Isabella Verdi" + id: "2", title: "The Best Color Work I've Ever Had", quote: "Giulia's expertise with color is incredible. My new highlights look so natural and vibrant. I've been recommending Mood Hair Beauty to all my friends.", name: "Isabella Verdi", role: "Fashion Designer", imageSrc: "/placeholders/placeholder1.webp", imageAlt: "Isabella Verdi" }, { - id: "3", title: "My Hair Has Never Been Better", quote: "The keratin treatment changed everything for me. My hair is now smooth, shiny, and so easy to manage. The results have lasted beautifully.", name: "Marina Moretti", role: "Photographer", imageSrc: "/placeholders/placeholder1.webp?_wi=2", imageAlt: "Marina Moretti" + id: "3", title: "My Hair Has Never Been Better", quote: "The keratin treatment changed everything for me. My hair is now smooth, shiny, and so easy to manage. The results have lasted beautifully.", name: "Marina Moretti", role: "Photographer", imageSrc: "/placeholders/placeholder1.webp", imageAlt: "Marina Moretti" }, { - id: "4", title: "Perfect for My Wedding Day", quote: "Bella made my bridal hair absolutely stunning. I felt confident and beautiful on my special day. The entire team is professional and caring.", name: "Alessandra Blu", role: "Newlywed", imageSrc: "/placeholders/placeholder1.webp?_wi=3", imageAlt: "Alessandra Blu" + id: "4", title: "Perfect for My Wedding Day", quote: "Bella made my bridal hair absolutely stunning. I felt confident and beautiful on my special day. The entire team is professional and caring.", name: "Alessandra Blu", role: "Newlywed", imageSrc: "/placeholders/placeholder1.webp", imageAlt: "Alessandra Blu" } ]} textboxLayout="default" -- 2.49.1 From a1ac6860e3d651ff5f8d2a28454616e5df4b0630 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 13 Mar 2026 00:22:51 +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..b0b82d4 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; + fontSize?: number; + fontWeight?: number | string; + letterSpacing?: number; + fill?: 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 = '', + fontSize = 32, + fontWeight = 'bold', + letterSpacing = 0, + fill = 'currentColor', +}) => { return ( - {logoText} + {text} ); -}); +}; -SvgTextLogo.displayName = "SvgTextLogo"; - -export default SvgTextLogo; +export default SvgTextLogo; \ No newline at end of file -- 2.49.1