Skip to content

Commit cd4b020

Browse files
committed
rename pricing @
1 parent 7ec0b46 commit cd4b020

File tree

9 files changed

+7
-7
lines changed

9 files changed

+7
-7
lines changed
File renamed without changes.

apps/docs/app/(home)/pricing/@pricing/estimator-scale.ts renamed to apps/docs/app/(home)/pricing/_pricing/estimator-scale.ts

File renamed without changes.

apps/docs/app/(home)/pricing/@pricing/estimator-utils.ts renamed to apps/docs/app/(home)/pricing/_pricing/estimator-utils.ts

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

apps/docs/app/(home)/pricing/layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export const metadata: Metadata = {
1515
},
1616
};
1717

18-
export default async function Layout({ children }: { children: ReactNode }) {
18+
export default function Layout({ children }: { children: ReactNode }) {
1919
return (
2020
<>
2121
<StructuredData

apps/docs/app/(home)/pricing/page.tsx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22

33
import { useMemo, useState } from 'react';
44
import { Footer } from '@/components/footer';
5-
import { displayNameForPlan, selectBestPlan } from './@pricing/best-plan';
6-
import { Estimator } from './@pricing/estimator';
7-
import { estimateTieredOverageCostFromTiers } from './@pricing/estimator-utils';
8-
import { normalizePlans } from './@pricing/normalize';
9-
import { PlansComparisonTable } from './@pricing/table';
10-
import type { NormalizedPlan } from './@pricing/types';
5+
import { displayNameForPlan, selectBestPlan } from './_pricing/best-plan';
6+
import { Estimator } from './_pricing/estimator';
7+
import { estimateTieredOverageCostFromTiers } from './_pricing/estimator-utils';
8+
import { normalizePlans } from './_pricing/normalize';
9+
import { PlansComparisonTable } from './_pricing/table';
10+
import type { NormalizedPlan } from './_pricing/types';
1111
import { RAW_PLANS } from './data';
1212

1313
const PLANS: NormalizedPlan[] = normalizePlans(RAW_PLANS);

0 commit comments

Comments
 (0)