Reset Your Energy This Spring A curated chakra jewelry & crystal kit designed to restore balance and clarity.

A Magickal Christmas

Winter Holiday Vibes

const canvas = document.getElementById(‘sparkleCanvas’);
const ctx = canvas.getContext(‘2d’);
canvas.width = canvas.offsetWidth;
canvas.height = canvas.offsetHeight;

const sparkles = [];
const sparkleCount = 30;

for (let i = 0; i {
ctx.beginPath();
ctx.arc(s.x, s.y, s.size, 0, Math.PI * 2);
ctx.fillStyle = ‘rgba(255, 255, 255, 0.8)’;
ctx.fill();
s.y -= s.speed;
if (s.y {
canvas.width = canvas.offsetWidth;
canvas.height = canvas.offsetHeight;
});

0