Deleted the billing-redirect-button, checkout-redirect-button, and embedded-stripe-checkout components. Additionally, removed the shadcn directory, which encompassed billing-related icons. This change streamlines the subscription settings interface and organizes the system's payment management. This update is a stepping stone towards improving the billing system's overall architecture.
27 lines
768 B
TypeScript
27 lines
768 B
TypeScript
import { redirect } from 'next/navigation';
|
|
|
|
import { AuthLayoutShell } from '@kit/auth/shared';
|
|
import PasswordResetForm from '@kit/auth/src/components/password-reset-form';
|
|
import { getSupabaseServerComponentClient } from '@kit/supabase/server-component-client';
|
|
|
|
import pathsConfig from '~/config/paths.config';
|
|
import { withI18n } from '~/lib/i18n/with-i18n';
|
|
|
|
async function PasswordResetPage() {
|
|
const client = getSupabaseServerComponentClient();
|
|
const user = await client.auth.getUser();
|
|
|
|
// we require the user to be logged in to access this page
|
|
if (!user.data) {
|
|
redirect(pathsConfig.auth.passwordReset);
|
|
}
|
|
|
|
return (
|
|
<AuthLayoutShell>
|
|
<PasswordResetForm />
|
|
</AuthLayoutShell>
|
|
);
|
|
}
|
|
|
|
export default withI18n(PasswordResetPage);
|