From b7cd810be5e76dced7b0bf457edb290d5596db9e Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 21:55:57 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/app/page.tsx b/src/app/page.tsx index 1e48cc7..eee040a 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -79,6 +79,7 @@ export default function LandingPage() { imageSrc="http://img.b2bpic.net/free-psd/isolated-nail-care-routine_23-2150755774.jpg" imageAlt="PAINT Nails luxury salon interior" mediaAnimation="slide-up" + metricsAnimation="slide-up" useInvertedBackground={false} /> @@ -143,6 +144,9 @@ export default function LandingPage() { description="Recognized by London's leading lifestyle and fashion publications" textboxLayout="default" useInvertedBackground={false} + names={[ + "Vogue", "Tatler", "Time Out", "Harper's Bazaar", "Elle", "British Vogue", "Grazia", "InStyle" + ]} logos={[ "http://img.b2bpic.net/free-vector/elegant-black-f-logo_23-2149480962.jpg", "http://img.b2bpic.net/free-vector/pack-black-green-business-cover-template-with-golden-lines_1017-54656.jpg", "http://img.b2bpic.net/free-vector/2021-music-event-poster-template-concept_23-2148589376.jpg", "http://img.b2bpic.net/free-vector/latest-news-banner-collection_23-2148136799.jpg", "http://img.b2bpic.net/free-photo/medium-shot-young-woman-single-s-day-banner_23-2149520230.jpg", "http://img.b2bpic.net/free-photo/pretty-woman-wears-golden-pendant-reading-newspaper-while-waiting-friend-street_197531-3275.jpg", "http://img.b2bpic.net/free-vector/photography-logo-abstract-style_1057-1789.jpg", "http://img.b2bpic.net/free-vector/set-logo-badge-design-vectors_53876-91556.jpg" ]} -- 2.49.1 From edec8102206dfb731e6d9e0f426b8eff1cbbef68 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 21:55:57 +0000 Subject: [PATCH 2/2] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- .../shared/SvgTextLogo/SvgTextLogo.tsx | 54 +++++++------------ 1 file changed, 18 insertions(+), 36 deletions(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index f214190..9bb89ba 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -1,51 +1,33 @@ -"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; + 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); - +export const SvgTextLogo: React.FC = ({ + text, + className = '', + dominantBaseline = 'middle', +}) => { return ( - {logoText} + {text} ); -}); - -SvgTextLogo.displayName = "SvgTextLogo"; +}; export default SvgTextLogo; -- 2.49.1