diff --git a/app/[id]/page.tsx b/app/[id]/page.tsx new file mode 100644 index 0000000..1fe344a --- /dev/null +++ b/app/[id]/page.tsx @@ -0,0 +1,69 @@ +import { + RecommendedProducts, + RecommendedProductsSkeleton, +} from '#/components/recommended-products'; +import { Reviews, ReviewsSkeleton } from '#/components/reviews'; +import { SingleProduct } from '#/components/single-product'; +import { Ping } from '#/components/ping'; +import { delayRecommendedProducts, delayReviews } from '#/lib/constants'; +import { Suspense } from 'react'; + +export const revalidate = 60; +export const generateStaticParams = () => { + return []; +}; + +export default async function Page({ + params, +}: { + params: { + id: string; + }; +}) { + console.log('==> Rendering page'); + return ( +
+
+ Streaming Demo {params.id} {new Date().toISOString()} +
+ + + + + }> + + + + + + }> + + +
+ ); +}