From 6955c1cec665fadc6e9fb926cd30e43da25be158 Mon Sep 17 00:00:00 2001 From: Lee Robinson Date: Wed, 8 Nov 2023 14:49:59 -0600 Subject: [PATCH 01/15] PPR --- app/[page]/layout.tsx | 9 +- app/[page]/page.tsx | 2 - app/layout.tsx | 8 +- app/page.tsx | 11 +- app/product/[handle]/page.tsx | 11 +- app/search/[collection]/page.tsx | 2 - app/search/layout.tsx | 5 +- app/search/page.tsx | 2 - next.config.js | 3 + package.json | 18 +- pnpm-lock.yaml | 384 +++++++++++++++---------------- 11 files changed, 213 insertions(+), 242 deletions(-) diff --git a/app/[page]/layout.tsx b/app/[page]/layout.tsx index 453253dca7..50614b5b16 100644 --- a/app/[page]/layout.tsx +++ b/app/[page]/layout.tsx @@ -1,15 +1,12 @@ import Footer from 'components/layout/footer'; -import { Suspense } from 'react'; export default function Layout({ children }: { children: React.ReactNode }) { return ( - + <>
-
- {children} -
+
{children}