loader image

🔔 It's just the beginning — Elementor, Figma & Canva layouts are being added daily.

FAQs

Find quick answers to common questions about DesignJet—how it works, plans, tokens, support, and more. Everything you need to know, all in one place.

🔰General Questions

What is DesignJet?

DesignJet is a productivity platform built for designers and developers using Figma, Elementor, and Canva. It provides ready-to-use design layouts—including UI/UX layouts, website layouts, and graphic design layouts—that you can copy and paste instantly with one click.

No downloads. No imports. Just faster workflow.

DesignJet is built for:

  • UI/UX Designers

  • Web Designers

  • Graphic Designers

  • Developers

  • Agencies

  • Freelancers

  • Startup teams

Anyone who wants to save 70–80% of time by using proven base layouts instead of starting from scratch.

DesignJet eliminates repetitive work by providing ready-made design layouts that act as a strong foundation for day-to-day projects.

Instead of rebuilding the same sections repeatedly, you start with layouts and focus on customization, creativity, and delivery.

🧩Layouts & Libraries

What types of layouts are available on DesignJet?

DesignJet currently offers three main layout categories:

  1. UI/UX Layouts – Figma (Active)

  2. Website Layouts – Figma & Elementor (Active)

  3. Graphic Design Layouts – Canva & Figma (Active)

Each category has a dedicated library page for easy access and browsing.

⚙️ How DesignJet Works

How does DesignJet work?

DesignJet works in four simple steps:

  1. Create a free account and log in

  2. Browse the layout library by category

  3. Filter layouts based on your requirement

  4. Select → Copy → Paste → Customize

That’s it. No exporting or downloading.

No. DesignJet is completely copy-paste based

You directly copy layouts from the website and paste them into Figma, Elementor, or Canva.

Yes. All layouts are fully editable.

You can customize:

  • Colors

  • Typography

  • Spacing

  • Content

  • Structure

DesignJet provides the base layout, you build the final design.

🔐 Account & Access

Do I need an account to use DesignJet?

Yes. You must create at least a free account to access and copy layouts.

Non-logged-in users can preview layouts but must sign up to copy them.

No. Copy buttons are hidden for non-logged-in users.

They will see a “Create Free Account” button instead.

Yes. The Free plan is $0 forever and gives access to essential layouts with 25 daily copy tokens.

🎟️ Copy Tokens & Usage

What are Copy Tokens?

Copy Tokens control how many times you can copy layouts per day.

This helps prevent misuse and ensures fair usage across the platform.

  • Free Plan: 25 tokens per day

  • Starter Plan: 50 tokens per day

  • Premium Plan: 100 tokens per day

Yes. Copy tokens reset automatically every day.

Once your daily limit is reached, you can:

  • Wait for the next day’s reset, or

  • Upgrade your plan for higher daily copy limits

💳 Pricing & Membership

What membership plans does DesignJet offer?

Free – $0 (Forever)

  • Essential Layouts

  • One-Click Copy-Paste

  • 25 Copy Tokens/day

  • Standard Support

Starter – $5/month

  • Essential + Advanced Layouts

  • 50 Copy Tokens/day

  • Priority Support

Starter Plus – $39/year (Save 27%)

  • Same benefits as Starter

Premium – $9/month

  • Essential + Advanced Layouts

  • 100 Copy Tokens/day

  • Priority Support

Premium Plus – $79/year (Save 27%)

  • Same benefits as Premium

Yes. You can upgrade or downgrade your membership anytime from your account dashboard.

🎥 Guides & Knowledge Base

Do you provide tutorials on how to use layouts?

Yes. We are actively creating step-by-step video guides showing how to use and customize layouts efficiently.

👉 Video Guides: Coning Soon

Yes. A detailed Knowledge Base is being built to explain layouts, usage tips, workflows, and best practices.

👉 Knowledge Base: Coming Soon

🚀 Future Expansion

Are you adding layouts for more platforms?

Yes. In upcoming updates, DesignJet will expand layout support for:

  • Shopify

  • Webflow

  • Framer

New design layouts are added regularly to keep the library fresh, modern, and useful for real-world projects.

📌 Miscellaneous

Can agencies use DesignJet layouts?

Yes. DesignJet is agency-friendly and ideal for handling multiple client projects faster.

Yes. Beginners, students, and professionals can all use DesignJet layouts as a strong starting point.

Not at all. DesignJet removes repetitive groundwork so you can focus more on creativity and customization, not less.

Happy Designing!!

~ Team DesignJet

`; const blob = new Blob([htmlData], { type: "text/html" }); const item = new ClipboardItem({ "text/html": blob }); navigator.clipboard.write([item]).catch(err => console.error("Copy failed", err)); } else if (copyType === 'elementor') { let elementorJson = button.getAttribute('data-elementor'); try { let jsonData = JSON.parse(elementorJson); jsonData = enhanceElementorData(jsonData); const enhancedJson = JSON.stringify(jsonData); navigator.clipboard.writeText(enhancedJson).catch(err => console.error("Copy failed", err)); } catch (e) { navigator.clipboard.writeText(elementorJson).catch(err => console.error("Copy failed", err)); } } else if (copyType === 'canva') { const targetId = button.getAttribute('data-target'); const textarea = document.getElementById(targetId); if (textarea) { navigator.clipboard.writeText(textarea.value).catch(err => console.error("Copy failed", err)); } } }// Helper functions for messages function getSuccessMessage(copyType) { const messages = { 'figma': 'Figma Component Copied!', 'elementor': 'Elementor Design Copied!', 'canva': 'Canva Design Copied!' }; return messages[copyType] || '✅ Design Copied!'; }function getInstructionMessage(copyType) { const instructions = { 'figma': 'Open Figma → Select a frame → Press Ctrl+V (Cmd+V on Mac) to paste your design component.', 'elementor': 'Go to Elementor Editor → Right-click on a section → Select \'Paste\' → Or press Ctrl+V to import your design.', 'canva': 'Open Canva → Create a new design → Press Ctrl+V (Cmd+V on Mac) to paste your design.' }; return instructions[copyType] || 'Paste your design in the respective application.'; }// Enhanced hover effects document.addEventListener('mouseover', function(e) { const btn = e.target.closest('.figma-copy-btn, .elementor-copy-btn, .canva-copy-btn'); if (btn && !btn.disabled) { btn.style.background = btn.getAttribute('data-hoverbg'); } });document.addEventListener('mouseout', function(e) { const btn = e.target.closest('.figma-copy-btn, .elementor-copy-btn, .canva-copy-btn'); if (btn && !btn.disabled) { btn.style.background = btn.getAttribute('data-bg'); } });// Enhanced notification system function showCopyNotification(message, type = 'success', instructions = '') { const existingNotifications = document.querySelectorAll('.copy-notification'); existingNotifications.forEach(notif => notif.remove());const notification = document.createElement('div'); notification.className = 'copy-notification'; let bgColor, iconSvg, borderColor; if (type === 'figma') { bgColor = 'linear-gradient(135deg, #1E1E1E 0%, #333 100%)'; borderColor = '#09f'; iconSvg = ''; } else if (type === 'canva') { bgColor = 'linear-gradient(135deg, #20C4CB 0%, #167EE6 100%)'; borderColor = '#20C4CB'; iconSvg = ''; } else if (type === 'error') { bgColor = 'linear-gradient(135deg, #dc3545 0%, #c82333 100%)'; borderColor = '#dc3545'; iconSvg = ''; } else { bgColor = 'linear-gradient(135deg, #e2498a 0%, #d63384 100%)'; borderColor = '#e2498a'; iconSvg = ''; }notification.innerHTML = `
${iconSvg}
${message}
${instructions}
`;notification.style.cssText = ` position: fixed; top: 20px; right: 20px; background: ${bgColor}; color: white; padding: 16px 20px; border-radius: 12px; border-left: 4px solid ${borderColor}; box-shadow: 0 8px 32px rgba(0,0,0,0.3); z-index: 10000; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; max-width: 380px; min-width: 320px; animation: slideInBounce 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55); `;document.body.appendChild(notification);setTimeout(() => { if (notification.parentNode) { notification.style.animation = 'slideOutRight 0.4s ease-out'; setTimeout(() => { if (notification.parentNode) { notification.remove(); } }, 400); } }, type === 'error' ? 10000 : 8000); }// CSS animations if (!document.querySelector('#copy-notification-styles')) { const style = document.createElement('style'); style.id = 'copy-notification-styles'; style.textContent = ` @keyframes spin { to { transform: rotate(360deg); } } @keyframes slideInBounce { 0% { transform: translateX(100%) scale(0.8); opacity: 0; } 70% { transform: translateX(-10px) scale(1.05); opacity: 1; } 100% { transform: translateX(0) scale(1); opacity: 1; } } @keyframes slideOutRight { from { transform: translateX(0) scale(1); opacity: 1; } to { transform: translateX(100%) scale(0.9); opacity: 0; } } `; document.head.appendChild(style); }// Function to enhance Elementor data (keeping original functionality) function enhanceElementorData(data) { const elementorVersion = window.elementor?.config?.version || '3.18.0'; function processElement(element) { if (typeof element !== 'object' || element === null) return element; if (Array.isArray(element)) return element.map(processElement);const processed = { ...element }; if (processed.version) processed.version = elementorVersion; if (processed.elementor_version) processed.elementor_version = elementorVersion; if (processed.export_version) processed.export_version = elementorVersion;delete processed.pro_version; delete processed.is_pro_version; delete processed.export_link; delete processed.import_link;processed.export_settings = { elementor_version: elementorVersion, elementor_pro_version: false, wp_version: '6.4.0', bypass_all_checks: true, force_import: true, skip_validation: true };Object.keys(processed).forEach(key => { if (typeof processed[key] === 'object' && processed[key] !== null) { processed[key] = processElement(processed[key]); } });return processed; }return processElement(data); }