
Immersive Web Portfolio
Personal Brand Portal & VFX Showcase
This website itself is a flagship project, engineered to push the boundaries of modern web development. It fuses React.js with advanced webGL shaders and 3D VFX to create a truly immersive digital experience.
Experimental Visual Design
The interface features a custom-built fluid simulation and dynamic nebula backgrounds, creating a sense of depth and life that traditional websites lack.

A perfect blend of performance and high-end visual storytelling.
Interactive User Experience
From glassmorphism-based testimonials to an animated project gallery, every component is designed for maximum engagement.


The design architecture ensures a fluid experience across all devices and screen sizes.
Cinematic Showcase
Watch the full walkthrough of the platform's unique features and interactive elements.
Proof that the web can be both functional and breathtakingly beautiful.
VFX Engineering
The core of the experience is powered by custom GLSL shaders and a highly optimized rendering pipeline.
Shader Integration
javascriptconst NebulaBackground = () => {
const meshRef = useRef();
useFrame((state) => {
meshRef.current.material.uniforms.u_time.value = state.clock.elapsedTime;
});
return (
<mesh ref={meshRef}>
<planeGeometry args={[2, 2]} />
<shaderMaterial
fragmentShader={fragmentShader}
vertexShader={vertexShader}
uniforms={uniforms}
/>
</mesh>
);
};