Drop in a transparent SVG (or PNG) logo and it becomes a glossy black 3D sculpture with bevelled edges, studio HDRI reflections, a mirror floor, and an animated rim-light sweep. Premium product-shot look for SaaS, agencies, and AI tools.
import ExtrudedLogoMonolith from '@crazygl/hero-extruded-logo-monolith';
export default function Page() {
return (
<ExtrudedLogoMonolith
logoSvg="https://example.com/logo.svg"
heading={"Built like\na monolith."}
thickness={0.32}
bevel={0.6}
rimColor="#7aa2ff"
/>
);
}logoSvg accepts a transparent SVG (sharpest extrusion), a PNG (auto-traced from its alpha mask), or a GLB/GLTF model (swaps the extruded mesh for your real 3D asset).monolithSize, thickness (extrusion depth), bevel (edge rounding).logoColor, metalness, roughness, imperfectionStrength (procedural micro-roughness), useGlbMaterials (keep a GLB's authored PBR materials).keyColor, rimColor/rimIntensity/rimSweepSpeed (the orbiting accent light), envIntensity (studio reflection), showFloor (mirror floor).layout (centered / content-left / content-right), rotationSpeed, parallaxStrength.transparent, bgTop/bgBottom gradient.npm install @crazygl/hero-extruded-logo-monolithThe component takes the same props you see in the live customizer on the right — every default ships poster-quality.
import ExtrudedLogoMonolith from '@crazygl/hero-extruded-logo-monolith';
export default function Landing() {
return (
<ExtrudedLogoMonolith />
);
}The wrapper renders static HTML on the server and only initialises the canvas after hydration, so search engines see your copy.
// app/page.tsx — works in SSR-first frameworks (Next, Remix, Astro, etc.)
'use client';
import ExtrudedLogoMonolith from '@crazygl/hero-extruded-logo-monolith';
export default function Page() {
return (
<section>
<ExtrudedLogoMonolith
heading="Say hi."
subheading="Your new hero."
/>
<article>
<h2>Welcome</h2>
<p>Your content keeps its own voice below the hero.</p>
</article>
</section>
);
}