51 lines
1.2 KiB
TypeScript
51 lines
1.2 KiB
TypeScript
import type { Metadata, Viewport } from 'next'
|
|
import { Inter, JetBrains_Mono } from 'next/font/google'
|
|
import { SessionProvider } from 'next-auth/react'
|
|
import './globals.css'
|
|
|
|
const inter = Inter({ subsets: ["latin"] });
|
|
const jetbrainsMono = JetBrains_Mono({ subsets: ["latin"] });
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'RemoteLink - Remote Desktop Application',
|
|
description: 'Professional remote desktop solution for IT support teams. Connect, control, and manage remote machines securely.',
|
|
generator: 'v0.app',
|
|
icons: {
|
|
icon: [
|
|
{
|
|
url: '/icon-light-32x32.png',
|
|
media: '(prefers-color-scheme: light)',
|
|
},
|
|
{
|
|
url: '/icon-dark-32x32.png',
|
|
media: '(prefers-color-scheme: dark)',
|
|
},
|
|
{
|
|
url: '/icon.svg',
|
|
type: 'image/svg+xml',
|
|
},
|
|
],
|
|
apple: '/apple-icon.png',
|
|
},
|
|
}
|
|
|
|
export const viewport: Viewport = {
|
|
themeColor: '#0a0a0f',
|
|
width: 'device-width',
|
|
initialScale: 1,
|
|
}
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode
|
|
}>) {
|
|
return (
|
|
<html lang="en" className="dark">
|
|
<body className="font-sans antialiased">
|
|
<SessionProvider>{children}</SessionProvider>
|
|
</body>
|
|
</html>
|
|
)
|
|
}
|