({ children }: NavLayoutProps)
| 9 | export default function NavLayout({ children }: NavLayoutProps) { |
| 10 | return ( |
| 11 | <> |
| 12 | <FloatingNavbar |
| 13 | name="CodeFox" |
| 14 | className="transition-transform duration-300" |
| 15 | /> |
| 16 | <div className="w-full">{children}</div> |
| 17 | </> |
| 18 | ); |
| 19 | } |
nothing calls this directly
no test coverage detected