Desc:
- Fitur config untuk error pada server di bagian .env PWD
- Fitur home dan tampilan menu
This commit is contained in:
2023-10-03 11:56:33 +08:00
parent fa46a3f055
commit 9a914bb513
9 changed files with 186 additions and 42 deletions

View File

@@ -0,0 +1,9 @@
import { HomeLayout } from "@/app_modules/home";
export default async function Layout({children}: {children: any}) {
return <>
<HomeLayout>{children}</HomeLayout>
</>
}