diff --git a/src/app/components/Footer/page.tsx b/src/app/components/Footer/index.tsx
similarity index 100%
rename from src/app/components/Footer/page.tsx
rename to src/app/components/Footer/index.tsx
diff --git a/src/app/not-found.tsx b/src/app/not-found.tsx
index 07a9694..00ec8a8 100644
--- a/src/app/not-found.tsx
+++ b/src/app/not-found.tsx
@@ -1,4 +1,5 @@
import Header from "@/app/components/Header";
+import Footer from "@/app/components/Footer";
import Logo from "@/../../public/syllabus_icon.svg";
import Image from "next/image";
@@ -56,6 +57,8 @@ export default function NotFound(): JSX.Element {
+
+
);
}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 8cab331..0d0a1e6 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -1,4 +1,5 @@
import Header from "@/app/components/Header";
+import Footer from "@/app/components/Footer";
import Logo from "@/../../public/syllabus_icon.svg";
import Image from "next/image";
@@ -63,6 +64,8 @@ export default function Home(): JSX.Element {
+
+
);
}