16 lines
598 B
TypeScript
16 lines
598 B
TypeScript
import { PageHeader } from '@/components/shared/page-header';
|
|
import { BerthPriceReconcileTable } from '@/components/berths/berth-price-reconcile-table';
|
|
|
|
export default function BerthPriceReconcilePage() {
|
|
return (
|
|
<div className="space-y-6">
|
|
<PageHeader
|
|
title="Berth price reconciliation"
|
|
eyebrow="ADMIN"
|
|
description="Prices parsed from each berth's current spec sheet, shown against the stored price. Review the changes and approve the ones you trust — nothing is written until you approve it."
|
|
/>
|
|
<BerthPriceReconcileTable />
|
|
</div>
|
|
);
|
|
}
|