7 lines
209 B
TypeScript
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>
|
|
)
|