#explode-x-container { display: flex; justify-content: center; align-items: center; height: 100vh; } #explode-x { width: 100px; height: 100px; background-color: #000; cursor: pointer; position: relative; } #explode-x:before, #explode-x:after { content: ""; width: 100%; height: 2px; background-color: #000; position: absolute; top: calc(50% - 1px); left: 0; } #explode-x:before { transform: rotate(45deg); } #explode-x:after { transform: rotate(-45deg); }
top of page

Well!

the Proof is in the pudding  

&

Gravton Motors 

Igniting a electrical spark! 

Electircal Two wheeler which wanted to carve a niche a build a cult following with its branding. 

Nimble .jpg
Untiled 3.png

Pick My Cloth 

Generating fashionable leads! 

The concept was unique zero inventory and eliminating any middlemen direct from the weaver, generatingleads for a zero inventory model had it owns challenges

LEARN MORE

Swiss Milkshakes 

what is unique about a dirupting a business model which reduces the cost of operations by 80% needs a brand outlook and strategy to tell its story 

Swiss Milkshakes - Blueprints Portfolio - old-02.jpg

Upwisery 

I’m a paragraph. Double click here or click Edit Text to add some text of your own or to change the font. Tell your visitors a bit about your services.

Aurobella 

I’m a paragraph. Double click here or click Edit Text to add some text of your own or to change the font. Tell your visitors a bit about your services.

Aurobella Social Media Marketing
bottom of page
const explodeX = document.getElementById("explode-x"); function handleClick() { explodeX.classList.add("explode"); setTimeout(() => { explodeX.classList.remove("explode"); }, 1000); } explodeX.addEventListener("click", handleClick);