feat: migrate header component

This commit is contained in:
ArraysID
2025-04-27 05:28:37 +07:00
parent 53b069f242
commit b4708ab2aa
9 changed files with 196 additions and 20 deletions
+6 -2
View File
@@ -1,8 +1,12 @@
import { type Metadata } from 'next';
import { Inter } from 'next/font/google';
import '../styles/globals.css';
const inter = Inter({ subsets: ['latin'] });
export const metadata: Metadata = {
title: 'IMPHNEN',
title: 'IMPHNEN - Ingin Menjadi Programmer Handal?',
description: 'Komunitas belajar programming untuk semua level',
};
export default function RootLayout({
@@ -12,7 +16,7 @@ export default function RootLayout({
}) {
return (
<html lang="id" suppressHydrationWarning>
<body>{children}</body>
<body className={inter.className}>{children}</body>
</html>
);
}