Files
zin-tools/components/footer.tsx
2024-02-01 20:28:42 +05:00

7 lines
204 B
TypeScript

export const Footer = () => (
// TODO: remove dummy height min-h-[600px]
<footer className="w-full min-h-[600px] bg-gray-100">
<div className="w-full max-w-7xl mx-auto">Footer</div>
</footer>
)