Florin Bobiș
landing done
fcfb631
raw
history blame
267 Bytes
const Footer = () => {
return (
<footer className="sticky bottom-0 flex h-10 items-center gap-4 bg-background/30 backdrop-blur px-4 md:px-6 z-30">
<span className="text-sm dark:text-white">© ATOM 2024</span>
</footer>
);
};
export default Footer;