Files
hoanghapc_nextJs/src/app/(main)/taikhoan/page.tsx

15 lines
297 B
TypeScript
Raw Normal View History

2026-02-28 11:59:17 +07:00
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 />
)
}