deleted separate schema files

This commit is contained in:
2024-12-17 13:44:08 -05:00
parent 363259b34c
commit 12493feb6e
37 changed files with 37 additions and 435 deletions

View File

@@ -0,0 +1,16 @@
import constants from "@src/lib/constants";
export default function Footer() {
return (
(
<footer className="bg-gray-950 text-white py-4">
<div className="container mx-auto px-6 text-center">
<p>&copy; {new Date().getFullYear()} {constants.APP_NAME}. All rights reserved.</p>
<p>Built by Forward Group </p>
</div>
</footer>
)
)
}