38 lines
1.0 KiB
TypeScript
38 lines
1.0 KiB
TypeScript
'use client'
|
||
|
||
import { ReactNode } from 'react'
|
||
import Link from 'next/link'
|
||
|
||
interface AppLayoutProps {
|
||
children: ReactNode
|
||
}
|
||
|
||
export default function AppLayout({ children }: AppLayoutProps) {
|
||
return (
|
||
<>
|
||
<header className="bg-white shadow-sm border-b">
|
||
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
||
<div className="flex justify-between items-center h-16">
|
||
<div className="flex items-center">
|
||
<Link href="/" className="text-xl font-bold text-primary-600">
|
||
HR AI
|
||
</Link>
|
||
</div>
|
||
<nav className="flex space-x-4">
|
||
<Link
|
||
href="/"
|
||
className="text-gray-600 hover:text-primary-600 px-3 py-2 rounded-md text-sm font-medium"
|
||
>
|
||
Вакансии
|
||
</Link>
|
||
</nav>
|
||
</div>
|
||
</div>
|
||
</header>
|
||
<main className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-8">
|
||
{children}
|
||
</main>
|
||
</>
|
||
)
|
||
}
|