From 33a9e9cebf5346f1110684242674de141837f590 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 17:03:48 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 78c830c..8f200cc 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -100,10 +100,9 @@ export default function LandingPage() { tag="Services" title="Comprehensive Design & Print Solutions" description="We offer a complete range of services tailored to elevate your brand and bring your vision to life through strategic design and quality printing." - textboxLayout="default" useInvertedBackground={true} mediaPosition="left" - imageSrc="http://img.b2bpic.net/free-vector/flat-design-business-stationery-template_23-2151115590.jpg?_wi=1" + imageSrc="http://img.b2bpic.net/free-vector/flat-design-business-stationery-template_23-2151115590.jpg" imageAlt="Professional branding and design work examples" mediaAnimation="blur-reveal" accordionItems={[ @@ -145,7 +144,7 @@ export default function LandingPage() { products={[ { id: "1", brand: "Tech Startup", name: "Complete Branding System", price: "Brand Identity", rating: 5, - reviewCount: "15+ Projects", imageSrc: "http://img.b2bpic.net/free-vector/flat-design-business-stationery-template_23-2151115590.jpg?_wi=2", imageAlt: "Professional branding portfolio work" + reviewCount: "15+ Projects", imageSrc: "http://img.b2bpic.net/free-vector/flat-design-business-stationery-template_23-2151115590.jpg", imageAlt: "Professional branding portfolio work" }, { id: "2", brand: "Restaurant Group", name: "Print Materials & Signage", price: "Print Services", rating: 5, -- 2.49.1 From fab5e0c9ce154ca19179332e2c304d7b3c661884 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 17:03:49 +0000 Subject: [PATCH 2/2] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- .../shared/SvgTextLogo/SvgTextLogo.tsx | 63 ++++++++----------- 1 file changed, 27 insertions(+), 36 deletions(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index f214190..6aec73e 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -1,51 +1,42 @@ -"use client"; - -import { memo } from "react"; -import useSvgTextLogo from "./useSvgTextLogo"; -import { cls } from "@/lib/utils"; +import React, { CSSProperties } from 'react'; interface SvgTextLogoProps { - logoText: string; - adjustHeightFactor?: number; - verticalAlign?: "top" | "center"; + text: string; + fontSize?: number; + fontWeight?: 'bold' | 'normal' | 'semibold'; + fill?: string; className?: string; + style?: CSSProperties; } -const SvgTextLogo = memo(function SvgTextLogo({ - logoText, - adjustHeightFactor, - verticalAlign = "top", - className = "", -}) { - const { svgRef, textRef, viewBox, aspectRatio } = useSvgTextLogo(logoText, false, adjustHeightFactor); - +const SvgTextLogo: React.FC = ({ + text, + fontSize = 48, + fontWeight = 'bold', + fill = 'currentColor', + className = '', + style = {}, +}) => { return ( - {logoText} + {text} ); -}); +}; -SvgTextLogo.displayName = "SvgTextLogo"; - -export default SvgTextLogo; +export default SvgTextLogo; \ No newline at end of file -- 2.49.1