41 lines
1.2 KiB
TypeScript
41 lines
1.2 KiB
TypeScript
import type { Metadata } from 'next';
|
|
import { Geist, Geist_Mono } from 'next/font/google';
|
|
import './globals.css';
|
|
import ClientLayout from '@/components/ClientLayout';
|
|
|
|
const geistSans = Geist({
|
|
variable: '--font-geist-sans',
|
|
subsets: ['latin'],
|
|
});
|
|
|
|
const geistMono = Geist_Mono({
|
|
variable: '--font-geist-mono',
|
|
subsets: ['latin'],
|
|
});
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Portal Data Informatika',
|
|
description: 'Visualisasi Data Mahasiswa Jurusan Informatika',
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="en" suppressHydrationWarning>
|
|
<head>
|
|
<link rel="icon" type="image/png" href="/podif-icon.png" />
|
|
<meta httpEquiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
|
|
<meta httpEquiv="Pragma" content="no-cache" />
|
|
<meta httpEquiv="Expires" content="0" />
|
|
<meta name="robots" content="noindex, nofollow" />
|
|
</head>
|
|
<body suppressHydrationWarning className={`${geistSans.variable} ${geistMono.variable} antialiased min-h-screen`}>
|
|
<ClientLayout>{children}</ClientLayout>
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|