import React from 'react' type Props = { compact?: boolean } export function Footer({ compact = false }: Props) { const heightClass = compact ? 'h-12 md:h-14 lg:h-16' : 'h-16 md:h-20 lg:h-24' return ( ) }