diff --git a/layouts/GeneralLayout.tsx b/layouts/GeneralLayout.tsx
index 9f11f20e9..b7d809d14 100644
--- a/layouts/GeneralLayout.tsx
+++ b/layouts/GeneralLayout.tsx
@@ -1,12 +1,14 @@
import React, { ReactNode } from "react";
+import { Footer } from "../components/Footer/Footer";
import { SideNavbar } from "../components/SideNavbar";
const GeneralLayout = ({ children }: { children: ReactNode }) => {
return (
-
+
{children}
+
);
diff --git a/pages/[subcategory].tsx b/pages/[subcategory].tsx
index 5fff45223..81a5b2ffa 100644
--- a/pages/[subcategory].tsx
+++ b/pages/[subcategory].tsx
@@ -8,7 +8,7 @@ const SubCategory = () => {
const router = useRouter();
const title :any = `LinksHub - ${router.asPath.charAt(1).toUpperCase()}${router.asPath.slice(2)}`;
return (
-
+
{title}
diff --git a/pages/index.tsx b/pages/index.tsx
index ec2c91449..33996c008 100644
--- a/pages/index.tsx
+++ b/pages/index.tsx
@@ -12,7 +12,7 @@ export default function Home() {
-
+