api-getter
22 строки · 430.0 Байт
1import type { Metadata } from 'next'
2import { Inter } from 'next/font/google'
3import './globals.css'
4
5const inter = Inter({ subsets: ['latin'] })
6
7export const metadata: Metadata = {
8title: 'Api App',
9description: 'For RTU MIREA',
10}
11
12export default function RootLayout({
13children,
14}: Readonly<{
15children: React.ReactNode
16}>) {
17return (
18<html lang='en'>
19<body className={inter.className}>{children}</body>
20</html>
21)
22}
23