Skip to content

Commit 32d565c

Browse files
committed
refactor: simplify navigation links and update hero/about section descriptions
1 parent 3c3d5aa commit 32d565c

3 files changed

Lines changed: 9 additions & 14 deletions

File tree

components/Navbar.tsx

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,7 @@ import { FiMenu, FiX } from "react-icons/fi";
77
export default function Navbar() {
88
const [open, setOpen] = useState(false);
99

10-
const navLinks = [
11-
{ name: "About", href: "#about" },
12-
{ name: "Mission", href: "#mission" },
13-
{ name: "Research", href: "#research" },
14-
{ name: "Future Tech", href: "#future-tech" },
15-
];
10+
const navLinks = [{ name: "About", href: "#about" }];
1611

1712
return (
1813
<header className="fixed top-0 left-0 w-full z-40">

components/home/Hero.tsx

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,8 @@ export default function Hero() {
5959
transition={{ duration: 0.9 }}
6060
className="text-5xl sm:text-6xl lg:text-7xl font-semibold tracking-tight bg-gradient-to-r from-blue-200 to-white bg-clip-text text-transparent"
6161
>
62-
Building the Future of Open Research & Technology
62+
We are a Software Research Lab building Open Technologies for East
63+
Africa
6364
</motion.h1>
6465

6566
<motion.p
@@ -68,9 +69,9 @@ export default function Hero() {
6869
transition={{ duration: 1.1, delay: 0.2 }}
6970
className="mt-6 text-lg sm:text-xl text-gray-300 max-w-3xl mx-auto leading-relaxed"
7071
>
71-
OPEN UG LABS is pioneering next-generation technologies in Cloud,
72-
Quantum, AI, Post-Quantum Cryptography, Virtualization, and Open
73-
Infrastructure — all through open research and community empowerment.
72+
Open Labs is pioneering next-generation technologies in Cloud,
73+
Quantum, AI, Cryptography, Virtualization, and Open Infrastructure.
74+
all through open research and community empowerment.
7475
</motion.p>
7576

7677
{/* CTA Buttons */}

components/home/about.tsx

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,8 @@ export default function AboutSection() {
2929

3030
<p className="text-lg md:text-xl text-gray-300 leading-relaxed">
3131
Open UG Labs is a frontier research collective exploring the edges
32-
of modern computing — from quantum-resistant cryptography and
33-
virtualization technologies to intelligent systems and cloud-native
34-
infrastructure.
32+
of modern computing from cryptography and virtualization
33+
technologies to intelligent systems and cloud-native infrastructure.
3534
<br />
3635
<br />
3736
We push technology forward through open research, engineering
@@ -57,7 +56,7 @@ export default function AboutSection() {
5756
<FeatureCard
5857
icon={<FiTrendingUp className="w-10 h-10 text-blue-300" />}
5958
title="Future-Focused"
60-
description="We operate with long-term vision preparing Africa for quantum computing, AI infrastructure, and emerging tech fields."
59+
description="We operate with long-term vision preparing Africa for quantum computing, AI infrastructure, and emerging tech fields."
6160
/>
6261
</div>
6362
</div>

0 commit comments

Comments
 (0)