added parts

This commit is contained in:
CHIEFSOFT\ameye
2024-12-05 14:41:33 -05:00
parent 0a149342e7
commit 942013dfb6
3 changed files with 1125 additions and 1116 deletions
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
+17
View File
@@ -0,0 +1,17 @@
import React from "react";
export default function UserFooter(){
return <>
<footer className="footer">
<div className="row">
<div className="col-12 col-sm-6 text-center text-sm-left">
<p>&copy; Copyright 2024. All rights reserved.</p>
</div>
<div className="col col-sm-6 ml-sm-auto text-center text-sm-right">
<p>Hand-crafted made with <i className="fa fa-heart text-danger mx-1"></i> by Potenza</p>
</div>
</div>
</footer>
</>;
}