bpms_site/.svn/pristine/ce/cec2307280f489e7ddd070ed7d53d40cd9405362.svn-base
2025-11-02 16:38:49 +03:30

14 lines
309 B
Plaintext

import "../public/assets/styles/main.css"
export const metadata = {
title: 'Create Next App',
description: 'Generated by create next app',
}
export default function RootLayout({children}) {
return (
<html lang="en">
<body>
{children}
</body>
</html>
)
}