From 12e8f54232d17cca143f2d136f422f0549d8cf3f Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 13:27:55 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index daa6a8e..7aee82e 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,15 +1,15 @@ "use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; -import HeroBillboard from "@/components/sections/hero/HeroBillboard"; -import TextAbout from "@/components/sections/about/TextAbout"; -import ProductCardOne from "@/components/sections/product/ProductCardOne"; -import MetricCardFourteen from "@/components/sections/metrics/MetricCardFourteen"; -import TestimonialCardTen from "@/components/sections/testimonial/TestimonialCardTen"; -import FeatureCardSixteen from "@/components/sections/feature/FeatureCardSixteen"; -import ContactText from "@/components/sections/contact/ContactText"; -import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import HeroBillboard from '@/components/sections/hero/HeroBillboard'; +import TextAbout from '@/components/sections/about/TextAbout'; +import ProductCardOne from '@/components/sections/product/ProductCardOne'; +import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen'; +import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen'; +import FeatureCardSixteen from '@/components/sections/feature/FeatureCardSixteen'; +import ContactText from '@/components/sections/contact/ContactText'; +import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; import { Heart, Sparkles, Star } from "lucide-react"; export default function LandingPage() { @@ -20,7 +20,7 @@ export default function LandingPage() { borderRadius="soft" contentWidth="medium" sizing="mediumLarge" - background="floatingGradient" + background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="shadow" secondaryButtonStyle="layered" @@ -44,7 +44,7 @@ export default function LandingPage() { Date: Wed, 11 Mar 2026 13:27:56 +0000 Subject: [PATCH 2/2] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- .../shared/SvgTextLogo/SvgTextLogo.tsx | 65 +++++++++---------- 1 file changed, 31 insertions(+), 34 deletions(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index f214190..b08a24c 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -1,51 +1,48 @@ -"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); - +const SvgTextLogo: React.FC = ({ + text, + className = '', + textClassName = '', + animationDuration = 2, +}) => { return ( - {logoText} + {text} + ); -}); - -SvgTextLogo.displayName = "SvgTextLogo"; +}; export default SvgTextLogo; -- 2.49.1