Spaces:
Sleeping
Sleeping
| import type { Metadata, Viewport } from 'next'; | |
| import './globals.css'; | |
| export const metadata: Metadata = { | |
| title: 'AJet360', | |
| description: 'AJet acente operasyon demo paneli', | |
| }; | |
| export const viewport: Viewport = { | |
| width: 'device-width', | |
| initialScale: 1, | |
| }; | |
| export default function RootLayout({ | |
| children, | |
| }: Readonly<{ | |
| children: React.ReactNode; | |
| }>) { | |
| return ( | |
| <html lang="tr"> | |
| <body>{children}</body> | |
| </html> | |
| ); | |
| } | |