From 270daddf39c92ecd748693303ee688c0b00b9b13 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 07:29:36 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 65ea464..f508c66 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -53,7 +53,7 @@ export default function LandingPage() { ]} buttonAnimation="slide-up" layoutOrder="default" - imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3An2MZlmDejglYqtIivQki9H380/a-sleek-ai-platform-dashboard-interface--1773214075706-e7172af1.png?_wi=1" + imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3An2MZlmDejglYqtIivQki9H380/a-sleek-ai-platform-dashboard-interface--1773214075706-e7172af1.png" imageAlt="AI platform dashboard showcasing real-time analytics and machine learning insights" mediaAnimation="opacity" frameStyle="browser" @@ -75,6 +75,7 @@ export default function LandingPage() { useInvertedBackground={false} tagAnimation="blur-reveal" mediaAnimation="slide-up" + metricsAnimation="slide-up" /> @@ -182,7 +183,7 @@ export default function LandingPage() { ] }, { - id: "enterprise", title: "Enterprise", price: "Custom", period: "/contact", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3An2MZlmDejglYqtIivQki9H380/a-sleek-ai-platform-dashboard-interface--1773214075706-e7172af1.png?_wi=2", imageAlt: "Enterprise plan visualization", button: { text: "Contact Sales", href: "#contact" }, + id: "enterprise", title: "Enterprise", price: "Custom", period: "/contact", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3An2MZlmDejglYqtIivQki9H380/a-sleek-ai-platform-dashboard-interface--1773214075706-e7172af1.png", imageAlt: "Enterprise plan visualization", button: { text: "Contact Sales", href: "#contact" }, features: [ "Unlimited AI predictions", "Dedicated account team", "Custom model training", "24/7 phone support", "99.99% uptime SLA", "Security and compliance customization" ] From f5fb1a2f834ef20bbfdec516f7f220006af44b0a Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 07:29:36 +0000 Subject: [PATCH 2/2] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- .../shared/SvgTextLogo/SvgTextLogo.tsx | 58 +++++++------------ 1 file changed, 22 insertions(+), 36 deletions(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index f214190..b8b3e78 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -1,51 +1,37 @@ -"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; + textAnchor?: 'start' | 'middle' | 'end'; + dominantBaseline?: 'auto' | 'text-bottom' | 'alphabetic' | 'ideographic' | 'middle' | 'central' | 'hanging' | 'mathematical'; } -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 = '', + textAnchor = 'middle', + dominantBaseline = 'middle' +}) => { return ( - {logoText} + {text} ); -}); - -SvgTextLogo.displayName = "SvgTextLogo"; +}; export default SvgTextLogo;