Your Partnerf or Digital Success
Result-Driven Digital Marketing Agency:
Let's Make Something beautiful Fun Amazing
Let’s Grow Your
Business Online
Elevate your digital presence with custom strategies in web design, SEO, and PPC to help your business
thrive. We design, build, and create digital products for forward-thinking brands.
What We Do
Let’s Create
Something
That Clicks
Custom Website Development
We value your time. Our team works efficiently to deliver results without compromising on quality.
<div class="title"> <h3>PLASM.it - 2017</h3> <h1>BALLS<span>&</span>GRAVITY</h1> <h3>Drag to interact</h3> </div> </div>
@import url('https://fonts.googleapis.com/css?family=Montserrat:200,300,400,600') .more-pens position: fixed left: 20px bottom: 20px z-index: 10 font-family: "Montserrat" font-size: 12px a.white-mode, a.white-mode:link, a.white-mode:visited, a.white-mode:active font-family: "Montserrat" font-size: 12px text-decoration: none background: #212121 padding: 4px 8px color: #f7f7f7 &:hover background: #edf3f8 color: #212121 body margin: 0 padding: 0 overflow: hidden width: 100% height: 100% background: #EFEFEF .title z-index: 10 position: absolute left: 50% top: 50% transform: translateX(-50%) translateY(-50%) font-family: "Montserrat" text-align: center width: 100% h1 position: relative color: #121212 font-weight: 600 font-size: 30px padding: 0 margin: 0 line-height: 1 span font-weight: 600 padding: 0 margin: 0 color: #BBB h3 font-weight: 200 font-size: 20px padding: 0 margin: 0 line-height: 1 color: #121212 letter-spacing: 2px
let Engine = Matter.Engine, Render = Matter.Render, World = Matter.World, Mouse = Matter.Mouse, Bodies = Matter.Bodies, Common = Matter.Common, Vertices = Matter.Vertices, Svg = Matter.Svg, Constraint = Matter.Constraint, Composites = Matter.Composites, MouseConstraint = Matter.MouseConstraint; // create an engine let engine = Engine.create(); let idRAF = null; function init(){ let numm = Math.random(); $("canvas").remove(); cancelAnimationFrame(idRAF); let width = $(window).width(); let height = $(window).height(); let offset = -1; // module aliases engine.events = {}; World.clear(engine.world); Engine.clear(engine); engine = Engine.create(); engine.world.gravity.x = 0; engine.world.gravity.y = 0; let mouseConstraint = MouseConstraint.create(engine); World.add(engine.world, mouseConstraint); // create a renderer let render = Render.create({ element: document.body, engine: engine, options: { wireframes: false, background: 'transparent', width: width, height: height, showDebug: false, showBroadphase: false, showBounds: false, showVelocity: false, showCollisions: false, showSeparations: false, showAxes: false, showPositions: false, showAngleIndicator: false, showIds: false, showShadows: false, showVertexNumbers: false, showConvexHulls: false, showInternalEdges: false, showMousePosition: false } }); // create two boxes and a ground // add all of the bodies to the world World.add(engine.world, [ Bodies.rectangle(width / 2, height / 2, 200, 46, { isStatic: true, render: { fillStyle: "transparent" } }), Bodies.rectangle(width / 2, (height / 2) - 40, 180, 20, { isStatic: true, render: { fillStyle: "transparent" } }), Bodies.rectangle(width / 2, (height / 2) + 40, 180, 20, { isStatic: true, render: { fillStyle: "transparent" } }), Bodies.rectangle(width / 2, height - offset, width, 1, { isStatic: true, render: { fillStyle: "#FFFFFF" } }), Bodies.rectangle(width / 2, offset, width, 1, { isStatic: true, render: { fillStyle: "#FFFFFF" } }), Bodies.rectangle(offset, height / 2, 1, height, { isStatic: true, render: { fillStyle: "#FFFFFF" } }), Bodies.rectangle(width - offset, height / 2, 1, height, { isStatic: true, render: { fillStyle: "#FFFFFF" } }) ]); for (let i = 0; i <90; i++) { let radius = 2 + Math.random() * 20 World.add(engine.world, Bodies.circle( 40 + Math.random() * width - 80, 40 + Math.random() * 100, radius, { render: { fillStyle: ["#4285F4", "#EA4335", "#FBBC05", "#34A853"][Math.round(Math.random() * 3)] } } )) } // run the engine Engine.run(engine); // run the renderer Render.run(render); let inc = 0 engine.world.gravity.y = 4 function update() { if(inc > 8){ engine.world.gravity.x = Math.cos(inc / 55) engine.world.gravity.y = Math.sin(inc / 55) } inc++ idRAF = requestAnimationFrame(update.bind(this)) } update() } init() function debounce(func, wait, immediate) { var timeout; return function() { var context = this, args = arguments; var later = function() { timeout = null; if (!immediate) func.apply(context, args); }; var callNow = immediate && !timeout; clearTimeout(timeout); timeout = setTimeout(later, wait); if (callNow) func.apply(context, args); }; }; $(window).on("resize", debounce(function(){ init() }.bind(this), 200))
<div class="title"> <h3>PLASM.it - 2017</h3> <h1>BALLS<span>&</span>GRAVITY</h1> <h3>Drag to interact</h3> </div> </div>
@import url('https://fonts.googleapis.com/css?family=Montserrat:200,300,400,600') .more-pens position: fixed left: 20px bottom: 20px z-index: 10 font-family: "Montserrat" font-size: 12px a.white-mode, a.white-mode:link, a.white-mode:visited, a.white-mode:active font-family: "Montserrat" font-size: 12px text-decoration: none background: #212121 padding: 4px 8px color: #f7f7f7 &:hover background: #edf3f8 color: #212121 body margin: 0 padding: 0 overflow: hidden width: 100% height: 100% background: #EFEFEF .title z-index: 10 position: absolute left: 50% top: 50% transform: translateX(-50%) translateY(-50%) font-family: "Montserrat" text-align: center width: 100% h1 position: relative color: #121212 font-weight: 600 font-size: 60px padding: 0 margin: 0 line-height: 1 span font-weight: 600 padding: 0 margin: 0 color: #BBB h3 font-weight: 200 font-size: 20px padding: 0 margin: 0 line-height: 1 color: #121212 letter-spacing: 2px
let Engine = Matter.Engine, Render = Matter.Render, World = Matter.World, Mouse = Matter.Mouse, Bodies = Matter.Bodies, Common = Matter.Common, Vertices = Matter.Vertices, Svg = Matter.Svg, Constraint = Matter.Constraint, Composites = Matter.Composites, MouseConstraint = Matter.MouseConstraint; // create an engine let engine = Engine.create(); let idRAF = null; function init(){ let numm = Math.random(); $("canvas").remove(); cancelAnimationFrame(idRAF); let width = $(window).width(); let height = $(window).height(); let offset = -1; // module aliases engine.events = {}; World.clear(engine.world); Engine.clear(engine); engine = Engine.create(); engine.world.gravity.x = 0; engine.world.gravity.y = 0; let mouseConstraint = MouseConstraint.create(engine); World.add(engine.world, mouseConstraint); // create a renderer let render = Render.create({ element: document.body, engine: engine, options: { wireframes: false, background: 'transparent', width: width, height: height, showDebug: false, showBroadphase: false, showBounds: false, showVelocity: false, showCollisions: false, showSeparations: false, showAxes: false, showPositions: false, showAngleIndicator: false, showIds: false, showShadows: false, showVertexNumbers: false, showConvexHulls: false, showInternalEdges: false, showMousePosition: false } }); // create two boxes and a ground // add all of the bodies to the world World.add(engine.world, [ Bodies.rectangle(width / 2, height / 2, 500, 46, { isStatic: true, render: { fillStyle: "transparent" } }), Bodies.rectangle(width / 2, (height / 2) - 40, 180, 20, { isStatic: true, render: { fillStyle: "transparent" } }), Bodies.rectangle(width / 2, (height / 2) + 40, 180, 20, { isStatic: true, render: { fillStyle: "transparent" } }), Bodies.rectangle(width / 2, height - offset, width, 1, { isStatic: true, render: { fillStyle: "#FFFFFF" } }), Bodies.rectangle(width / 2, offset, width, 1, { isStatic: true, render: { fillStyle: "#FFFFFF" } }), Bodies.rectangle(offset, height / 2, 1, height, { isStatic: true, render: { fillStyle: "#FFFFFF" } }), Bodies.rectangle(width - offset, height / 2, 1, height, { isStatic: true, render: { fillStyle: "#FFFFFF" } }) ]); for (let i = 0; i < 230; i++) { let radius = 2 + Math.random() * 20 World.add(engine.world, Bodies.circle( 40 + Math.random() * width - 80, 40 + Math.random() * 100, radius, { render: { fillStyle: ["#4285F4", "#EA4335", "#FBBC05", "#34A853"][Math.round(Math.random() * 3)] } } )) } // run the engine Engine.run(engine); // run the renderer Render.run(render); let inc = 0 engine.world.gravity.y = 4 function update() { if(inc > 8){ engine.world.gravity.x = Math.cos(inc / 55) engine.world.gravity.y = Math.sin(inc / 55) } inc++ idRAF = requestAnimationFrame(update.bind(this)) } update() } init() function debounce(func, wait, immediate) { var timeout; return function() { var context = this, args = arguments; var later = function() { timeout = null; if (!immediate) func.apply(context, args); }; var callNow = immediate && !timeout; clearTimeout(timeout); timeout = setTimeout(later, wait); if (callNow) func.apply(context, args); }; }; $(window).on("resize", debounce(function(){ init() }.bind(this), 200))
Let’s Create
Something
That Clicks
Custom Website Development
We value your time. Our team works efficiently to deliver results without compromising on quality.
Let’s Promote Your Business
Online
strategies that give your business visibility where it matters most.
Let’s Promote Your Business
Online
strategies that give your business visibility where it matters most.
Build Your
Brand with
Social Media
Social Media Marketing &
Influencer Marketing
Connect with your audience, build trust, and expand your reach through strategic social media campaigns and influencer partnerships.
Let’s Design
Your Brand ’s
Identity
Graphic & Logo Design
Your visual identity is crucial. We help you design logos, graphics, and branding materials that resonate with your audience and strengthen your brand presence.
Why Choose US?
Let's Make Something beautiful Fun Amazing
Let’s Create Custom Strategies for You
Every business is unique—so are our solutions. we build custom digital marketing strategies tailored specifically to your needs. We ensure that our solutions fit your business model, budget, and goals ensuring success from day one.
Our Unique Subscription Models
Our unique Subscription Models help small businesses and companies differentiate themselves in the market and deliver consistent growth throughout their journey. This makes sure that you not only grow but also sustain your success over time.
Let’s Work on a Quick Turnaround for You
We value your time. Our team works efficiently to deliver results without compromising on quality.
Let’s Work on a Quick Turnaround for You
We value your time. Our team works efficiently to deliver results without compromising on quality.
Let’s Work on a Quick Turnaround for You
We value your time. Our team works efficiently to deliver results without compromising on quality.
Our Process
Let’s Talk
We begin with a free
consultation to understand your
business and digital needs.
Let’s Talk
We begin with a free
consultation to understand your
business and digital needs.
Let’s Talk
We begin with a free
consultation to understand your
business and digital needs.
Client Success Stories
Let’s Share Our Success Together
Thanks to Connect Digital Solutions, our sales and online engagement have skyrocketed. Their custom strategies worked wonders for us!
thamo Smperon
thamo Smperon
Thanks to Connect Digital Solutions, our sales and online engagement have skyrocketed. Their custom strategies worked wonders for us!
thamo Smperon
thamo Smperon
Thanks to Connect Digital Solutions, our sales and online engagement have skyrocketed. Their custom strategies worked wonders for us!
thamo Smperon
thamo Smperon
FAQs
Frequently Asked Questions
How long will it take to see results from SEO or PPC?
SEO results typically take 3-6 months, while PPC campaigns can bring immediate traffic.
How long will it take to see results from SEO or PPC?
SEO results typically take 3-6 months, while PPC campaigns can bring immediate traffic.
How long will it take to see results from SEO or PPC?
SEO results typically take 3-6 months, while PPC campaigns can bring immediate traffic.
contact us
Let’s Connect You with the World
Ready to take your business to the next level? Let’s work together to expand your reach and achieve your digital goals.