From c7c08b5b6463c445128d76b0cc6473716554a533 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 21:05:29 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 30fa647..1c80cd0 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -52,10 +52,10 @@ export default function LandingPage() { background={{ variant: "radial-gradient" }} mediaItems={[ { imageSrc: "http://img.b2bpic.net/free-photo/terrace-exterior-building_1203-3258.jpg", imageAlt: "Luxury vertical green wall installation" }, - { imageSrc: "http://img.b2bpic.net/free-photo/woman-standing-outside-flower-shop_53876-71005.jpg?_wi=1", imageAlt: "Modern green wall interior design" }, - { imageSrc: "http://img.b2bpic.net/free-photo/closeup-shot-wall-with-moss-plants-growing_181624-23259.jpg?_wi=1", imageAlt: "Premium moss wall installation" }, + { imageSrc: "http://img.b2bpic.net/free-photo/woman-standing-outside-flower-shop_53876-71005.jpg", imageAlt: "Modern green wall interior design" }, + { imageSrc: "http://img.b2bpic.net/free-photo/closeup-shot-wall-with-moss-plants-growing_181624-23259.jpg", imageAlt: "Premium moss wall installation" }, { imageSrc: "http://img.b2bpic.net/free-vector/vintage-botanical-leaf-collection_23-2148090281.jpg", imageAlt: "Exotic plants luxury display" }, - { imageSrc: "http://img.b2bpic.net/free-photo/grass-background_1127-3418.jpg?_wi=1", imageAlt: "Luxury landscaping villa garden" } + { imageSrc: "http://img.b2bpic.net/free-photo/grass-background_1127-3418.jpg", imageAlt: "Luxury landscaping villa garden" } ]} mediaAnimation="slide-up" buttons={[ @@ -124,9 +124,9 @@ export default function LandingPage() { animationType="slide-up" useInvertedBackground={false} products={[ - { id: "1", name: "Luxury Villa Green Wall", price: "Premium Installation", imageSrc: "http://img.b2bpic.net/free-photo/woman-standing-outside-flower-shop_53876-71005.jpg?_wi=2", imageAlt: "Luxury villa green wall installation" }, - { id: "2", name: "Restaurant Vertical Garden", price: "Custom Design", imageSrc: "http://img.b2bpic.net/free-photo/grass-background_1127-3418.jpg?_wi=2", imageAlt: "Restaurant vertical garden design" }, - { id: "3", name: "Office Moss Wall", price: "Corporate Installation", imageSrc: "http://img.b2bpic.net/free-photo/closeup-shot-wall-with-moss-plants-growing_181624-23259.jpg?_wi=2", imageAlt: "Office moss wall installation" } + { id: "1", name: "Luxury Villa Green Wall", price: "Premium Installation", imageSrc: "http://img.b2bpic.net/free-photo/woman-standing-outside-flower-shop_53876-71005.jpg", imageAlt: "Luxury villa green wall installation" }, + { id: "2", name: "Restaurant Vertical Garden", price: "Custom Design", imageSrc: "http://img.b2bpic.net/free-photo/grass-background_1127-3418.jpg", imageAlt: "Restaurant vertical garden design" }, + { id: "3", name: "Office Moss Wall", price: "Corporate Installation", imageSrc: "http://img.b2bpic.net/free-photo/closeup-shot-wall-with-moss-plants-growing_181624-23259.jpg", imageAlt: "Office moss wall installation" } ]} gridVariant="three-columns-all-equal-width" carouselMode="buttons" @@ -265,4 +265,4 @@ export default function LandingPage() { ); -} \ No newline at end of file +} -- 2.49.1 From 89bf9d6a61e82eadf711726509c3caea47a81e44 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 21:05:29 +0000 Subject: [PATCH 2/2] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- .../shared/SvgTextLogo/SvgTextLogo.tsx | 60 ++++++++----------- 1 file changed, 24 insertions(+), 36 deletions(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index f214190..c9e29ec 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"; + text: string; className?: string; + textClassName?: string; + fontSize?: number; + fontWeight?: 'light' | 'normal' | 'bold' | '500' | '600' | '700'; } -const SvgTextLogo = memo(function SvgTextLogo({ - logoText, - adjustHeightFactor, - verticalAlign = "top", - className = "", -}) { - const { svgRef, textRef, viewBox, aspectRatio } = useSvgTextLogo(logoText, false, adjustHeightFactor); - +export const SvgTextLogo = ({ + text, + className = '', + textClassName = '', + fontSize = 32, + fontWeight = 'bold', +}: SvgTextLogoProps) => { return ( - {logoText} + {text} ); -}); - -SvgTextLogo.displayName = "SvgTextLogo"; +}; export default SvgTextLogo; -- 2.49.1