import Image from "next/image"; const Page = () => { return ( <div> <Image src="/github.svg" alt="Github logo" width={20} height={20} /> </div> ); };