diff --git a/src/app/(main)/quen-mat-khau/page.tsx b/src/app/(main)/quen-mat-khau/page.tsx
new file mode 100644
index 0000000..d41adef
--- /dev/null
+++ b/src/app/(main)/quen-mat-khau/page.tsx
@@ -0,0 +1,13 @@
+
+import ForgotPassword from "@/components/customer/ForgotPassword";
+import type { Metadata } from "next";
+export const metadata: Metadata = {
+ title: "Quên mật khẩu",
+ description: "",
+};
+
+export default function Home() {
+ return (
+
+ )
+}
diff --git a/src/app/(main)/taikhoan/page.tsx b/src/app/(main)/taikhoan/page.tsx
new file mode 100644
index 0000000..1d7fcd8
--- /dev/null
+++ b/src/app/(main)/taikhoan/page.tsx
@@ -0,0 +1,14 @@
+
+
+import Layout from "@/components/account";
+import type { Metadata } from "next";
+export const metadata: Metadata = {
+ title: "Tài khoản của tôi",
+ description: "Thông tin tài khoản người dùng",
+};
+
+export default function Home() {
+ return (
+
+ )
+}
diff --git a/src/components/account/index.tsx b/src/components/account/index.tsx
new file mode 100644
index 0000000..dd97bbf
--- /dev/null
+++ b/src/components/account/index.tsx
@@ -0,0 +1,63 @@
+'use client';
+import Link from "next/link";
+import { CustomerInfo } from "@/data/customers"
+
+export default function AccountPage() {
+
+ return (
+
+
+
+
+
+ Tài khoản của,
+ {CustomerInfo[0]?.name}
+
+
+
+
+
+
+ Thông tin tài khoản
+
+
+
+
+ Danh sách đơn hàng
+
+
+
+
+ Đánh giá của tôi
+
+
+
+
+ Bình luận của tôi
+
+
+
+
+ Thay đổi mật khẩu
+
+
+
+
+ Sản phẩm đã xem
+
+
+
+
+ Đăng xuất
+
+
+
+
+
+
Bạn đang ở trang tài khoản. Vui lòng chọn các mục bên trái để xem thông tin.
+
+
+
+
+ )
+}
\ No newline at end of file
diff --git a/src/components/customer/ForgotPassword.tsx b/src/components/customer/ForgotPassword.tsx
new file mode 100644
index 0000000..6a2e48f
--- /dev/null
+++ b/src/components/customer/ForgotPassword.tsx
@@ -0,0 +1,40 @@
+export default function ForgotPasswordPage() {
+ return (
+