feat: move to nextjs

This commit is contained in:
apoorvlathey
2024-05-07 00:18:18 +10:00
parent 602ae4389e
commit 032785a316
49 changed files with 9867 additions and 8425 deletions

15
app/page.tsx Normal file
View File

@@ -0,0 +1,15 @@
import Body from "@/components/Body";
import Navbar from "@/components/Navbar";
import Footer from "@/components/Footer";
const Home = () => {
return (
<div>
<Navbar />
<Body />
<Footer />
</div>
);
};
export default Home;