mirror of
https://github.com/harivansh-afk/Saas-Teamspace.git
synced 2026-04-21 18:05:18 +00:00
initial commit
This commit is contained in:
commit
ef9ccf22d3
133 changed files with 20802 additions and 0 deletions
19
components/footer.tsx
Normal file
19
components/footer.tsx
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
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>
|
||||
)
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue