From b21a4d20e37e9140d4e49ff41f8d3558dec40cc7 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 14:03:37 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 3b46441..141319e 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -9,7 +9,7 @@ import MetricCardThree from '@/components/sections/metrics/MetricCardThree'; import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve'; import ContactSplit from '@/components/sections/contact/ContactSplit'; import FooterSimple from '@/components/sections/footer/FooterSimple'; -import { Calendar, CheckSquare, CheckCircle, FileText, Key, MessageCircle, Phone, ShoppingCart, Star, Shield, ThumbsUp } from 'lucide-react'; +import { Calendar, CheckSquare, CheckCircle, FileText, Key, MessageCircle, Phone, ShoppingCart, Star, Shield, ThumbsUp, Camera } from 'lucide-react'; export default function LandingPage() { return ( -- 2.49.1 From 51061f7d5794820492c30812fa9e1a4f0edb6f15 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 14:03:38 +0000 Subject: [PATCH 2/2] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- .../shared/SvgTextLogo/SvgTextLogo.tsx | 49 +++---------------- 1 file changed, 7 insertions(+), 42 deletions(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index f214190..658bd1e 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -1,51 +1,16 @@ -"use client"; - -import { memo } from "react"; -import useSvgTextLogo from "./useSvgTextLogo"; -import { cls } from "@/lib/utils"; - -interface SvgTextLogoProps { - logoText: string; - adjustHeightFactor?: number; - verticalAlign?: "top" | "center"; - className?: string; -} - -const SvgTextLogo = memo(function SvgTextLogo({ - logoText, - adjustHeightFactor, - verticalAlign = "top", - className = "", -}) { - const { svgRef, textRef, viewBox, aspectRatio } = useSvgTextLogo(logoText, false, adjustHeightFactor); +import React from 'react'; +export const SvgTextLogo = React.forwardRef & { text: string }>(({ text, ...props }, ref) => { return ( - + - {logoText} + {text} ); }); -SvgTextLogo.displayName = "SvgTextLogo"; - -export default SvgTextLogo; +SvgTextLogo.displayName = 'SvgTextLogo'; -- 2.49.1