import type { ReactNode } from 'react'; const navItems = ['소개', '게시판', '자료실', '마이페이지']; function UserHeader() { return (

BASE USER

); } function UserSideMenu() { return ( ); } type UserLayoutProps = { children: ReactNode; title?: string; }; export function UserLayout({ children, title = '공지사항' }: UserLayoutProps) { return (

{title}

{children}
); }