'use client' import { ReactNode } from 'react' import Link from 'next/link' interface AppLayoutProps { children: ReactNode } export default function AppLayout({ children }: AppLayoutProps) { return ( <>
HR AI
{children}
) }