Forced merge: merge ai-dev into master

This commit is contained in:
Flatlogic Bot 2025-05-02 16:43:27 +00:00
commit 771df36570
4 changed files with 24 additions and 4 deletions

5
.gitignore vendored
View File

@ -1,3 +1,8 @@
node_modules/
*/node_modules/
*/build/
**/node_modules/
**/build/
.DS_Store
.env

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1 @@
{}

View File

@ -0,0 +1,15 @@
import React from 'react';
import Authenticated from '../layouts/Authenticated';
const MoveInOutsPage: React.FC = () => {
return (
<Authenticated>
<div className="p-6">
<h1 className="text-2xl font-semibold mb-4">Move In/Out Reports</h1>
<p>This section is under construction and will display move in/out records once available.</p>
</div>
</Authenticated>
);
};
export default MoveInOutsPage;