2025-04-26 21:13:19 +07:00
|
|
|
import { type Metadata } from 'next';
|
|
|
|
|
import '../styles/globals.css';
|
2025-04-26 20:32:58 +07:00
|
|
|
|
2025-04-26 22:38:28 +07:00
|
|
|
export const metadata: Metadata = {
|
|
|
|
|
title: 'IMPHNEN',
|
|
|
|
|
};
|
2025-04-26 20:32:58 +07:00
|
|
|
|
|
|
|
|
export default function RootLayout({
|
|
|
|
|
children,
|
|
|
|
|
}: {
|
|
|
|
|
children: React.ReactNode;
|
|
|
|
|
}) {
|
|
|
|
|
return (
|
2025-04-26 21:13:19 +07:00
|
|
|
<html lang="id" suppressHydrationWarning>
|
2025-04-26 20:32:58 +07:00
|
|
|
<body>{children}</body>
|
|
|
|
|
</html>
|
|
|
|
|
);
|
|
|
|
|
}
|