feat: header menus

This commit is contained in:
2025-06-26 16:12:20 +03:00
parent cbd1f97eba
commit 5c05f9c2bb
21 changed files with 792 additions and 8 deletions

View File

@@ -1,3 +1,9 @@
export default function Home() {
return <div>Main</div>;
import { Home } from '@/views';
export default function HomePage() {
return (
<div>
<Home />
</div>
);
}