Skip to content
  • This project
    • Loading...
  • Sign in

Jay Mehta / next-old-version

Go to a project
Toggle navigation
Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Registry
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • next-old-version
  • src
  • pages
  • doctor-on-call.js
  • jay's avatar
    . · dc270946
    jay committed 2024-02-26 16:18:31 +0530
    dc270946
doctor-on-call.js 409 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
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;