From 6cdc636c7c7e2a297a2424d982188970e19bdc67 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 20:51:06 +0000 Subject: [PATCH 1/2] Update src/app/pricing/page.tsx --- src/app/pricing/page.tsx | 156 +++++++++++++++------------------------ 1 file changed, 59 insertions(+), 97 deletions(-) diff --git a/src/app/pricing/page.tsx b/src/app/pricing/page.tsx index b0c9a40..d41d689 100644 --- a/src/app/pricing/page.tsx +++ b/src/app/pricing/page.tsx @@ -1,42 +1,40 @@ "use client"; +import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; +import PricingCardFive from "@/components/sections/pricing/PricingCardFive"; +import ContactSplit from "@/components/sections/contact/ContactSplit"; +import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; -import PricingCardFive from '@/components/sections/pricing/PricingCardFive'; -import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; +import { Zap, Sparkles, Crown, CreditCard } from "lucide-react"; import Link from "next/link"; -import { CreditCard, Zap, Crown } from "lucide-react"; export default function PricingPage() { const navItems = [ - { name: "Features", id: "features" }, - { name: "How It Works", id: "how-it-works" }, - { name: "Pricing", id: "pricing" }, - { name: "Contact", id: "contact" }, + { name: "Features", id: "/" }, + { name: "How It Works", id: "#how-it-works" }, + { name: "Pricing", id: "#pricing" }, + { name: "Contact", id: "#contact" }, ]; const footerColumns = [ { - title: "Product", - items: [ - { label: "Features", href: "/" }, - { label: "Pricing", href: "/pricing" }, - { label: "How It Works", href: "/" }, + title: "Product", items: [ + { label: "Features", href: "#features" }, + { label: "Pricing", href: "#pricing" }, + { label: "How It Works", href: "#how-it-works" }, { label: "API Docs", href: "#" }, ], }, { - title: "Company", - items: [ + title: "Company", items: [ { label: "About Us", href: "#" }, { label: "Blog", href: "#" }, { label: "Careers", href: "#" }, - { label: "Contact", href: "/contact" }, + { label: "Contact", href: "#contact" }, ], }, { - title: "Legal", - items: [ + title: "Legal", items: [ { label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }, { label: "Cookie Policy", href: "#" }, @@ -61,16 +59,37 @@ export default function PricingPage() {
+
+ +
+
@@ -153,15 +127,3 @@ export default function PricingPage() { ); } - -const Sparkles = ({ className }: { className?: string }) => ( - - - -); \ No newline at end of file -- 2.49.1 From 96626cba20a436c2c79fb8c9c6a172956d27a18d Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 20:51:06 +0000 Subject: [PATCH 2/2] Update src/components/shared/SvgTextLogo/SvgTextLogo.tsx --- .../shared/SvgTextLogo/SvgTextLogo.tsx | 49 +++++-------------- 1 file changed, 13 insertions(+), 36 deletions(-) diff --git a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx index f214190..ee5a404 100644 --- a/src/components/shared/SvgTextLogo/SvgTextLogo.tsx +++ b/src/components/shared/SvgTextLogo/SvgTextLogo.tsx @@ -1,51 +1,28 @@ -"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"; className?: string; } -const SvgTextLogo = memo(function SvgTextLogo({ - logoText, - adjustHeightFactor, - verticalAlign = "top", - className = "", -}) { - const { svgRef, textRef, viewBox, aspectRatio } = useSvgTextLogo(logoText, false, adjustHeightFactor); - +const SvgTextLogo: React.FC = ({ className = '' }) => { return ( - {logoText} + Logo Text ); -}); - -SvgTextLogo.displayName = "SvgTextLogo"; +}; export default SvgTextLogo; -- 2.49.1