Formated Files

This commit is contained in:
Ahmad 2024-02-15 20:49:19 -05:00
parent d5631b309a
commit e768d9181f
No known key found for this signature in database
GPG key ID: 8FD8A93530D182BF
138 changed files with 1829 additions and 1851 deletions

View file

@ -1,16 +1,16 @@
import { Logo } from "@/components/logo";
import { Button } from "@/components/ui/button";
import { Logo } from '@/components/logo';
import { Button } from '@/components/ui/button';
export const Footer = () => {
return (
<div className="fixed bottom-0 w-full p-4 border-t bg-slate-100">
<div className="md:max-w-screen-2xl mx-auto flex items-center w-full justify-between">
<div className='fixed bottom-0 w-full border-t bg-slate-100 p-4'>
<div className='mx-auto flex w-full items-center justify-between md:max-w-screen-2xl'>
<Logo />
<div className="space-x-4 md:block md:w-auto flex items-center justify-between w-full">
<Button size="sm" variant="ghost">
<div className='flex w-full items-center justify-between space-x-4 md:block md:w-auto'>
<Button size='sm' variant='ghost'>
Privacy Policy
</Button>
<Button size="sm" variant="ghost">
<Button size='sm' variant='ghost'>
Terms of Service
</Button>
</div>