import React from 'react'; // Reusable SVG component that precisely mimics the overlapping, sweeping arcs of the E-TIB logo. // The circles are offset along a diagonal to bunch together at the bottom-left and spread apart at the top-right. export const LogoArcs = ({ className }: { className?: string }) => ( {/* Outer ring */} {/* Middle thicker ring */} {/* Inner ring */} );