ZoeysBits/src/BottomBar.js

11 lines
368 B
JavaScript
Raw Normal View History

2024-01-14 11:24:34 +01:00
const BottomBar = () => {
return (
<div className="fixed bottom-0 left-0 h-8 w-screen flex flex-row bg-primary text-secondary shadow-sm justify-center items-center">
<div className="fixed flex justify-center">
<p className="text-sm">&copy; LibreBun 2024</p>
</div>
</div>
);
};
export default BottomBar;