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

19 lines
325 B
TypeScript
Raw Normal View History

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
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>
);
}