import { cn } from '@/utils/styles'; type LogoProps = { brand: string }; const Logo = ({ brand }: LogoProps) => (
{/* Show on Light Theme */} {brand} {/* Show on Dark Theme */} {brand}
); const logoList: string[] = ['amazon', 'google', 'postman', 'twilio', 'zalando']; const LogoSection = () => (

Reactive Resume has helped people land jobs at these great companies:

{logoList.map((brand) => ( ))}

If this app has helped you with your job hunt, let me know by reaching out through{' '} this contact form .

); export default LogoSection;