'use client' import React from 'react' import { useIsMobile } from '@/app/hooks' import { MobileNav } from './MobileNav' import { Nav } from './DesktopNav' const Navbar = ({ children }: { children: React.ReactNode }) => { const isMobile = useIsMobile() if (isMobile) { return {children} } return } export { Navbar }