From 867c19f5704e90a4d006859906d9bcd265e76c77 Mon Sep 17 00:00:00 2001 From: Hannah Date: Wed, 4 Mar 2026 05:29:32 +0100 Subject: [PATCH 1/4] Added new Header links --- components/layout/Header.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/components/layout/Header.tsx b/components/layout/Header.tsx index 6c27132..1c1b42c 100644 --- a/components/layout/Header.tsx +++ b/components/layout/Header.tsx @@ -7,6 +7,8 @@ export default function Header() { + + ) From ebc3a26fc8f6da81dd046c9c38ecc4a5da8d34ca Mon Sep 17 00:00:00 2001 From: Hannah Date: Wed, 4 Mar 2026 05:29:41 +0100 Subject: [PATCH 2/4] Added RoundedContainer component --- components/ui/RoundedContainer.tsx | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 components/ui/RoundedContainer.tsx diff --git a/components/ui/RoundedContainer.tsx b/components/ui/RoundedContainer.tsx new file mode 100644 index 0000000..e3e427d --- /dev/null +++ b/components/ui/RoundedContainer.tsx @@ -0,0 +1,9 @@ +import React from "react"; + +export default function RoundedContainer({children, slim = true}: {children: React.ReactNode, slim?: boolean}) { + return ( +
+ {children} +
+ ) +} \ No newline at end of file From 5e5b901bf418ce62f1a89906b9596ba704ad05b4 Mon Sep 17 00:00:00 2001 From: Hannah Date: Wed, 4 Mar 2026 05:29:59 +0100 Subject: [PATCH 3/4] Updated App Layout using new Component --- app/layout.tsx | 4 +++- app/page.tsx | 10 ++++++---- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/app/layout.tsx b/app/layout.tsx index fdb7c84..9b5fcfd 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -18,7 +18,9 @@ export default function RootLayout({ {/* className=${geistSans.variable} ${geistMono.variable} */}
- {children} +
+ {children} +
); diff --git a/app/page.tsx b/app/page.tsx index a2dec80..e29ef3e 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -1,9 +1,11 @@ import Image from "next/image"; + import RoundedContainer from "@/components/ui/RoundedContainer"; + export default function Home() { return ( -
-
+
+
- - + + ); } From 09b9d8f768e3485bd7ad86e115fbc0d03df917e3 Mon Sep 17 00:00:00 2001 From: Hannah Date: Wed, 4 Mar 2026 05:30:38 +0100 Subject: [PATCH 4/4] Changed /Hannah sub-routes, added a Projects page, and changed the /Hannah main page :] --- app/Hannah/CV/page.tsx | 10 +++ app/Hannah/Portfolio/CV/page.tsx | 7 -- app/Hannah/Portfolio/Projects/page.tsx | 7 -- app/Hannah/Projects/page.tsx | 120 +++++++++++++++++++++++++ app/Hannah/{Portfolio => }/layout.tsx | 2 +- app/Hannah/page.tsx | 26 +++++- public/Missy.jpg | Bin 0 -> 303756 bytes public/ServerUML.png | Bin 0 -> 195281 bytes 8 files changed, 154 insertions(+), 18 deletions(-) create mode 100644 app/Hannah/CV/page.tsx delete mode 100644 app/Hannah/Portfolio/CV/page.tsx delete mode 100644 app/Hannah/Portfolio/Projects/page.tsx create mode 100644 app/Hannah/Projects/page.tsx rename app/Hannah/{Portfolio => }/layout.tsx (83%) create mode 100644 public/Missy.jpg create mode 100644 public/ServerUML.png diff --git a/app/Hannah/CV/page.tsx b/app/Hannah/CV/page.tsx new file mode 100644 index 0000000..6af6b4a --- /dev/null +++ b/app/Hannah/CV/page.tsx @@ -0,0 +1,10 @@ +import Referencelink from "@/components/ui/Referencelink"; + +export default function CVPage(){ + return ( +
+