Saas-Teamspace/components/footer.tsx
2024-11-24 20:56:03 -05:00

19 lines
594 B
TypeScript

import Link from 'next/link'
import { Logo } from '@/components/logo'
export const Footer = () => {
return (
<footer className="max-w-6xl w-full p-6">
<div className="flex justify-center bg-secondary dark:bg-secondary/50 py-6 w-full rounded-xl">
<div className="w-full max-w-6xl flex flex-col md:flex-row items-center justify-between gap-6 px-6">
<Link href="/">
<Logo />
</Link>
<span className="text-sm">
&copy; 2024 YourCompany. All rights reserved.
</span>
</div>
</div>
</footer>
)
}