From 752f395d831059632dc2c6bf8e692d4cbffbdf46 Mon Sep 17 00:00:00 2001 From: Francis Cao Date: Tue, 27 Jan 2026 22:47:29 -0800 Subject: [PATCH] revert websitelayout changes --- .../websites/[websiteId]/WebsiteLayout.tsx | 38 +++++++++---------- 1 file changed, 18 insertions(+), 20 deletions(-) diff --git a/src/app/(main)/websites/[websiteId]/WebsiteLayout.tsx b/src/app/(main)/websites/[websiteId]/WebsiteLayout.tsx index 06bb506a..7260a7ea 100644 --- a/src/app/(main)/websites/[websiteId]/WebsiteLayout.tsx +++ b/src/app/(main)/websites/[websiteId]/WebsiteLayout.tsx @@ -8,25 +8,23 @@ import { WebsiteNav } from './WebsiteNav'; export function WebsiteLayout({ websiteId, children }: { websiteId: string; children: ReactNode }) { return ( - - - - - - - - - {children} - - - - + + + + + + + + {children} + + + ); }