From c58ae3bbd9db3c13f52103be024139cec8408a42 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 14:12:10 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 1b28523..644a496 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -20,7 +20,7 @@ export default function LandingPage() { borderRadius="pill" contentWidth="medium" sizing="mediumLargeSizeMediumTitles" - background="blurBottom" + background="circleGradient" cardStyle="solid" primaryButtonStyle="gradient" secondaryButtonStyle="radial-glow" @@ -49,7 +49,7 @@ export default function LandingPage() { tag="ERP Transformation" tagIcon={Sparkles} tagAnimation="slide-up" - background={{ variant: "blurBottom" }} + background={{ variant: "canvas-reveal" }} imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Aqdvf0VrBXSCZYRvORMhLflFIb/a-modern-3d-isometric-view-of-an-odoo-er-1773324644331-c17abff6.png" imageAlt="3D Odoo ERP Dashboard with workflow automation" buttons={[ @@ -167,8 +167,8 @@ export default function LandingPage() { Date: Thu, 12 Mar 2026 14:12:10 +0000 Subject: [PATCH 2/2] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- .../shared/SvgTextLogo/SvgTextLogo.tsx | 57 +++++++------------ 1 file changed, 22 insertions(+), 35 deletions(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index f214190..19cb9fb 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -1,51 +1,38 @@ -"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; + textClassName?: string; + animationDuration?: number; } -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 = '', + textClassName = '', + animationDuration = 3, +}) => { return ( - {logoText} + {text} ); -}); +}; -SvgTextLogo.displayName = "SvgTextLogo"; - -export default SvgTextLogo; +export default SvgTextLogo; \ No newline at end of file -- 2.49.1