API references, smart contract specs, and integration guides.
Node 18+ and pnpm 8+ are recommended.
pnpm install
pnpm dev
pnpm lint
pnpm exec tsc --noEmitArticles live in content/articles/ and appear in /apple-touch-icon.png/lab. content/articles/ · /apple-touch-icon.png/lab.
Use the provided template and frontmatter fields (tags, techStack, meta...).
Article Template & GuideInline canvas mounted lazily via IntersectionObserver:
app/components/3d/ArtifactView.tsxGLSL blend shader for hover transitions:
app/ImageTransformer.tsxLive monitoring of all Axis Ibeji services
Live monitoring of all Axis Ibeji services • Auto-refresh every 30 seconds
Explore real code patterns from Axis Ibeji projects
Interactive shader blending two textures with mouse hover
uniform sampler2D texture1;
uniform sampler2D texture2;
uniform float mixFactor;
varying vec2 vUv;
void main() {
vec4 color1 = texture2D(texture1, vUv);
vec4 color2 = texture2D(texture2, vUv);
gl_FragColor = mix(color1, color2, mixFactor);
}