import { Nav } from './client-nav'; import './globals.css'; import './globals.css' // This path is correct if the file is in your src/app directory import { ReactNode } from 'react' import { ThemeProvider } from './theme-provider'; export default function RootLayout({ children }: { children: ReactNode }) { return (
) }