Initial commit

This commit is contained in:
dahoud
2025-10-01 01:39:07 +00:00
commit b430bf3b96
826 changed files with 255287 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
import React from 'react';
const EmptyPage = () => {
return (
<div className="grid">
<div className="col-12">
<div className="card">
<h4>Empty Page</h4>
<p>Use this page to start from scratch and place your custom content.</p>
</div>
</div>
</div>
);
};
export default EmptyPage;