import { t, Trans } from "@lingui/macro"; import { buttonVariants } from "@reactive-resume/ui"; import { cn } from "@reactive-resume/utils"; type LogoProps = { company: string }; const Logo = ({ company }: LogoProps) => (
{/* Show on Light Theme */} {company} {/* Show on Dark Theme */} {company}
); const logoList: string[] = ["amazon", "google", "postman", "twilio", "zalando"]; export const LogoCloudSection = () => (

{t`Reactive Resume has helped people land jobs at these great companies:`}

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

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

);