"use client"; import clsx from "clsx"; import { Container } from "./Container"; import { Button } from "./ui/button"; import { trackGAEvent } from "./analitycs"; function SwirlyDoodle(props: React.ComponentPropsWithoutRef<"svg">) { return ( ); } function CheckIcon({ className, ...props }: React.ComponentPropsWithoutRef<"svg">) { return ( ); } function Plan({ name, price, description, href, features, featured = false, }: { name: string; price: string; description: string; href: string; features: Array; featured?: boolean; }) { return (

{name}

{description}

{price}

{/* */}
); } export function Pricing() { return (

Lifetime Access, {" "} Pricing.

Invest once and reap the benefits forever. Our lifetime pricing plan offers unlimited access to all features, ensuring you always have the latest in infrastructure management without additional costs.

{/*
*/} {/* */} {/* */} {/*
*/}
); }