From 050e077041dd57a7f05910c82eb86b2b4af99c9e Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 13 Mar 2026 10:22:35 +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 b7dd673..b38c0a8 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,7 +2,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; -import HeroTextImage from '@/components/sections/hero/HeroTextImage'; +import HeroTextImage from '@/components/sections/hero/HeroTextImage/HeroTextImage'; import FeatureBento from '@/components/sections/feature/FeatureBento'; import FeatureHoverPattern from '@/components/sections/feature/featureHoverPattern/FeatureHoverPattern'; import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout'; @@ -183,6 +183,7 @@ export default function LandingPage() { imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3At1dW2h2I6yhS86UCxOf9ERDU2/a-professional-team-of-ai-engineers-and--1773397235383-e7bfd4f0.png" imageAlt="AI Team Collaboration" mediaAnimation="slide-up" + metricsAnimation="slide-up" useInvertedBackground={false} /> -- 2.49.1 From 2882bf6b76cab134752ed363bace97002a77aab6 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 13 Mar 2026 10:22:36 +0000 Subject: [PATCH 2/2] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- .../shared/SvgTextLogo/SvgTextLogo.tsx | 51 ++++++------------- 1 file changed, 15 insertions(+), 36 deletions(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index f214190..5df60de 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); - +const SvgTextLogo: React.FC = ({ text, className = '' }) => { return ( - {logoText} + {text} ); -}); - -SvgTextLogo.displayName = "SvgTextLogo"; +}; export default SvgTextLogo; -- 2.49.1