Add frontend skeleton

This commit is contained in:
2023-06-09 18:56:06 +04:00
parent 4d45992279
commit f2fe26826c
8 changed files with 340 additions and 0 deletions

13
frontend/app/layout.js Normal file
View File

@@ -0,0 +1,13 @@
export const metadata = {
title: 'PCA Pijac',
description: '',
}
export default function RootLayout({ children }) {
return (
<html lang="en">
<body>{children}</body>
</html>
)
}