AccountMenuAccountMenu Dark
page.tsx
import AccountMenu from "@/components/AccountMenu";

You can use the Billing redirect to show the billing page when the user clicks on the billing option. You only need to add the useBilling prop and it must be exist an CustomerID of the user of the payment service in the database.

Properties

useBilling
boolean
default:"true"

Whether to show the billing option in the menu

useTheme
boolean
default:"true"

Whether to show the theme option in the menu

Usage

Example usage of the AccountMenu component :

example.tsx
import AccountMenu from "@/components/AccountMenu";

export default function Example() {
	return <>{session && <AccountMenu useBilling={true} useTheme={true} />}</>;
}

If you need basic components like buttons, inputs, and more, they are available with Shadcn UI.