import Image from "next/image"; import { cn } from "@/lib/utils"; type LogoStripProps = { className?: string; inverse?: boolean; }; const WHITE_FILTER = { filter: "brightness(0) invert(1)" }; /** * Chrome logo strip. Default: Flat101 + Indra co-branding. * Replace the tags or remove this component if your project has different partners. * * Required assets: * public/logos/flat101.svg (currentColor-aware) * public/logos/indra.png */ export function LogoStrip({ className, inverse = false }: LogoStripProps) { return (
Flat101 Indra
); }