bravo68web-portfolio-nextjs/pages/toots.js

22 lines
385 B
JavaScript
Raw Permalink Normal View History

2023-01-14 22:14:48 +00:00
import Head from "next/head";
import Nav from "components/nav";
import Toots from "components/toots";
2023-01-14 22:14:48 +00:00
import Footer from "components/footer";
export default function Home() {
2023-06-12 08:03:13 +00:00
return (
<div>
<Head>
<title>
Toots | Jyotirmoy Bandyopadhayaya | Full Stack Web Developer
and DevOps Engineer
</title>
</Head>
<Nav />
<Toots />
2023-01-14 22:14:48 +00:00
2023-06-12 08:03:13 +00:00
<Footer />
</div>
);
2023-01-14 22:14:48 +00:00
}