initial commit

This commit is contained in:
Harivansh Rathi 2024-11-24 20:56:03 -05:00
commit ef9ccf22d3
133 changed files with 20802 additions and 0 deletions

19
components/footer.tsx Normal file
View 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">
&copy; 2024 YourCompany. All rights reserved.
</span>
</div>
</div>
</footer>
)
}