From 3dd21ec826a5d6d134306e8addaf85acc2ae74ca Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 14 Dec 2025 04:43:00 +0000 Subject: [PATCH 1/4] Initial plan From b8167e5b958d9820ea9e7ef53628bce8896290b0 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 14 Dec 2025 04:46:14 +0000 Subject: [PATCH 2/4] Add Services section with smooth scrolling and back-to-top button Co-authored-by: adab-tech <179881660+adab-tech@users.noreply.github.com> --- longblog.html | 135 ++++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 130 insertions(+), 5 deletions(-) diff --git a/longblog.html b/longblog.html index f661bef..4f7b9b8 100644 --- a/longblog.html +++ b/longblog.html @@ -221,6 +221,76 @@ user-select: none; } + /* Services Section */ + .services-grid { + display: grid; + grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); + gap: 1.8rem; + } + .service-card { + background: white; + border-radius: 10px; + box-shadow: 0 2px 10px rgba(11, 61, 145, 0.1); + padding: 2rem; + transition: transform 0.3s ease, box-shadow 0.3s ease; + border-left: 4px solid var(--accent-color); + } + .service-card:hover { + transform: translateY(-5px); + box-shadow: 0 8px 25px rgba(11, 61, 145, 0.2); + } + .service-card h3 { + margin-top: 0; + color: var(--primary-color); + font-size: 1.4rem; + margin-bottom: 1rem; + } + .service-card p { + color: var(--muted-text); + font-size: 1rem; + line-height: 1.7; + } + .service-card .service-icon { + font-size: 2.5rem; + margin-bottom: 1rem; + display: block; + } + + /* Smooth Scrolling */ + html { + scroll-behavior: smooth; + } + + /* Back to Top Button */ + .back-to-top { + position: fixed; + bottom: 2rem; + right: 2rem; + background-color: var(--accent-color); + color: white; + width: 50px; + height: 50px; + border-radius: 50%; + border: none; + cursor: pointer; + font-size: 1.5rem; + display: none; + align-items: center; + justify-content: center; + box-shadow: 0 4px 12px rgba(0, 122, 204, 0.3); + transition: background-color 0.3s ease, transform 0.3s ease; + z-index: 99; + } + .back-to-top:hover, + .back-to-top:focus { + background-color: var(--primary-color); + transform: translateY(-3px); + outline: none; + } + .back-to-top.visible { + display: flex; + } + /* Responsive nav for small screens */ @media (max-width: 700px) { header { @@ -238,21 +308,51 @@

Adamu Danjuma

-
+ +

Welcome! I'm Adamu Danjuma

PhD candidate, multilingual AI trainer, writer, and tech enthusiast. I help clients and collaborators with research, writing, AI data annotation, and digital storytelling.

Get in Touch
+ +
+

Services

+
+
+ +

Data Annotation

+

Expert data labeling and annotation services for machine learning and AI projects. I provide high-quality, accurate annotations for text, audio, and multilingual datasets to train robust AI models.

+
+
+ +

Multilingual AI Training

+

Specialized training data preparation for multilingual NLP systems. With expertise in multiple languages including Hausa, French, and English, I help develop inclusive AI systems that work across linguistic boundaries.

+
+
+ +

Translation and Localization

+

Professional translation and cultural localization services. I ensure your content resonates with diverse audiences while maintaining cultural authenticity and linguistic precision across multiple languages.

+
+
+ +

Consultancy

+

Expert guidance on low-resource languages for LLM development, cultural nuances in AI systems, and AI bias mitigation. I help organizations build more inclusive, culturally aware, and ethically sound AI solutions.

+
+
+
+
-

Portfolio

+

CV

Francophone African Literature Research

@@ -270,7 +370,7 @@

Technical Writing & Translation

-

Opinion & Insights

+

Blog

Exploring AI's Impact on Language Research

@@ -305,5 +405,30 @@

Contact Me

© 2025 Adamu Danjuma. All rights reserved.

+ + + + + From 5c8be9d7f421b199ea94282d05cc9dcefef933d9 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 14 Dec 2025 04:48:33 +0000 Subject: [PATCH 3/4] Fix navigation consistency: update portfolio section ID to cv Co-authored-by: adab-tech <179881660+adab-tech@users.noreply.github.com> --- longblog.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/longblog.html b/longblog.html index 4f7b9b8..0c8d4a5 100644 --- a/longblog.html +++ b/longblog.html @@ -310,7 +310,7 @@

Adamu Danjuma

@@ -351,7 +351,7 @@

Consultancy

-
+

CV

From 86d430d41e98f6c7ac9c5f4704f2b4960366d4ef Mon Sep 17 00:00:00 2001 From: Adamu Abubakar Date: Sun, 14 Dec 2025 11:53:45 -0600 Subject: [PATCH 4/4] Create CNAME --- CNAME | 1 + 1 file changed, 1 insertion(+) create mode 100644 CNAME diff --git a/CNAME b/CNAME new file mode 100644 index 0000000..715dcf6 --- /dev/null +++ b/CNAME @@ -0,0 +1 @@ +adamu.tech \ No newline at end of file