From 79341b9b4ca4c34e391f583e5a697a8ba7097e2d Mon Sep 17 00:00:00 2001
From: NISHIYAMA-Takuki <95198404+NISHIYAMA-Takuki@users.noreply.github.com>
Date: Sat, 28 Dec 2024 15:31:10 +0900
Subject: [PATCH] =?UTF-8?q?=E3=83=95=E3=83=83=E3=82=BF=E3=83=BC=E3=82=92?=
=?UTF-8?q?=E5=8F=8D=E6=98=A0?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/app/components/Footer/{page.tsx => index.tsx} | 0
src/app/not-found.tsx | 3 +++
src/app/page.tsx | 3 +++
3 files changed, 6 insertions(+)
rename src/app/components/Footer/{page.tsx => index.tsx} (100%)
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 {
+
+
);
}