From 610877aa0cd1ea733abb235a4dd131c1f88cd9a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henry=20Gr=C3=A6sberg?= Date: Fri, 25 Oct 2024 19:19:42 +0200 Subject: [PATCH 1/4] Fix navbar centering itself on larger screens --- src/app/not-found.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/app/not-found.tsx b/src/app/not-found.tsx index a7f28e6..5bb5a0f 100644 --- a/src/app/not-found.tsx +++ b/src/app/not-found.tsx @@ -6,8 +6,10 @@ import Navbar from "./components/Navbar"; const NotFound = () => { return ( + <> +
- +

Ser ut som du har havnet på feil sted

404: Page not found

@@ -18,6 +20,7 @@ const NotFound = () => {
+ ); } From c1a5dbc03ffda6f2cabb2f595638393c63317d5e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henry=20Gr=C3=A6sberg?= Date: Fri, 25 Oct 2024 19:20:00 +0200 Subject: [PATCH 2/4] Remove double navbar and footer --- src/app/page.tsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index f29b453..ef068f1 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,13 +1,11 @@ -import Image from "next/image"; import Navbar from "./components/Navbar"; import Footer from "./components/Footer"; -import Page from "./about/page"; export default function Home() { return (
- +

Home

) From 99e93b4e257801137ecc9dd364433b59192c0497 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henry=20Gr=C3=A6sberg?= Date: Fri, 25 Oct 2024 19:20:24 +0200 Subject: [PATCH 3/4] Fix navbar scrollbar overflow --- src/app/components/Navbar.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/components/Navbar.tsx b/src/app/components/Navbar.tsx index d1935e1..554ae77 100644 --- a/src/app/components/Navbar.tsx +++ b/src/app/components/Navbar.tsx @@ -5,7 +5,7 @@ import { Icon } from "@iconify/react"; const Navbar = () => { return ( -