From 41930710c8a4e1aeeba2a815713a23ff9af640d5 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 17:32:18 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 6c29a5d..7b8861b 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -201,6 +201,7 @@ export default function HomePage() { tagAnimation="slide-up" textboxLayout="default" useInvertedBackground={false} + names={["Microsoft", "Google", "Amazon", "Apple", "Netflix", "Spotify", "Uber", "Airbnb"]} logos={[ "http://img.b2bpic.net/free-photo/programming-background-with-html-text_23-2150040419.jpg", "http://img.b2bpic.net/free-photo/laptop-displaying-business-analytics_482257-115250.jpg", "http://img.b2bpic.net/free-vector/technology-logo-background_23-2148156132.jpg", "http://img.b2bpic.net/free-vector/laptop-background-with-elements-flat-design_23-2147634077.jpg", "http://img.b2bpic.net/free-vector/media-icons-set_98292-970.jpg", "http://img.b2bpic.net/free-vector/social-media-logo-collection_23-2148153516.jpg", "http://img.b2bpic.net/free-vector/taxi-app-interface-concept_23-2148496309.jpg", "http://img.b2bpic.net/free-vector/flat-labels-collection-hotel-accommodation_23-2150313253.jpg"]} speed={40} @@ -236,7 +237,7 @@ export default function HomePage() { { id: "5", title: "How long is my enrollment valid?", content: "Your enrollment is valid indefinitely. Once you enroll and pay the fee, you have lifetime access to the platform and all its features."}, { - id: "6", title: "Is my personal information secure?", content: "Absolutely. We use enterprise-grade encryption and comply with all data protection regulations. Your information is safe with us."}, + id: "6", title: "Is my personal information secure?", content: "Absolutely. We use enterprise-grade encryption and comply with all data protection regulations. Your information is safe with us."} ]} ariaLabel="FAQ section" /> -- 2.49.1 From 3ada50a7da4f518b60234478410815f8e6897a56 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 17:32:18 +0000 Subject: [PATCH 2/2] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- .../shared/SvgTextLogo/SvgTextLogo.tsx | 53 ++++++------------- 1 file changed, 16 insertions(+), 37 deletions(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index f214190..1e3ec01 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -1,51 +1,30 @@ -"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; } -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 = '' }) => { return ( - {logoText} + {text} ); -}); +}; -SvgTextLogo.displayName = "SvgTextLogo"; - -export default SvgTextLogo; +export default SvgTextLogo; \ No newline at end of file -- 2.49.1