This commit is contained in:
2026-02-28 11:59:17 +07:00
parent 4d3949abaa
commit a7e23cb983
4 changed files with 130 additions and 0 deletions

View File

@@ -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 (
<Layout />
)
}