From c5c48d39eb478985e7ac04460dc5c58a8099968e Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 01:09:05 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 172 ++++++++++++++++++++++------------------------- 1 file changed, 81 insertions(+), 91 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index dea2c1c..21fbdba 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -8,18 +8,12 @@ import FeatureCardEight from "@/components/sections/feature/FeatureCardEight"; import ProductCardOne from "@/components/sections/product/ProductCardOne"; import MetricCardEleven from "@/components/sections/metrics/MetricCardEleven"; import TeamCardFive from "@/components/sections/team/TeamCardFive"; +import TestimonialCardTen from "@/components/sections/testimonial/TestimonialCardTen"; +import FooterSimple from "@/components/sections/footer/FooterSimple"; import { Cpu, Server, Zap, Users, Award } from "lucide-react"; import Link from "next/link"; export default function HomePage() { - const navItems = [ - { name: "Home", id: "/" }, - { name: "Solutions", id: "/solutions" }, - { name: "Infrastructure", id: "/infrastructure" }, - { name: "Team", id: "/team" }, - { name: "Contact", id: "/contact" }, - ]; - const navItemsForNavbar = [ { name: "Home", id: "home" }, { name: "Solutions", id: "solutions" }, @@ -45,9 +39,7 @@ export default function HomePage() { @@ -56,14 +48,14 @@ export default function HomePage() { @@ -124,26 +103,11 @@ export default function HomePage() { +
+ +
+ ); -- 2.49.1 From b95c90b84d5984165cfd3e840fb7d483a97ebddb Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 01:09:05 +0000 Subject: [PATCH 2/2] Update src/app/solutions/page.tsx --- src/app/solutions/page.tsx | 94 +++++++++++++++++++------------------- 1 file changed, 46 insertions(+), 48 deletions(-) diff --git a/src/app/solutions/page.tsx b/src/app/solutions/page.tsx index 54f186c..28b2d07 100644 --- a/src/app/solutions/page.tsx +++ b/src/app/solutions/page.tsx @@ -4,6 +4,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; import FeatureCardEight from "@/components/sections/feature/FeatureCardEight"; import TestimonialCardTen from "@/components/sections/testimonial/TestimonialCardTen"; +import FooterSimple from "@/components/sections/footer/FooterSimple"; import { Zap, Award } from "lucide-react"; import Link from "next/link"; @@ -33,9 +34,7 @@ export default function SolutionsPage() { @@ -45,25 +44,13 @@ export default function SolutionsPage() { features={[ { id: 1, - title: "Cloud Infrastructure", - description: "AWS-native architecture with auto-scaling Kubernetes clusters, containerized workloads, and enterprise-grade networking for 99.99% uptime SLAs.", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AVKNo1f7tHooZ2gXlX4V4cPscb/aws-cloud-infrastructure-visualization-w-1772672802173-429b864a.png?_wi=3", - imageAlt: "Cloud Infrastructure", - }, + title: "Cloud Infrastructure", description: "AWS-native architecture with auto-scaling Kubernetes clusters, containerized workloads, and enterprise-grade networking for 99.99% uptime SLAs.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AVKNo1f7tHooZ2gXlX4V4cPscb/aws-cloud-infrastructure-visualization-w-1772672802173-429b864a.png", imageAlt: "Cloud Infrastructure"}, { id: 2, - title: "Zero-Trust Security", - description: "Multi-layered encryption, DDoS protection, real-time threat detection, and compliance frameworks (ISO 27001, SOC 2 Type II) ensuring data sovereignty.", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AVKNo1f7tHooZ2gXlX4V4cPscb/enterprise-security-interface-showing-en-1772672801093-dda964a7.png?_wi=3", - imageAlt: "Security Protocol", - }, + title: "Zero-Trust Security", description: "Multi-layered encryption, DDoS protection, real-time threat detection, and compliance frameworks (ISO 27001, SOC 2 Type II) ensuring data sovereignty.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AVKNo1f7tHooZ2gXlX4V4cPscb/enterprise-security-interface-showing-en-1772672801093-dda964a7.png", imageAlt: "Security Protocol"}, { id: 3, - title: "Regional Network Hub", - description: "Fiber-optic backbone connecting Kigali to major African tech hubs. Sub-50ms latency to East African region with redundant routing and failover protocols.", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AVKNo1f7tHooZ2gXlX4V4cPscb/global-network-topology-with-kigali-as-p-1772672802328-306f8043.png?_wi=2", - imageAlt: "Network Topology", - }, + title: "Regional Network Hub", description: "Fiber-optic backbone connecting Kigali to major African tech hubs. Sub-50ms latency to East African region with redundant routing and failover protocols.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AVKNo1f7tHooZ2gXlX4V4cPscb/global-network-topology-with-kigali-as-p-1772672802328-306f8043.png", imageAlt: "Network Topology"}, ]} title="Enterprise Solutions" description="Mission-critical infrastructure designed for institutional requirements" @@ -71,7 +58,6 @@ export default function SolutionsPage() { tagIcon={Zap} textboxLayout="default" useInvertedBackground={true} - mediaAnimation="opacity" /> @@ -79,32 +65,11 @@ export default function SolutionsPage() { ); -- 2.49.1