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 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;