auth layout fix

This commit is contained in:
victorAnumudu
2024-12-06 09:08:54 +01:00
parent 53726ad8eb
commit 4b63384092
17 changed files with 225 additions and 200 deletions
@@ -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>
</>;
}