* chore: headers + common containers * fix: filters code splitting * fix: home header * fix: header changes * chore: page alignments fixed * fix: uncommented filters * fix: used enums * fix: cards + filters * fix: enum changes * fix: reverted package changes * fix: reverted package changes * fix: Card + tags seperated + naming fixed * fix: card + tags seperated + naming fixed * fix: mobile headers fixed partially * fix: build errors + minor css * fix: checkbox spacing * fix: review changes * fix: lint errors * fix: minor review changes
23 lines
807 B
TypeScript
23 lines
807 B
TypeScript
// ui
|
|
import { Button } from "@plane/ui";
|
|
// constants
|
|
import { MARKETING_PRICING_PAGE_LINK } from "@/constants/common";
|
|
|
|
export const BillingRoot = () => (
|
|
<section className="w-full overflow-y-auto md:pr-9 pr-4">
|
|
<div>
|
|
<div className="flex items-center border-b border-custom-border-100 pb-3.5">
|
|
<h3 className="text-xl font-medium">Billing and Plans</h3>
|
|
</div>
|
|
</div>
|
|
<div className="px-4 py-6">
|
|
<div>
|
|
<h4 className="text-md mb-1 leading-6">Current plan</h4>
|
|
<p className="mb-3 text-sm text-custom-text-200">You are currently using the free plan</p>
|
|
<a href={MARKETING_PRICING_PAGE_LINK} target="_blank" rel="noreferrer">
|
|
<Button variant="neutral-primary">View Plans</Button>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
);
|