forked from github/plane
37bf465fcd
* style: update border across workspace and project settings. * update border width
40 lines
1.3 KiB
TypeScript
40 lines
1.3 KiB
TypeScript
import { ReactElement } from "react";
|
|
// layouts
|
|
import { AppLayout } from "layouts/app-layout";
|
|
import { WorkspaceSettingLayout } from "layouts/settings-layout";
|
|
// component
|
|
import { WorkspaceSettingHeader } from "components/headers";
|
|
// ui
|
|
import { Button } from "@plane/ui";
|
|
// types
|
|
import { NextPageWithLayout } from "types/app";
|
|
|
|
const BillingSettingsPage: NextPageWithLayout = () => (
|
|
<section className="pr-9 py-8 w-full overflow-y-auto">
|
|
<div>
|
|
<div className="flex items-center py-3.5 border-b border-custom-border-100">
|
|
<h3 className="text-xl font-medium">Billing & 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="https://plane.so/pricing" target="_blank" rel="noreferrer">
|
|
<Button variant="neutral-primary">View Plans</Button>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
);
|
|
|
|
BillingSettingsPage.getLayout = function getLayout(page: ReactElement) {
|
|
return (
|
|
<AppLayout header={<WorkspaceSettingHeader title="Billing & Plans Settings" />}>
|
|
<WorkspaceSettingLayout>{page}</WorkspaceSettingLayout>
|
|
</AppLayout>
|
|
);
|
|
};
|
|
|
|
export default BillingSettingsPage;
|