From 5fc84665d60cefaeb6ea04e36ef8aa37d9bdd41d Mon Sep 17 00:00:00 2001
From: Mahamud Muhammad Saidu <97337541+merhmoud-m@users.noreply.github.com>
Date: Sat, 21 Feb 2026 23:22:04 +0100
Subject: [PATCH 1/2] Added navigation bar
---
public/index.html | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/public/index.html b/public/index.html
index a4e0fac..c60e3b5 100644
--- a/public/index.html
+++ b/public/index.html
@@ -9,7 +9,12 @@
-
+
+
+
From c190bcf2b424885c158109e5aae3d79c2b45cdaa Mon Sep 17 00:00:00 2001
From: Mahamud Muhammad Saidu <97337541+merhmoud-m@users.noreply.github.com>
Date: Sat, 21 Feb 2026 23:25:21 +0100
Subject: [PATCH 2/2] Added navigation bar style
---
public/style.css | 14 ++++++++++++++
1 file changed, 14 insertions(+)
diff --git a/public/style.css b/public/style.css
index 01d4310..f93c2f3 100644
--- a/public/style.css
+++ b/public/style.css
@@ -20,3 +20,17 @@ body {
flex-direction: column;
}
+nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 1rem 2rem;
+ background-color: #fff;
+ box-shadow: 0 2px 4px rgba(0,0,0,0.1);
+}
+
+.logo {
+ font-size: 1.5rem;
+ font-weight: bold;
+ color: #2c3e50;
+}