Florin Bobiș
modified footer
62fd2ea
raw
history blame
688 Bytes
import Logo from "./logo";
import { Button } from "./ui/button";
const Footer = () => {
return (
<footer className="sticky bottom-0 flex h-12 items-center justify-center border-t gap-4 bg-background/50 backdrop-blur px-4 mt-10 md:px-6 z-30 border-zinc-200 dark:border-zinc-800">
<Logo showText={false} showCopyright />
<div className="md:ml-auto w-full justify-between md:justify-end flex items-center gap-x-2 text-muted-foreground">
<Button variant="ghost" size="sm">
Privacy Policy
</Button>
<Button variant="ghost" size="sm">
Terms & Conditions
</Button>
</div>
</footer>
);
};
export default Footer;