wwf
2025-05-20 938c3e5a587ce950a94964ea509b9e7f8834dfae
1
2
3
4
5
6
7
8
9
import type React from 'react'
import { notFound } from 'next/navigation'
 
export default async function Layout({ children }: React.PropsWithChildren) {
  if (process.env.NODE_ENV !== 'development')
    notFound()
 
  return children
}