Files
imphnen-frontend-service/apps/landing/src/app/layout.tsx
T

23 lines
542 B
TypeScript
Raw Normal View History

2025-04-26 21:13:19 +07:00
import { type Metadata } from 'next';
2025-04-27 05:28:37 +07:00
import { Inter } from 'next/font/google';
2025-04-26 21:13:19 +07:00
import '../styles/globals.css';
2025-04-26 20:32:58 +07:00
2025-04-27 05:28:37 +07:00
const inter = Inter({ subsets: ['latin'] });
export const metadata: Metadata = {
2025-04-27 05:28:37 +07:00
title: 'IMPHNEN - Ingin Menjadi Programmer Handal?',
description: 'Komunitas belajar programming untuk semua level',
};
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-27 05:28:37 +07:00
<body className={inter.className}>{children}</body>
2025-04-26 20:32:58 +07:00
</html>
);
}