seperated backend and frontend

This commit is contained in:
2025-11-14 19:10:12 +03:00
parent 45f6b7a1ef
commit 42983eab65
150 changed files with 26903 additions and 9078 deletions

View File

@@ -0,0 +1,13 @@
'use client';
const PageMock = () => {
return (
<>
<div>
<h1>Mock Page</h1>
</div>
</>
);
};
export default PageMock;