Files
MermsPanelReactJS/src/parts/UserFooter.jsx
T
CHIEFSOFT\ameye 942013dfb6 added parts
2024-12-05 14:41:33 -05:00

17 lines
585 B
React

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>
</>;
}