/
githubmirror
/
tailwindcss
Обзор
Документация
Войти
/
githubmirror
/
tailwindcss
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
playgrounds/nextjs/app/layout.tsx
23 строки
545 B
Philipp Spiess
Improve compatibility with Safari 15 (#17435)
01 апр 2025, 14:33
Не верифицирован
01 апр 2025, 14:33
156afc6
Код
Авторство
О чём код?
import type { Metadata } from 'next' import { Inter } from 'next/font/google' import './globals.css' const inter = Inter({ subsets: ['latin'] }) export const metadata: Metadata = { title: 'Create Next App', description: 'Generated by create next app', } export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode }>) { return ( <html lang="en"> <head>{/* <script src="https://cdn.tailwindcss.com"></script> */}</head> <body className={inter.className}>{children}</body> </html> ) }