Initial import of AbelBirdNest Stock

This commit is contained in:
2026-05-16 18:25:51 +07:00
commit 14bb9bf744
472 changed files with 70671 additions and 0 deletions

View File

@ -0,0 +1,14 @@
import { AppShell } from "@/components/layout/app-shell";
import { ChangePasswordClient } from "@/features/auth/components/change-password-client";
export default async function ChangePasswordPage() {
return (
<AppShell
pathname="/change-password"
title="Ganti Password"
description="Perbarui password akun Anda dengan memasukkan password saat ini lalu simpan password baru."
>
<ChangePasswordClient />
</AppShell>
);
}