mirror of
https://github.com/harivansh-afk/Saas-Teamspace.git
synced 2026-04-15 04:03:31 +00:00
19 lines
594 B
TypeScript
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">
|
|
© 2024 YourCompany. All rights reserved.
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
)
|
|
}
|