#style: Tampilan home

Deskripsi:
- Tampilan tamplate layout positionnya di ganti fixed ( tidak bisa di tarik ke bawah jika sudah menjadi aplikasi )
- UI Home selesai
- UI User search selesai
- UI Notifikasi selesai
## No issuee
This commit is contained in:
2024-07-09 10:25:18 +08:00
parent cbe4a7b2c0
commit 9068631c33
61 changed files with 1390 additions and 1156 deletions

View File

@@ -0,0 +1,8 @@
import { UserSearch_MainView } from "@/app_modules/user_search";
import { userSearch_getAllUser } from "@/app_modules/user_search/fun/get/get_all_user";
export default async function Page() {
const listUser = await userSearch_getAllUser({ page: 1 });
return <UserSearch_MainView listUser={listUser as any} />;
}