Open to opportunities

Sule Malik

Frontend Engineer & Digital Product CraftsmanGhana

I'm a frontend engineer with a passion for building exceptional digital experiences. With expertise in React, Next.js, and modern web technologies, I focus on creating scalable, performant, and user-centric applications.

Over the years, I've had the privilege of building high-performance SaaS platforms, robust LMS systems, and scalable e-commerce solutions. I thrive in the intersection of thoughtful design and deep technical architecture.

ReactNext.jsTypeScriptSupabaseNode.jsTailwindCSS
Sule Malik

Sule Malik

Frontend Engineer & Product Craftsman

profile.ts
const stack='React + Next.js'
type Role='Frontend Engineer'
focus='Performance & UX'
_

Experience

5+ Years

Projects

30+ Built

Experience Timeline

Where I've Built & Shipped

My journey across companies, roles, and real production environments
25

nt
Full-time2025 – Present

LynkGroup

Frontend & Digital Content Engineer (SEO)

Leading frontend engineering and digital content strategy (SEO) across multiple cybersecurity and consulting platforms.

ReactNext.jsTypeScriptDirectus CMS+2 more

Key Contributions

  • Architected and executed a full migration to Directus CMS, creating a structured and maintainable content workflow
  • Built and maintained production platforms including cylynk.com and bridgelynk (a cybersecurity consulting website)
  • Doubled as a Digital Content Engineer, optimizing SEO strategies and technical performance across the platforms
  • Worked directly with the design team to translate Figma prototypes to pixel-perfect React components
  • Implemented reusable component library adopted across the entire frontend team
ReactNext.jsTypeScriptDirectus CMSSEOTailwind
25

25
Full-timeJan 2025 – Dec 2025

Amalitech

Software Engineer

Worked in an Agile team building enterprise Angular applications with strong TypeScript and reactive programming practices.

AngularTypeScriptRxJSNgRx+2 more
20

nt
Independent2020 – Present

Freelance

Full-Stack Developer

Delivered end-to-end web solutions for clients across e-commerce, SaaS, and dashboard verticals while managing the full product lifecycle independently.

ReactNext.jsNode.jsSupabase+2 more
19

23
Education2019 – 2023

University of Technology

BSc Computer Science

Laid the foundation for my software engineering journey. Focused on core computer science principles, algorithms, and full-stack development.

BlockchainC++JavaData Structures+2 more

Engineering Philosophy

How I Think About Engineering

The principles that guide every decision I make when building software

“I believe great software is not just functional — it should be scalable, maintainable, and enjoyable to use.”

Scalability

Every architectural decision I make accounts for 10x growth. I design systems that don't need to be rewritten when the user base explodes.

Maintainability

Code I write today will be read by a colleague (or future me) at 2am during an incident. I write for clarity, not cleverness.

User Experience

Technology exists to serve people. I obsess over interactions, loading states, and edge cases because users feel the difference even when they can't name it.

Performance

Every millisecond of load time costs conversions. I treat performance as a feature — not a post-launch checklist item.

Developer Experience

A team that ships fast requires tooling that gets out of the way. I invest in DX through consistent patterns, strong typing, and automated workflows.

Business Impact

I don't just build features — I understand why we're building them. Engineering decisions are business decisions, and I keep both in mind.

Technical Expertise

Tools of the Trade

A comprehensive look at the technologies I use to build robust applications
developer.ts
1const developer = {
2 name: "Sule Malik",
3 role: "Frontend Engineer",
4 skills: {
5 frontend: ["React", "Next.js", "TypeScript", "Tailwind"],
6 backend: ["Node.js", "Supabase", "PostgreSQL"],
7 architecture: ["Micro-frontends", "Serverless", "System Design"],
8 },
9 status: "Available for new opportunities",
10
11 build: async (idea: string) => {
12 try {
13 const architecture = await designSystem(idea);
14 const product = await execute(architecture);
15 return deploy(product); // 🚀
16 } catch (error) {
17 return iterateAndImprove();
18 }
19 },
20};
21
22export default developer;

Frontend Engineering

React / Next.js95%
TypeScript90%
Angular85%
Tailwind CSS95%
Framer Motion80%

State Management

Redux Toolkit90%
NgRx85%
RxJS85%
Zustand90%
React Query95%

Backend & Cloud

Node.js / Express80%
MongoDB75%
Supabase85%
Vercel / CI/CD85%
PostgreSQL70%

Design & Tooling

Figma to Code95%
Git Workflow90%
Jest / Vitest80%
Webpack / Vite85%
Storybook80%

Technical Depth

Engineering Challenges I've Solved

How I approach and resolve complex technical blockers across various domains.
Raedax Trading Platform

Sub-100ms Trade Execution

The Blocker

High-frequency crypto trades were failing due to client-side data staleness and REST polling delays during peak market volatility.

The Solution

Transitioned to a WebSocket-first architecture with TanStack Start and React Query. Implemented optimistic updates to instantly reflect local state, slashing latency to under 100ms.

CampusGoShop

Real-Time Inventory Sync

The Blocker

Student vendors faced critical overselling issues during flash sales because inventory counts were only updated post-checkout.

The Solution

Integrated Supabase Realtime subscriptions with Postgres row-level locks. This provided sub-second inventory sync across all active sessions, completely eliminating race conditions.

SmartAura Tracker

Offline-First Mobile App

The Blocker

Users struggled to scan receipts or log subscriptions in low-connectivity areas like grocery stores or basements.

The Solution

Engineered a robust Progressive Web App (PWA) leveraging Service Workers and IndexedDB. A background sync queue reliably pushes stored actions when connectivity is restored.