51 lines
1.2 KiB
TypeScript
51 lines
1.2 KiB
TypeScript
import { Analytics } from '@vercel/analytics/next'
|
|
import type { Metadata } from 'next'
|
|
import { Plus_Jakarta_Sans, Geist_Mono } from 'next/font/google'
|
|
import './globals.css'
|
|
|
|
const jakarta = Plus_Jakarta_Sans({
|
|
variable: '--font-jakarta',
|
|
subsets: ['latin'],
|
|
display: 'swap',
|
|
})
|
|
const geistMono = Geist_Mono({
|
|
variable: '--font-geist-mono',
|
|
subsets: ['latin'],
|
|
})
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'WebGIS Geospasial — Masuk',
|
|
description:
|
|
'Platform analisis spasial untuk pengentasan kemiskinan berbasis data geospasial.',
|
|
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 default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode
|
|
}>) {
|
|
return (
|
|
<html lang="id" className={`${jakarta.variable} ${geistMono.variable} bg-background`}>
|
|
<body className="font-sans antialiased">{children}{process.env.NODE_ENV === 'production' && <Analytics />}</body>
|
|
</html>
|
|
)
|
|
}
|