From fd67f847c54fa0f3159b7184dbc0b90cb9e6508d Mon Sep 17 00:00:00 2001
From: norioriroiron <97643161+norioriroiron@users.noreply.github.com>
Date: Thu, 4 Jun 2026 15:37:32 -0400
Subject: [PATCH 1/3] add footer
---
src/App.tsx | 2 ++
src/components/Footer.tsx | 20 ++++++++++++++++++++
2 files changed, 22 insertions(+)
create mode 100644 src/components/Footer.tsx
diff --git a/src/App.tsx b/src/App.tsx
index d7a36b3..ab6b73c 100644
--- a/src/App.tsx
+++ b/src/App.tsx
@@ -3,6 +3,7 @@ import '@xyflow/react/dist/style.css';
import Header from '@/components/Header';
import Explorer from '@/pages/Explorer';
import Planner from '@/pages/Planner';
+import Footer from '@/components/Footer'
export default function App() {
return (
@@ -16,6 +17,7 @@ export default function App() {
} />
+
);
diff --git a/src/components/Footer.tsx b/src/components/Footer.tsx
new file mode 100644
index 0000000..8bad900
--- /dev/null
+++ b/src/components/Footer.tsx
@@ -0,0 +1,20 @@
+
+export default function Footer() {
+ return (
+
+ );
+}
\ No newline at end of file
From 8636230f717d9a080f4bbee5d4fd3727a53a0af4 Mon Sep 17 00:00:00 2001
From: norioriroiron <97643161+norioriroiron@users.noreply.github.com>
Date: Sat, 6 Jun 2026 16:26:50 -0400
Subject: [PATCH 2/3] implement requested changes
---
src/components/Footer.tsx | 30 +++++++++++++++++-------------
1 file changed, 17 insertions(+), 13 deletions(-)
diff --git a/src/components/Footer.tsx b/src/components/Footer.tsx
index 8bad900..f8a42ef 100644
--- a/src/components/Footer.tsx
+++ b/src/components/Footer.tsx
@@ -2,19 +2,23 @@
export default function Footer() {
return (
);
}
\ No newline at end of file
From 67e8452b718da44d2dfc04e8ab67817ba0935221 Mon Sep 17 00:00:00 2001
From: norioriroiron <97643161+norioriroiron@users.noreply.github.com>
Date: Sat, 6 Jun 2026 17:36:08 -0400
Subject: [PATCH 3/3] cleanup and format
---
src/App.tsx | 2 +-
src/components/Footer.tsx | 23 ++++++++++++++++-------
2 files changed, 17 insertions(+), 8 deletions(-)
diff --git a/src/App.tsx b/src/App.tsx
index ab6b73c..5d0d373 100644
--- a/src/App.tsx
+++ b/src/App.tsx
@@ -3,7 +3,7 @@ import '@xyflow/react/dist/style.css';
import Header from '@/components/Header';
import Explorer from '@/pages/Explorer';
import Planner from '@/pages/Planner';
-import Footer from '@/components/Footer'
+import Footer from '@/components/Footer';
export default function App() {
return (
diff --git a/src/components/Footer.tsx b/src/components/Footer.tsx
index f8a42ef..e85c437 100644
--- a/src/components/Footer.tsx
+++ b/src/components/Footer.tsx
@@ -1,4 +1,3 @@
-
export default function Footer() {
return (
- Not affiliated with or endorsed by Carleton University.{' '}
- Always verify course requirements in the{' '}
-
+ Not affiliated with or endorsed by Carleton University. Always verify
+ course requirements in the{' '}
+
official undergraduate calendar
- .
+
+ .
- © {new Date().getFullYear()} Carleton Computer Science Society - GitHub
+ © {new Date().getFullYear()} Carleton Computer Science Society -{' '}
+
+ GitHub
+
);
-}
\ No newline at end of file
+}