bravo68web-portfolio-nextjs/pages/stats.js

25 lines
536 B
JavaScript
Raw Permalink Normal View History

2022-01-18 09:50:39 +00:00
import Head from "next/head";
import Nav from "components/nav";
2023-11-27 14:36:33 +00:00
// import Skills from "components/skills";
2022-01-18 09:50:39 +00:00
import Footer from "components/footer";
2023-11-27 14:36:33 +00:00
import dynamic from 'next/dynamic';
const Skills = dynamic(() => import('components/skills'), {
ssr: false, // Disable server-side rendering
});
2022-01-18 09:50:39 +00:00
export default function Home() {
2023-06-12 08:03:13 +00:00
return (
<div>
<Head>
<title>
Stats | Jyotirmoy Bandyopadhayaya | Full Stack Web Developer
and DevOps Engineer
</title>
</Head>
<Nav />
<Skills />
<Footer />
</div>
);
2023-11-27 14:36:33 +00:00
}