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

19 lines
305 B
TypeScript
Raw Normal View History

2025-04-26 20:32:58 +07:00
import './global.css';
export const metadata = {
title: 'Welcome to landing',
description: 'Generated by create-nx-workspace',
};
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="en">
<body>{children}</body>
</html>
);
}