import React from 'react' export default function BeforeAfterSlider({ beforeUrl, afterUrl, beforeAlt = 'Original image', afterAlt = 'Enhanced image' }) { const [position, setPosition] = React.useState(50) if (!beforeUrl || !afterUrl) { return null } return (

Before / after

Compare the original with the enhanced result

{position}%
{beforeAlt}
{afterAlt}
Original
Enhanced
) }