diff --git a/app/(marketing)/page.tsx b/app/(marketing)/page.tsx index 39581a9..b3e1555 100644 --- a/app/(marketing)/page.tsx +++ b/app/(marketing)/page.tsx @@ -5,6 +5,8 @@ import { Hero } from "./_components/hero"; import { HowItWorks } from "./_components/how-it-works"; import { Pricings } from "./_components/pricings"; +export const dynamic = "force-dynamic"; + const MarketingPage = async () => { const pricings = await getPlanPricings(); diff --git a/app/(marketing)/pricing/page.tsx b/app/(marketing)/pricing/page.tsx index df6f973..a3c0bcb 100644 --- a/app/(marketing)/pricing/page.tsx +++ b/app/(marketing)/pricing/page.tsx @@ -2,6 +2,8 @@ import { PricingSection } from "@/components/pricing"; import { getPlanPricings } from "@/use-cases/plan/get-pricings"; import { redirect } from "next/navigation"; +export const dynamic = "force-dynamic"; + export default async function PricingPage() { const pricings = await getPlanPricings();