bravo68web-portfolio-nextjs/pages/contact.js

21 lines
441 B
JavaScript
Raw Normal View History

import Head from "next/head";
import Nav from "components/nav";
2022-03-31 18:52:29 +00:00
import Contact from "components/contact";
import Footer from "components/footer";
export default function Home() {
2022-08-19 18:03:24 +00:00
return (
<div>
<Head>
<title>
2022-04-13 20:37:06 +00:00
Contact | Jyotirmoy Bandyopadhayaya | Full Stack Web Developer and
DevOps Engineer
</title>
</Head>
<Nav />
<Contact />
2022-04-02 19:52:51 +00:00
{/* <Footer /> */}
</div>
);
}