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

18 lines
384 B
TypeScript
Raw Normal View History

2025-04-26 21:13:19 +07:00
import { type Metadata } from 'next';
import { description, title } from '../data/metadata.json';
import '../styles/globals.css';
2025-04-26 20:32:58 +07:00
2025-04-26 21:13:19 +07:00
export const metadata: Metadata = { title, description };
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>
);
}