From a9f3665d45c32bfaca023d65e33c70bda73db56e Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 19:24:43 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 1567ddb..4c32897 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -8,7 +8,7 @@ import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSp import PricingCardTwo from "@/components/sections/pricing/PricingCardTwo"; import FaqBase from "@/components/sections/faq/FaqBase"; import FooterCard from "@/components/sections/footer/FooterCard"; -import { Code, CreditCard, Github, HelpCircle, Linkedin, Mail, Sparkles, Twitter, Zap } from "lucide-react"; +import { Code, CreditCard, Github, HelpCircle, Linkedin, Mail, Sparkles, Twitter, Zap, Crown } from "lucide-react"; export default function LandingPage() { return ( @@ -18,7 +18,7 @@ export default function LandingPage() { borderRadius="soft" contentWidth="compact" sizing="largeSmallSizeMediumTitles" - background="grid" + background="circleGradient" cardStyle="solid" primaryButtonStyle="radial-glow" secondaryButtonStyle="solid" @@ -41,7 +41,7 @@ export default function LandingPage() { Date: Wed, 11 Mar 2026 19:24:44 +0000 Subject: [PATCH 2/2] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- .../shared/SvgTextLogo/SvgTextLogo.tsx | 72 ++++++++----------- 1 file changed, 28 insertions(+), 44 deletions(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index f214190..2ce632c 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -1,51 +1,35 @@ -"use client"; +import React, { SVGProps } from 'react'; -import { memo } from "react"; -import useSvgTextLogo from "./useSvgTextLogo"; -import { cls } from "@/lib/utils"; - -interface SvgTextLogoProps { - logoText: string; - adjustHeightFactor?: number; - verticalAlign?: "top" | "center"; +interface SvgTextLogoProps extends SVGProps { + text?: string; className?: string; } -const SvgTextLogo = memo(function SvgTextLogo({ - logoText, - adjustHeightFactor, - verticalAlign = "top", - className = "", -}) { - const { svgRef, textRef, viewBox, aspectRatio } = useSvgTextLogo(logoText, false, adjustHeightFactor); - - return ( - - ( + ({ text = 'Logo', className = '', ...props }, ref) => { + return ( + - {logoText} - - - ); -}); + + {text} + + + ); + } +); -SvgTextLogo.displayName = "SvgTextLogo"; +SvgTextLogo.displayName = 'SvgTextLogo'; -export default SvgTextLogo; +export default SvgTextLogo; \ No newline at end of file -- 2.49.1