doctor-on-call.js
409 Bytes
import React from "react";
import { createWrapper } from "next-redux-wrapper";
import Image from "next/image";
const DoctorOnCall = () => {
return (
<div>
<h1>Hello world</h1>
<span className=""></span>
<Image
// priority={true}
width="3000px"
height="600px"
src="/banner/abu-faqs-d.png"
></Image>
</div>
);
};
export default DoctorOnCall;