bravo68web-portfolio-nextjs/pages/stats.js

21 lines
426 B
JavaScript
Raw Normal View History

2022-01-18 09:50:39 +00:00
import Head from "next/head";
import Nav from "components/nav";
import Skills from "components/skills";
import Footer from "components/footer";
export default function Home() {
2022-04-02 23:42:08 +00:00
return (
<div>
<Head>
<title>
2022-05-10 09:25:40 +00:00
Stats | Jyotirmoy Bandyopadhayaya | Full Stack Web Developer and
2022-04-13 20:37:06 +00:00
DevOps Engineer
2022-04-02 23:42:08 +00:00
</title>
</Head>
<Nav />
<Skills />
2022-05-10 09:25:40 +00:00
<Footer />
2022-04-02 23:42:08 +00:00
</div>
);
2022-01-18 09:50:39 +00:00
}