17 lines
585 B
React
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>© 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>
|
|
</>;
|
|
} |