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