36 lines
905 B
TypeScript
36 lines
905 B
TypeScript
import type React from "react"
|
|
import type { Metadata } from "next"
|
|
import { Inter } from "next/font/google"
|
|
import "./globals.css"
|
|
|
|
const inter = Inter({ subsets: ["latin"] })
|
|
|
|
export const metadata: Metadata = {
|
|
title: "E-Voting METI",
|
|
description:
|
|
"Sistem pemilihan elektronik yang aman dan transparan untuk pemilihan ketua umum METI (New & Renewable Energy)",
|
|
icons: {
|
|
icon: "/favicon.ico",
|
|
shortcut: "/favicon.ico",
|
|
apple: "/favicon.ico",
|
|
},
|
|
generator: 'v0.app'
|
|
}
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode
|
|
}) {
|
|
return (
|
|
<html lang="id">
|
|
<head>
|
|
<link rel="icon" href="/favicon.ico" sizes="any" />
|
|
<link rel="icon" href="/favicon.ico" type="image/png" />
|
|
<link rel="apple-touch-icon" href="/favicon.ico" />
|
|
</head>
|
|
<body className={inter.className}>{children}</body>
|
|
</html>
|
|
)
|
|
}
|