BlechProfis

Laser cutting in Saarland

If you need precise solutions for your laser cutting requirements, we are your expert partner. Our focus is on overcoming your laser cutting challenges and providing you with optimal results. With state-of-the-art technology and a professional team, we implement your projects quickly.

Our state-of-the-art machines guarantee precise cuts and minimal tolerances, ensuring that your products meet the highest quality standards. Thanks to many years of experience and extensive Expertise in laser cutting we can also master complex tasks and provide customised solutions.

If you want to produce medium or large series - we are ready to fulfil your requirements competently. Our aim is to improve your production processes and help you save resources.

Our team of experts has in-depth knowledge of the Knowledge of metalworking and is ideally equipped to realise your projects professionally. Take advantage of our expertise and benefit from our comprehensive range of services. Advice on all aspects of laser cutting.

Contact us today to find out more about our laser cutting services and how we can help you with your projects. With our high-quality laser cutting services, we turn your ideas into reality. Together we will realise your projects.

Laser cutting services in Saarland

Customers who require fast laser cutting services will find that we have the optimal solution for their needs. Our equipment enables us to cut metal with the highest accuracy and efficiency, allowing projects to be realised on time. Problems with inaccurate cuts and long processing times are a thing of the past.

Our production plant in Saarland offers more than 20 years of experience in metalworking and laser cutting. Equipped with innovative machines, we can realise complex shapes and designs that precisely meet your requirements. Our team has extensive knowledge and practical experience, which enables us to successfully realise even the most challenging projects.

Our welding and metalworking specialists use their expertise to develop customised solutions for your projects. Whether it's the manufacture of metal parts, welding or machining - we offer you a wide range of services based on in-depth knowledge of metal processing.

Quality and consistency are essential for any laser cutting project. We adhere to the best standards to ensure that your products meet the highest demands. Our customers in and around Saarland can rely on us to complete their projects with maximum care and precision.

Are you interested in our comprehensive Service options in the field of laser cuttingwelding or metalworking? We invite you to contact us directly. Our team is ready to answer your questions and advise you on the realisation of your projects. Together we will realise your ideas and ensure that you get the best results.

We look after Saarland

Laser cutting in Saarland

In Saarland, we offer various laser cutting services that are specifically tailored to your needs. Through our in-depth experience and commitment to quality, we have continuously expanded our range of laser cutting services. Whether processing solid materials such as steel or iron or variable metals such as aluminium, our team ensures precise and reliable results. Our reputation as a recognised provider of metal processing services is founded on our high quality and diligence.

 

Customised laser cutting services in Saarland

Our valued customers in Saarland benefit from customised laser cutting solutions for their specific projects. Our range of services encompasses a comprehensive spectrum of capabilities, ranging from the production of small precision metal parts to large assemblies. Each project is carried out with the utmost care to ensure a consistent level of quality at attractive prices.

We have a modern workshop equipped with state-of-the-art machine tools such as laser cutters, CNC machines and press brakes. This enables us to process even challenging and specific materials promptly and precisely. All production steps are carried out in-house, eliminating further costs for outsourcing or logistics management.

Our team is ready to meet your expectations and guide you through the realisation of your projects. Contact us today to learn more about our comprehensive laser cutting services and how we can help you with your specialised metalworking projects.

PRODUCTION OVERVIEW

Saarland

Saarland is a small but fascinating federal state in south-west Germany, bordering France and Luxembourg. With an area of around 2,570 square kilometres and a population of around 990,000 people, it is the smallest German state in terms of area after the city states. Saarbrücken, the state capital, is the cultural and economic centre of the region. Saarland is characterised by its diverse landscapes, which range from wooded hills and idyllic river valleys to industrial strongholds.

Historically, the Saarland has experienced an eventful past. The region was under French and German influence, which is reflected in both its architecture and culture. After the Second World War, Saarland was subject to special political regulations and only officially became part of the Federal Republic of Germany in 1957. This historical mixture has created a unique cultural identity characterised by a strong Franco-German friendship.

Economically, Saarland is traditionally known for its mining and steel industries, which have characterised the region for many years. Despite the decline of these industries, Saarland has successfully diversified. Today, automotive suppliers, mechanical engineering and innovative technologies are of great importance to the economy. In addition, Saarland has a well-developed infrastructure and state-of-the-art research facilities that offer companies and start-ups excellent conditions for development.

The Saarland is also rich in natural and cultural monuments. The Saar Loop near Mettlach is one of the most famous natural wonders and offers breathtaking views. The Völklingen Ironworks, a UNESCO World Heritage Site, is a reminder of the region's industrial past and today serves as a venue for exhibitions and cultural events. Numerous hiking and cycling trails criss-cross the Saarland and invite you to enjoy outdoor activities.

The Saarland also has a lot to offer culturally. Festivals and events, such as the Max Ophüls Film Festival and the Saar Music Days, attract numerous visitors every year. The culinary specialities, which are a mixture of German and French cuisine, are very popular. Dishes such as "Dibbelabbes", a savoury potato casserole, and "Lyon sausage" are particularly well-known.

To summarise, the Saarland offers impressive diversity and depth despite its small size. It is a region that skilfully combines tradition and modernity and has a lot to offer both culturally and economically. Whether you are interested in history, nature, business or culture, Saarland has something for everyone.

Great experience with sheet metal working and metal construction

// Blechprofis.eu - JavaScript(function() { 'use strict';// Navigation const hamburger = document.getElementById('hamburger'); const navMenu = document.getElementById('navMenu'); if (hamburger && navMenu) { hamburger.addEventListener('click', function() { hamburger.classList.toggle('active'); navMenu.classList.toggle('active'); }); const navLinks = navMenu.querySelectorAll('a'); navLinks.forEach(link => { link.addEventListener('click', function() { hamburger.classList.remove('active'); navMenu.classList.remove('active'); }); }); } // Smooth Scroll document.querySelectorAll('a[href^="#"]').forEach(anchor => { anchor.addEventListener('click', function(e) { e.preventDefault(); const targetId = this.getAttribute('href'); if (targetId === '#') return; const targetElement = document.querySelector(targetId); if (targetElement) { const navbarHeight = 70; const targetPosition = targetElement.offsetTop - navbarHeight; window.scrollTo({ top: targetPosition, behavior: 'smooth' }); } }); }); // Scroll Animations const observerOptions = { threshold: 0.1, rootMargin: '0px 0px -50px 0px' }; const observer = new IntersectionObserver(function(entries) { entries.forEach(entry => { if (entry.isIntersecting) { entry.target.classList.add('visible'); observer.unobserve(entry.target); } }); }, observerOptions); const animatedElements = document.querySelectorAll('.fade-in-up'); animatedElements.forEach(el => observer.observe(el)); // Product Card Effects const productCards = document.querySelectorAll('.product-card, .feature-card'); productCards.forEach(card => { card.addEventListener('mousemove', function(e) { const rect = card.getBoundingClientRect(); const x = e.clientX - rect.left; const y = e.clientY - rect.top; const centerX = rect.width / 2; const centerY = rect.height / 2; const rotateX = (y - centerY) / 10; const rotateY = (centerX - x) / 10; card.style.transform = `perspective(1000px) rotateX(${rotateX}deg) rotateY(${rotateY}deg) translateY(-5px)`; }); card.addEventListener('mouseleave', function() { card.style.transform = 'perspective(1000px) rotateX(0) rotateY(0) translateY(0)'; }); }); // Back to Top Button const backToTopBtn = document.createElement('button'); backToTopBtn.innerHTML = ''; backToTopBtn.className = 'back-to-top'; backToTopBtn.setAttribute('aria-label', 'Up'); document.body.appendChild(backToTopBtn); const backToTopStyle = document.createElement('style'); backToTopStyle.textContent = ` .back-to-top { position: fixed; bottom: 30px; right: 30px; width: 50px; height: 50px; background: linear-gradient(135deg, #FF8C42, #D97941); colour: white; border: none; border-radius: 50%; font-size: 1.2rem; cursor: pointer; opacity: 0; visibility: hidden; transition: all 0.3s ease; box-shadow: 0 4px 12px rgba(255, 140, 66, 0.3); z-index: 999; } .back-to-top.show { opacity: 1; visibility: visible; } .back-to-top:hover { transform: translateY(-5px); box-shadow: 0 6px 16px rgba(255, 140, 66, 0.4); } `; document.head.appendChild(backToTopStyle); window.addEventListener('scroll', function() { if (window.pageYOffset > 500) { backToTopBtn.classList.add('show'); } else { backToTopBtn.classList.remove('show'); } }); backToTopBtn.addEventListener('click', function() { window.scrollTo({ top: 0, behaviour: 'smooth' }); }); // Contactní formulář - validace a odeslání const contactForm = document.getElementById('contact-form'); const formMessage = document.getElementById('form-message'); // File Upload function const fileInput = document.getElementById('attachment'); const fileList = document.getElementById('file-list'); let uploadedFiles = []; const MAX_FILE_SIZE = 10 * 1024 * 1024; // 10 MB const ALLOWED_TYPES = [ 'application/pdf', 'application/msword', 'application/vnd.openxmlformats-officedocument.wordprocessingml.document', 'image/jpeg', 'image/jpg', 'image/png', 'application/zip', 'application/x-zip-compressed' ]; if (fileInput) { fileInput.addEventListener('change', function(e) { handleFiles(e.target.files); }); // Drag & Drop const fileUploadDisplay = document.querySelector('.file-upload-display'); ['dragenter', 'dragover', 'dragleave', 'drop'].forEach(eventName => { fileUploadDisplay.addEventListener(eventName, preventDefaults, false); }); function preventDefaults(e) { e.preventDefault(); e.stopPropagation(); } ['dragenter', 'dragover'].forEach(eventName => { fileUploadDisplay.addEventListener(eventName, function() { fileUploadDisplay.style.borderColor = 'var(--accent-color)'; fileUploadDisplay.style.background = 'white'; }); }); ['dragleave', 'drop'].forEach(eventName => { fileUploadDisplay.addEventListener(eventName, function() { fileUploadDisplay.style.borderColor = '#e2e8f0'; fileUploadDisplay.style.background = '#f8f9fa'; }); }); fileUploadDisplay.addEventListener('drop', function(e) { const dt = e.dataTransfer; const files = dt.files; handleFiles(files); }); } function handleFiles(files) { const fileArray = Array.from(files); fileArray.forEach(file => { // Validace typu souboru if (!ALLOWED_TYPES.includes(file.type)) { showFileError(`Nepodporovaný typ souboru: ${file.name}`); return; } // Validace velikosti if (file.size > MAX_FILE_SIZE) { showFileError(`Soubor ${file.name} je příliš velký (max. 10 MB)`); return; } // Přidání souboru uploadedFiles.push(file); displayFile(file); }); } function displayFile(file) { const fileItem = document.createElement('div'); fileItem.className = 'file-item'; const fileIcon = getFileIcon(file.type); const fileSize = formatFileSize(file.size); fileItem.innerHTML = `
${file.name} ${fileSize}
`; fileList.appendChild(fileItem); // Remove handler fileItem.querySelector('.file-remove').addEventListener('click', function() { removeFile(file.name); fileItem.remove(); }); } function removeFile(filename) { uploadedFiles = uploadedFiles.filter(f => f.name !== filename); } function getFileIcon(type) { if (type.includes('pdf')) return 'fa-file-pdf'; if (type.includes('word') || type.includes('document')) return 'fa-file-word'; if (type.includes('image')) return 'fa-file-image'; if (type.includes('zip')) return 'fa-file-archive'; return 'fa-file'; } function formatFileSize(bytes) { if (bytes === 0) return '0 Bytes'; const k = 1024; const sizes = ['Bytes', 'KB', 'MB']; const i = Math.floor(Math.log(bytes) / Math.log(k)); return Math.round(bytes / Math.pow(k, i) * 100) / 100 + ' ' + sizes[i]; } function showFileError(message) { const errorDiv = document.createElement('div'); errorDiv.className = 'file-error'; errorDiv.innerHTML = ` ${message}`; fileList.appendChild(errorDiv); setTimeout(function() { errorDiv.remove(); }, 5000); } if (contactForm) { contactForm.addEventListener('submit', function(e) { e.preventDefault(); // Získání dat z formuláře const formData = new FormData(contactForm); // Přidání nahraných souborů uploadedFiles.forEach(file => { formData.append('files[]', file); }); // Zobrazení loading stavu const submitBtn = contactForm.querySelector('.form-submit'); const originalText = submitBtn.innerHTML; submitBtn.innerHTML = ' Wird gesendet...'; submitBtn.disabled = true; // Simulace odeslání (v produkci nahradit AJAX požadavkem) setTimeout(function() { // Úspěch formMessage.className = 'form-message success'; const filesCount = uploadedFiles.length; const filesText = filesCount > 0 ? ` (${filesCount} Datei${filesCount > 1 ? 'en' : ''} angehängt)` : ''; formMessage.textContent = `Vielen Dank für Ihre Anfrage${filesText}! Wir werden Sie so schnell wie möglich kontaktieren.`; contactForm.reset(); // Vyčištění seznamu souborů uploadedFiles = []; fileList.innerHTML = ''; // Reset tlačítka submitBtn.innerHTML = originalText; submitBtn.disabled = false; // Scroll k potvrzení formMessage.scrollIntoView({ behavior: 'smooth', block: 'center' }); // Skrytí zprávy po 8 sekundách setTimeout(function() { formMessage.className = 'form-message'; formMessage.textContent = ''; }, 8000); }, 1500); /* // PRO PRODUKCI - AJAX odeslání do WordPressu: fetch('/wp-admin/admin-ajax.php', { method: 'POST', body: formData }) .then(response => response.json()) .then(data => { if (data.success) { formMessage.className = 'form-message success'; formMessage.textContent = data.message || 'Vielen Dank für Ihre Anfrage!'; contactForm.reset(); uploadedFiles = []; fileList.innerHTML = ''; } else { formMessage.className = 'form-message error'; formMessage.textContent = data.message || 'Es ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut.'; } submitBtn.innerHTML = originalText; submitBtn.disabled = false; formMessage.scrollIntoView({ behavior: 'smooth', block: 'center' }); }) .catch(error => { console.error('Chyba při odeslání formuláře:', error); formMessage.className = 'form-message error'; formMessage.textContent = 'Es ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut.'; submitBtn.innerHTML = originalText; submitBtn.disabled = false; }); */ }); // Real-time validace polí const requiredFields = contactForm.querySelectorAll('[required]'); requiredFields.forEach(field => { field.addEventListener('blur', function() { if (!field.value.trim()) { field.style.borderColor = '#dc3545'; } else { field.style.borderColor = '#48bb78'; } }); field.addEventListener('input', function() { if (field.value.trim()) { field.style.borderColor = '#48bb78'; } }); }); } console.log('%c⚙️ Blechprofis.eu', 'font-size: 20px; font-weight: bold; color: #1a5490;'); console.log('%cCortenstahl für Profis', 'font-size: 14px; color: #D97941;'); })();

Send us your message or request a quote