bravo68web-portfolio-nextjs/components/footer.jsx

18 lines
347 B
React
Raw Normal View History

2022-01-05 06:31:08 +00:00
import React from "react";
import FooterStyle from "./footer.style";
import { name } from "config";
import Status from "./status";
2022-01-05 06:31:08 +00:00
function footer() {
2023-06-12 08:03:13 +00:00
return (
<FooterStyle>
<div className="main-footer">Build By {name}</div>
{/* <div className="api-status">
<Status />
2023-06-12 08:03:13 +00:00
</div> */}
</FooterStyle>
);
2022-01-05 06:31:08 +00:00
}
export default footer;