diff --git a/src/app/(main)/explore/layout.tsx b/src/app/(main)/explore/layout.tsx new file mode 100644 index 0000000..f54fda8 --- /dev/null +++ b/src/app/(main)/explore/layout.tsx @@ -0,0 +1,9 @@ +export const dynamic = "force-dynamic"; + +export default function ExploreLayout({ + children, +}: { + children: React.ReactNode; +}) { + return children; +}