diff --git a/app/edit/layout.tsx b/app/edit/layout.tsx index 4e613c01..82e1963d 100644 --- a/app/edit/layout.tsx +++ b/app/edit/layout.tsx @@ -1,13 +1,7 @@ -export default function RunLayout({ - children, - }: { - children: React.ReactNode; -}) { +export default function EditLayout({children}: {children: React.ReactNode}) { return ( -
-
+
+
{children}
diff --git a/app/explore/layout.tsx b/app/explore/layout.tsx index 2c2132fd..f1262a13 100644 --- a/app/explore/layout.tsx +++ b/app/explore/layout.tsx @@ -1,11 +1,9 @@ -export default function RunLayout({ - children, -}: { - children: React.ReactNode; -}) { +export default function ExploreLayout({children}: {children: React.ReactNode}) { return ( -
- {children} +
+
+ {children} +
); } diff --git a/app/explore/page.tsx b/app/explore/page.tsx index 5a060e27..d5274e61 100644 --- a/app/explore/page.tsx +++ b/app/explore/page.tsx @@ -76,7 +76,7 @@ export default function Explore() { useEffect(() => { refresh() }, [authenticated]); return ( -
+