-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathservices.ts
More file actions
150 lines (148 loc) · 5.77 KB
/
Copy pathservices.ts
File metadata and controls
150 lines (148 loc) · 5.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
export type Service = {
slug: string;
icon: string;
title: string;
short: string;
description: string;
includes: string[];
timeline: string;
proof: { label: string; href: string };
};
export const services: Service[] = [
{
slug: "product-web-engineering",
icon: "layout",
title: "Product & Web Engineering",
short:
"Custom websites, web apps, and SaaS platforms in Next.js/TypeScript — from landing page to multi-role platform.",
description:
"We build custom websites, web apps, and SaaS platforms in Next.js and TypeScript. From a single landing page to a multi-role platform with auth, dashboards, and admin panels — designed, built, and shipped to production.",
includes: [
"Next.js / TypeScript architecture",
"Authentication & role-based access",
"Dashboards and admin panels",
"Component systems & design-to-code",
],
timeline: "2–10 weeks",
proof: { label: "Helping Tribe Academy", href: "/work/helping-tribe-academy" },
},
{
slug: "ecommerce-development",
icon: "cart",
title: "E-Commerce Development",
short:
"Storefronts with carts, wishlists, custom-order flows, wholesale support, and Paystack/Stripe payments.",
description:
"Storefronts that sell — carts, wishlists, custom-order flows, wholesale support, and payment integration with Paystack or Stripe. Editorial, fast, and built to convert.",
includes: [
"Cart, wishlist & checkout",
"Custom-order & wholesale flows",
"Paystack / Stripe integration",
"Inventory & order management",
],
timeline: "3–8 weeks",
proof: { label: "Wearables Atelier", href: "/work/wearables-atelier" },
},
{
slug: "cloud-devops",
icon: "cloud",
title: "Cloud & DevOps Engineering",
short:
"AWS-native architecture (CDK, Lambda, Fargate, EventBridge), CI/CD, IaC, caching, and cost optimization.",
description:
"AWS-native architecture built with CDK, Lambda, Fargate, and EventBridge — plus CI/CD, infrastructure-as-code, caching layers, payment pipelines, and cost optimization. Infrastructure you can reason about and trust.",
includes: [
"AWS CDK infrastructure-as-code",
"CI/CD pipelines (GitHub Actions)",
"Caching & payment pipelines",
"Cost & performance optimization",
],
timeline: "2–8 weeks",
proof: { label: "Serverless YouTube Sync Pipeline", href: "/work/serverless-youtube-pipeline" },
},
{
slug: "ai-integration",
icon: "spark",
title: "AI Integration & Automation",
short:
"LLM-powered features, AI agents (MCP), study/HR/compliance copilots, chatbots, and automation bots.",
description:
"LLM-powered features, AI agents built on MCP, study/HR/compliance copilots, chatbots, and automation bots. We integrate AI where it creates measurable value — not where it makes a demo.",
includes: [
"LLM features (OpenAI, LangChain)",
"AI agents & MCP tooling",
"Copilots & chatbots",
"Automation & DOM agents",
],
timeline: "2–6 weeks",
proof: { label: "StudyCoach", href: "/work/studycoach" },
},
{
slug: "cybersecurity-soc",
icon: "shield",
title: "Cybersecurity & SOC Services",
short:
"Security monitoring (Sentinel/Splunk), threat hunting, phishing-readiness, IR playbooks, MITRE-mapped reporting.",
description:
"Security monitoring setup with Sentinel or Splunk, threat hunting, phishing-readiness assessments, incident response playbooks, firewall configuration, and MITRE ATT&CK-mapped reporting — led by an ISC2-certified SOC analyst.",
includes: [
"SIEM setup (Sentinel / Splunk)",
"Threat hunting & detections",
"Phishing-readiness assessments",
"Incident response playbooks",
],
timeline: "1–4 weeks",
proof: { label: "SOC Detection Lab & KQL Playbook", href: "/work/soc-detection-lab" },
},
{
slug: "it-support-managed",
icon: "wrench",
title: "IT Support & Managed Services",
short:
"Ongoing maintenance, uptime monitoring, user/access management, and retainer support.",
description:
"Ongoing maintenance, uptime monitoring, user and access management, hardware-network troubleshooting, and retainer support — backed by daily enterprise IT operations experience in oil & gas.",
includes: [
"Uptime & monitoring",
"User & access management",
"Hardware / network troubleshooting",
"Retainer support",
],
timeline: "Ongoing retainer",
proof: { label: "SLN Engineering Ltd", href: "/work/sln-engineering" },
},
{
slug: "training-mentorship",
icon: "book",
title: "Training & Technical Mentorship",
short:
"Corporate and individual training in web development, Web3 fundamentals, and security awareness.",
description:
"Corporate and individual training in web development, Web3 fundamentals, and security awareness. Our team has mentored students at Aptech and runs a 500+ member learning community.",
includes: [
"Web development training",
"Web3 fundamentals",
"Security awareness",
"Team & individual mentorship",
],
timeline: "Per cohort",
proof: { label: "The Thesis Desk community", href: "/work/the-thesis-desk" },
},
];
export const engagementModels = [
{
title: "Project",
description:
"Fixed-scope build with a clear deliverable, timeline, and written proposal. Best for launches and redesigns.",
},
{
title: "Retainer",
description:
"Ongoing engineering, maintenance, and support on a monthly basis. Best for live products that keep evolving.",
},
{
title: "Staff augmentation",
description:
"Embed one or more of our engineers into your team for a defined period. Best for scaling delivery fast.",
},
];