transfer_tdms_tcs/frontend/app/layout.tsx
2026-02-11 20:49:50 +03:00

21 lines
No EOL
579 B
TypeScript
Raw Permalink 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.

// src/app/layout.tsx
import type { Metadata } from 'next'
import { Inter } from 'next/font/google'
import { Provider } from '@/components/ui/provider'
const inter = Inter({ subsets: ['latin'] })
export const metadata: Metadata = {
title: 'My Chakra App',
description: 'Приложение на Next.js с Chakra UI',
}
export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<html lang="en" suppressHydrationWarning>
<body className={inter.className}>
<Provider>{children}</Provider>
</body>
</html>
)
}