first commit

This commit is contained in:
TuanVT
2026-05-23 09:48:07 +07:00
parent 03b9101bd5
commit b6ccde2c74
134 changed files with 7178 additions and 110 deletions
+15
View File
@@ -0,0 +1,15 @@
"use client";
import BaseLayout from "@/components/layouts/BaseLayout/BaseLayout";
import MainPageHome from "@/components/page/Home/MainPageHome";
import React from "react";
const page = () => {
return (
<BaseLayout title="Dashboard">
<MainPageHome />
</BaseLayout>
);
};
export default page;