File size: 688 Bytes
62fd2ea
 
 
f3d88e5
 
62fd2ea
 
 
 
 
 
 
 
 
 
f3d88e5
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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;