Files
myeasycms-v2/apps/web/app/(marketing)/pricing/page.tsx
giancarlo 95793c42b4 Remove admin functionality related code
The admin functionality related code has been removed which includes various user and organization functionalities like delete, update, ban etc. This includes action logic, UI components and supportive utility functions. Notable deletions include the server action files, dialog components for actions like banning and deleting, and related utility functions. This massive cleanup is aimed at simplifying the codebase and the commit reflects adherence to project restructuring.
2024-03-25 15:40:43 +08:00

28 lines
765 B
TypeScript

import { PricingTable } from '@kit/billing/components/pricing-table';
import { SitePageHeader } from '~/(marketing)/_components/site-page-header';
import billingConfig from '~/config/billing.config';
import pathsConfig from '~/config/paths.config';
import { withI18n } from '~/lib/i18n/with-i18n';
export const metadata = {
title: 'Pricing',
};
function PricingPage() {
return (
<div className={'container mx-auto'}>
<div className={'my-8 flex flex-col space-y-16'}>
<SitePageHeader
title={'Pricing'}
subtitle={'Our pricing is designed to scale with your business.'}
/>
</div>
<PricingTable paths={pathsConfig.auth} config={billingConfig} />
</div>
);
}
export default withI18n(PricingPage);