ZoeysBits/src/BottomBar.js
Zoey b22218d80f Update May 2024
Added new links, images, fixed margins, padding, flex
Added discord embed meta tags
fixed some things being selectable
2024-05-16 18:37:55 +02:00

11 lines
No EOL
368 B
JavaScript

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;