From 9d79198ad44762c6a9bc60b069016265a85c1c6d Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 13 Mar 2026 09:51:41 +0000 Subject: [PATCH 1/3] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 137 +++++++++------------------------------ 1 file changed, 30 insertions(+), 107 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 2759bbd..8d7f916 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -7,7 +7,7 @@ import PricingCardEight from "@/components/sections/pricing/PricingCardEight"; import FaqBase from "@/components/sections/faq/FaqBase"; import FooterSimple from "@/components/sections/footer/FooterSimple"; import Link from "next/link"; -import { DollarSign, HelpCircle } from "lucide-react"; +import { DollarSign, HelpCircle, Zap } from "lucide-react"; export default function ContactPage() { return ( @@ -17,7 +17,7 @@ export default function ContactPage() { borderRadius="rounded" contentWidth="mediumSmall" sizing="large" - background="blurBottom" + background="circleGradient" cardStyle="gradient-radial" primaryButtonStyle="primary-glow" secondaryButtonStyle="layered" @@ -34,9 +34,7 @@ export default function ContactPage() { { name: "About", id: "about" }, ]} button={{ - text: "Get Started", - href: "/contact", - }} + text: "Get Started", href: "/contact"}} animateOnLoad={true} /> @@ -46,20 +44,14 @@ export default function ContactPage() { @@ -69,72 +61,31 @@ export default function ContactPage() { Date: Fri, 13 Mar 2026 09:51:41 +0000 Subject: [PATCH 2/3] Update src/app/page.tsx --- src/app/page.tsx | 270 +++++++++-------------------------------------- 1 file changed, 51 insertions(+), 219 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index dea79f6..4cdda53 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -23,7 +23,7 @@ export default function HomePage() { borderRadius="rounded" contentWidth="mediumSmall" sizing="large" - background="blurBottom" + background="circleGradient" cardStyle="gradient-radial" primaryButtonStyle="primary-glow" secondaryButtonStyle="layered" @@ -40,9 +40,7 @@ export default function HomePage() { { name: "About", id: "about" }, ]} button={{ - text: "Get Started", - href: "/contact", - }} + text: "Get Started", href: "/contact"}} animateOnLoad={true} /> @@ -52,7 +50,7 @@ export default function HomePage() { @@ -93,19 +85,11 @@ export default function HomePage() { @@ -381,45 +241,21 @@ export default function HomePage() { Date: Fri, 13 Mar 2026 09:51:42 +0000 Subject: [PATCH 3/3] 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..c41831a 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); - +export function SvgTextLogo({ text, className = '' }: SvgTextLogoProps) { return ( - {logoText} + {text} ); -}); - -SvgTextLogo.displayName = "SvgTextLogo"; +} export default SvgTextLogo; -- 2.49.1