'use client'; import { cn } from '@/utils/cn'; import { Logo, LogoSquare } from './logo'; type Props = { children: React.ReactNode; className?: string; }; const FullWidthNavbar = ({ children, className }: Props) => { return (