ai-hackaton-frontend/app/layout.tsx
2026-01-15 14:23:41 +05:00

27 lines
808 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import type { Metadata } from 'next'
import './globals.css'
import QueryProvider from '@/components/QueryProvider'
export const metadata: Metadata = {
title: 'HR AI - AI-собеседования для масштабного найма',
description: 'Автоматизируйте подбор персонала с помощью искусственного интеллекта. Проводите сотни собеседований одновременно.',
}
export default function RootLayout({
children,
}: {
children: React.ReactNode
}) {
return (
<html lang="ru">
<head>
<meta charSet="utf-8" />
</head>
<body className="min-h-screen bg-gray-50">
<QueryProvider>
{children}
</QueryProvider>
</body>
</html>
)
}