Files
zin-tools/components/footer.tsx
2024-02-02 10:05:16 +05:00

7 lines
209 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-[1400px] mx-auto">Footer</div>
</footer>
)