index.js
636 Bytes
import Head from "next/head";
import Image from "next/image";
// import '../../public/banner/abu-faqs-d.png'
export default function Home() {
return (
<>
<Head>
<title>Create Next App</title>
<meta name="description" content="Generated by create next app" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" href="/favicon.ico" />
</Head>
<div>
<h1>Hello world
</h1>
<span className="">
</span>
<Image width='3000px' height='600px' src="/banner/abu-faqs-d.png"></Image>
</div>
</>
);
}