The <PricingLink /> component displays a link to the pricing page of your customer portal.

Props

children
ReactNode
required

The content of the link.

Example

import { PricingLink } from "@kobbleio/next/client";

export default function MyComponent() {
    return (
        <PricingLink>
            <span class={'something'}>Go to pricing</span>
        </PricingLink>
    );
}