next.js/examples/image-component/app/responsive/page.tsx
page.tsx24 lines511 B
import Image from "next/image";
import ViewSource from "../../components/view-source";
import mountains from "../../public/mountains.jpg";

const Responsive = () => (
  <div>
    <ViewSource pathname="app/responsive/page.tsx" />
    <h1>Image Component With Layout Responsive</h1>
    <Image
      alt="Mountains"
      src={mountains}
      width={700}
      height={475}
      sizes="100vw"
      style={{
        width: "100%",
        height: "auto",
      }}
    />
  </div>
);

export default Responsive;
Quest for Codev2.0.0
/
SIGN IN