aboutsummaryrefslogtreecommitdiff
path: root/src/app/layout.jsx
diff options
context:
space:
mode:
authorreal-zephex <[email protected]>2024-04-08 16:57:21 +0530
committerreal-zephex <[email protected]>2024-04-08 16:57:21 +0530
commit9e42f2f67189845c6a88151743f30ad10a73a689 (patch)
tree0467fc9539787ce1b1a0423adc9b9b0231090315 /src/app/layout.jsx
parentsmall chanegs here and there, manga and anime pages are currently broken. cha... (diff)
downloaddramalama-9e42f2f67189845c6a88151743f30ad10a73a689.tar.xz
dramalama-9e42f2f67189845c6a88151743f30ad10a73a689.zip
prolly the last update to dramalama.
Diffstat (limited to 'src/app/layout.jsx')
-rw-r--r--src/app/layout.jsx4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/app/layout.jsx b/src/app/layout.jsx
index ac16247..6cb8c6a 100644
--- a/src/app/layout.jsx
+++ b/src/app/layout.jsx
@@ -2,6 +2,7 @@ import { Inter } from "next/font/google";
import styles from "./globals.module.css";
import "./globals.css";
import Header from "./components/header/header";
+import Footer from "./components/footer/page";
import { SpeedInsights } from "@vercel/speed-insights/next";
import { Analytics } from "@vercel/analytics/react";
@@ -19,7 +20,8 @@ export default function RootLayout({ children }) {
<body className={inter.className}>
<SpeedInsights />
<Analytics />
- {/* <Header /> */}
+ <Header />
+ <Footer />
{children}
</body>
</html>