feat(dimentorin): slicing landing page menu mentoring

This commit is contained in:
euxzy
2025-07-10 08:01:11 +07:00
parent ec13f2c693
commit 3e232dcdc2
8 changed files with 322 additions and 5 deletions
+10
View File
@@ -0,0 +1,10 @@
import { Outlet, ScrollRestoration } from "react-router-dom";
export default function RootLayout() {
return (
<>
<Outlet />
<ScrollRestoration />
</>
)
}