--- interface Props { opacity?: number; lines?: number; } const { opacity = 0.12, lines = 8 } = Astro.props; const paths: string[] = []; const stepY = 100 / (lines + 1); for (let i = 1; i <= lines; i++) { const y = i * stepY; const amp = 4 + (i % 3) * 2; paths.push(`M0,${y} Q25,${y - amp} 50,${y + amp * 0.6} T100,${y}`); } ---