'use client' import type { ReactNode } from 'react' import MainNav from './index' type MainNavLayoutProps = { children: ReactNode } const MainNavLayout = ({ children, }: MainNavLayoutProps) => { return (