Les boutons suivent la couleur d’apparence, les libellés trop petits ou trop techniques sont clarifiés, et le catalogue des fournisseurs se met à jour tout seul. Co-authored-by: Cursor <cursoragent@cursor.com>
26 lines
572 B
TypeScript
26 lines
572 B
TypeScript
import { Suspense } from 'react';
|
|
import { Loader2 } from 'lucide-react';
|
|
import { BillingPlans } from '@/components/settings/billing-plans';
|
|
|
|
export const dynamic = 'force-dynamic';
|
|
|
|
export const metadata = {
|
|
title: 'Facturation — Memento',
|
|
};
|
|
|
|
function Fallback() {
|
|
return (
|
|
<div className="flex items-center justify-center py-16">
|
|
<Loader2 className="h-6 w-6 animate-spin text-muted-foreground" />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default function BillingPage() {
|
|
return (
|
|
<Suspense fallback={<Fallback />}>
|
|
<BillingPlans />
|
|
</Suspense>
|
|
);
|
|
}
|