microhome/training.html
2025-11-11 09:14:51 -05:00

122 lines
5.6 KiB
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Laser Engraving Training · LaserEverything</title>
<link rel="stylesheet" href="/styles.css" />
</head>
<body class="page">
<div class="page-wrap">
<header class="page-header">
<a class="back-btn" href="/" id="backLink" aria-label="Back to home">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round" aria-hidden="true">
<path d="M19 12H5"></path><path d="M12 19l-7-7 7-7"></path>
</svg>
<span>Back to Home</span>
</a>
<div></div>
</header>
<main class="page-main" role="main">
<article class="article">
<h1>Laser Engraving Training</h1>
<p class="subtitle"><strong>ONE</strong> Maker &nbsp; <strong>TWO</strong> Specialists &nbsp; | &nbsp; <strong>ZERO</strong> Issues</p>
<div class="cta-row">
<!-- Updated: direct email with subject -->
<a class="btn primary" href="mailto:contact@lasereverything.net?subject=Book%20Coaching%20Session">Book With Us</a>
<a class="btn" href="mailto:contact@lasereverything.net?subject=Book%20Coaching%20Session">Send Us an Email</a>
</div>
<!-- Fallback instructions with obfuscated email -->
<p class="muted" style="margin-top:.5rem">
If the button doesnt work, email
<span id="fallbackEmail"></span>.
<noscript>contact [at] lasereverything [dot] net</noscript>
</p>
<p><em>Send Us an Email</em> with “<strong>Book Coaching Session</strong>” in the subject. Review this page and, in the body, include what youd like to cover and what youre hoping to achieve. Please allow at least 24 hours for a response.</p>
<h2>Were Here to Help</h2>
<p>Dont go it alone. The staff at Laser Everything are here to help you get rolling on your laser journey. Use the following to help estimate how much time youll need to complete your tasks and get your questions answered.</p>
<div class="callout warn">
<h3>Important Note</h3>
<p><strong>We do not cover the following in our coaching sessions:</strong></p>
<ul>
<li>3D or 2.5Dspecific functionality (including software Z-axis and 3D scanners)</li>
<li>3D software troubleshooting and setup (including EzCad&nbsp;3 and LenMark&nbsp;3DS)<br>
<small><em>Does not apply to those with a 3D controller paired with a 2D scanhead, or LightBurn height-map engraving.</em></small>
</li>
<li>Materials that we deem dangerous — see the <a href="/material-safety.html">Material Safety Lookup</a>.</li>
</ul>
<p><strong>Refunds will not be issued</strong> to individuals who ignore this warning. If you have questions, please email us <strong>before</strong> purchase.</p>
</div>
<h2>Come Prepared</h2>
<p>How to make the most out of your coaching sessions allotted time.</p>
<h3>Learn Google Meet</h3>
<p>
Google Meet lets us talk, see each other, and share screens to diagnose issues or teach workflows.
If youve never used it, get familiar ahead of time so we can focus on your goals:
<a href="https://support.google.com/meet/">Start Learning Meet</a>.
</p>
<h3>The Right System</h3>
<p>
Please join the Meet from the device you use to operate your laser so we can see what you see in real time.
Screen sharing requires your permission and is vital to providing optimal support. If thats not possible,
you may join from a phone, though its discouraged.
</p>
<h3>Hardware Ready</h3>
<p>
Have your laser unpacked and connected, with your computer updated (including any pending software updates).
Keep materials on hand (scrap/test stock is great), especially if your session is tied to a specific material or object type.
</p>
<h3>Plan For Your Needs</h3>
<p>
To maximize your time and value, make a list of outcomes you want, plus any questions you have.
Keep your notes handy, and add answers and new questions as we go.
Its the best way to get the most done together—and gives you a reference afterward.
</p>
<h2>Contact Us</h2>
<p>Questions about booking? <a href="mailto:contact@lasereverything.net?subject=Book%20Coaching%20Session">Send Us an Email</a>.</p>
</article>
</main>
</div>
<script>
(function () {
// Back link behavior (unchanged)
const link = document.getElementById('backLink');
link.addEventListener('click', function (e) {
try {
const sameOrigin = document.referrer && new URL(document.referrer).origin === location.origin;
if (sameOrigin && history.length > 1) { e.preventDefault(); history.back(); }
} catch(_) {}
});
// Build human-readable fallback email without exposing a direct "@" in the source
const u = 'contact';
const d1 = 'lasereverything';
const d2 = 'net';
const at = '\u0040';
const dot = '\u002e';
const fallback = document.getElementById('fallbackEmail');
if (fallback) {
const addr = u + at + d1 + dot + d2;
const a = document.createElement('a');
a.href = 'mailto:' + addr + '?subject=' + encodeURIComponent('Book Coaching Session');
a.textContent = addr;
fallback.replaceChildren(a);
}
})();
</script>
</body>
</html>