From 8fd36e6eae6563f44b68a12e05208ee3e9d00fd1 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 09:22:58 +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 c19b6a5..dde7b5d 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -94,13 +94,13 @@ export default function LandingPage() { useInvertedBackground={true} features={[ { - id: "01", title: "Fully Customizable", description: "Design your own colors, patterns, and styles. Make each piece truly yours with our customization tool.", imageSrc: "http://img.b2bpic.net/free-photo/desk-real-estate-office_23-2147653310.jpg", imageAlt: "Customization options and color selection interface" + id: "01", title: "Fully Customizable", description="Design your own colors, patterns, and styles. Make each piece truly yours with our customization tool.", imageSrc: "http://img.b2bpic.net/free-photo/desk-real-estate-office_23-2147653310.jpg", imageAlt: "Customization options and color selection interface" }, { - id: "02", title: "Premium Quality", description: "Every product is carefully crafted and quality-tested. We use the finest materials for durability and aesthetics.", imageSrc: "http://img.b2bpic.net/free-photo/technological-piece-background_23-2148882601.jpg", imageAlt: "Quality control and precision 3D printing" + id: "02", title: "Premium Quality", description="Every product is carefully crafted and quality-tested. We use the finest materials for durability and aesthetics.", imageSrc: "http://img.b2bpic.net/free-photo/technological-piece-background_23-2148882601.jpg", imageAlt: "Quality control and precision 3D printing" }, { - id: "03", title: "Fast Shipping", description: "Orders ship within 2-3 business days. We can't wait for you to enjoy your L3D creation!", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-holding-box_23-2148943319.jpg", imageAlt: "Fast delivery and quick shipping service" + id: "03", title: "Fast Shipping", description="Orders ship within 2-3 business days. We can't wait for you to enjoy your L3D creation!", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-holding-box_23-2148943319.jpg", imageAlt: "Fast delivery and quick shipping service" } ]} gridVariant="three-columns-all-equal-width" @@ -134,6 +134,7 @@ export default function LandingPage() { Date: Thu, 12 Mar 2026 09:22:59 +0000 Subject: [PATCH 2/2] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- .../shared/SvgTextLogo/SvgTextLogo.tsx | 55 +++++++------------ 1 file changed, 19 insertions(+), 36 deletions(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index f214190..312a1b4 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -1,51 +1,34 @@ -"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; } -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 = '', +}) => { return ( - {logoText} + {text} ); -}); - -SvgTextLogo.displayName = "SvgTextLogo"; +}; export default SvgTextLogo;