import Image from 'next/image'
export function Feature(props: {
src
imageAlt: string
imagePosition: 'left' | 'right'
children
}) {
return (
{props.imagePosition === 'right' ? (
{props.children}
) : (
{props.children}
)}
{props.imagePosition === 'left' ? (
{props.children}
) : null}
)
}