This commit is contained in:
2026-01-17 00:06:30 +01:00
parent f18dd5b0f9
commit 3dd4f7f121
78 changed files with 1181 additions and 925 deletions

View File

@@ -1,182 +1,26 @@
import { useTranslations } from 'next-intl'; import { useTranslations } from 'next-intl';
import { Button, Section, Container } from '@/components/ui'; import Hero from '@/components/home/Hero';
import Link from 'next/link'; import ProductCategories from '@/components/home/ProductCategories';
import Image from 'next/image'; import WhatWeDo from '@/components/home/WhatWeDo';
import WhyChooseUs from '@/components/home/WhyChooseUs';
import MeetTheTeam from '@/components/home/MeetTheTeam';
import GallerySection from '@/components/home/GallerySection';
import VideoSection from '@/components/home/VideoSection';
import CTA from '@/components/home/CTA';
export default function HomePage() { export default function HomePage() {
const t = useTranslations('Index'); const t = useTranslations('Index');
return ( return (
<div className="flex flex-col min-h-screen"> <div className="flex flex-col min-h-screen">
{/* Hero Section */} <Hero />
<section className="relative h-[80vh] flex items-center justify-center overflow-hidden bg-neutral-dark"> <ProductCategories />
<div className="absolute inset-0 z-0"> <WhatWeDo />
<video <WhyChooseUs />
className="w-full h-full object-cover" <MeetTheTeam />
autoPlay <GallerySection />
muted <VideoSection />
loop <CTA />
playsInline
poster="/uploads/2025/02/Still-2025-02-10-104337_1.1.1.webp"
>
<source src="/uploads/2025/02/header.webm" type="video/webm" />
<source src="/uploads/2025/02/header.mp4" type="video/mp4" />
</video>
<div className="absolute inset-0 bg-gradient-to-b from-black/10 to-black/40" />
</div>
<Container className="relative z-10 text-left text-white w-full">
<div className="max-w-4xl">
<h1 className="text-4xl md:text-6xl lg:text-7xl font-bold mb-6 tracking-tight leading-tight">
We are helping to expand the energy cable networks for a <span className="text-[#82ed20] relative inline-block">green</span> future
</h1>
<div className="mt-8">
<Link href="/contact" className="inline-flex items-center text-white text-xl font-medium group">
Let's talk
<span className="ml-2 w-8 h-8 border-2 border-white rounded-full flex items-center justify-center group-hover:bg-white group-hover:text-black transition-all">
&rarr;
</span>
</Link>
</div>
</div>
</Container>
</section>
{/* Product Categories Preview */}
<Section className="bg-neutral-dark py-0">
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4">
{[
{
title: 'Low Voltage Cables',
desc: 'Powering everyday essentials with reliability and safety.',
img: '/uploads/2024/12/low-voltage-scaled.webp',
icon: '/uploads/2024/11/Low-Voltage.svg',
href: '/products/low-voltage-cables'
},
{
title: 'Medium Voltage Cables',
desc: 'The perfect balance between power and performance for industrial and urban grids.',
img: '/uploads/2024/12/medium-voltage-scaled.webp',
icon: '/uploads/2024/11/Medium-Voltage.svg',
href: '/products/medium-voltage-cables'
},
{
title: 'High Voltage Cables',
desc: 'Delivering maximum power over long distanceswithout compromise.',
img: '/uploads/2025/06/na2xsfl2y-rendered.webp',
icon: '/uploads/2024/11/High-Voltage.svg',
href: '/products/high-voltage-cables'
},
{
title: 'Solar Cables',
desc: 'Connecting the suns energy to your sustainable future.',
img: '/uploads/2025/04/3.webp',
icon: '/uploads/2024/11/Solar.svg',
href: '/products/solar-cables'
}
].map((category, idx) => (
<Link key={idx} href={category.href} className="group block relative h-[400px] md:h-[500px] overflow-hidden">
<Image
src={category.img}
alt={category.title}
fill
className="object-cover transition-transform duration-700 group-hover:scale-110"
/>
<div className="absolute inset-0 bg-black/40 group-hover:bg-black/50 transition-colors" />
<div className="absolute inset-0 p-8 flex flex-col justify-center items-center text-center text-white">
<div className="mb-4 transform transition-transform group-hover:-translate-y-2">
<img src={category.icon} alt="" className="w-16 h-16 mx-auto" />
</div>
<h3 className="text-2xl font-bold mb-2 transform transition-transform group-hover:-translate-y-2">{category.title}</h3>
<p className="text-white/90 opacity-0 group-hover:opacity-100 transform translate-y-4 group-hover:translate-y-0 transition-all duration-300">
{category.desc}
</p>
</div>
</Link>
))}
</div>
</Section>
{/* What We Do Section */}
<Section className="bg-neutral-dark text-white">
<Container>
<div className="grid grid-cols-1 lg:grid-cols-12 gap-12">
<div className="lg:col-span-4">
<div className="sticky top-24">
<h2 className="text-5xl font-bold text-primary mb-6">What we do</h2>
<p className="text-xl text-white/80">
We ensure that the electricity flows with quality-tested cables. From low voltage up to high voltage.
</p>
</div>
</div>
<div className="lg:col-span-8 grid grid-cols-1 md:grid-cols-2 gap-x-12 gap-y-16">
{[
{
num: '01',
title: 'Supply to energy suppliers, wind and solar parks, industry and trade',
desc: 'We support your projects from 1 to 220 kV, from simple NYY to high-voltage cables with segment conductors and aluminum sheaths, with a particular focus on medium-voltage cables.'
},
{
num: '02',
title: 'Supply of cables whose quality is certified',
desc: 'Cables are products that have to function 100%. For decades, often 80 to 100 years. Our cables are not only approved by VDE. The most well-known energy suppliers trust us.'
},
{
num: '03',
title: 'We deliver on time because we know the consequences for you',
desc: 'Wind farm North Germany, coordinates XYZ, delivery Wednesday 2-4 p.m., no unloading option. Yes, we know that. We organize the logistics with a back office team that has up to 20 years of cable experience.'
},
{
num: '04',
title: 'The cable alone is not the solution',
desc: 'Stony ground? Perhaps a thicker outer sheath would be better? Damp ground? Can there be transverse watertight protection? We think for you and ask questions.'
}
].map((item, idx) => (
<div key={idx} className="space-y-4">
<span className="text-sm font-mono text-white/60 border-b border-white/20 pb-2 block w-fit">{item.num}</span>
<h3 className="text-2xl font-bold">{item.title}</h3>
<p className="text-white/70 leading-relaxed">{item.desc}</p>
</div>
))}
</div>
</div>
</Container>
</Section>
{/* Video Section */}
<section className="relative h-[60vh] overflow-hidden">
<video
className="w-full h-full object-cover"
autoPlay
muted
loop
playsInline
>
<source src="/uploads/2024/12/making-of-metal-cable-on-factory-2023-11-27-04-55-16-utc-2.webm" type="video/mp4" />
</video>
<div className="absolute inset-0 bg-black/50 flex items-center justify-center">
<h2 className="text-3xl md:text-5xl font-bold text-white text-center max-w-4xl px-4 leading-tight">
From a single strand to infinite power the <span className="text-[#82ed20] italic">future</span> starts here.
</h2>
</div>
</section>
{/* CTA Section */}
<Section className="bg-primary text-white py-24">
<Container>
<div className="flex flex-col md:flex-row items-center justify-between gap-8">
<h2 className="text-3xl md:text-4xl font-bold max-w-2xl">
Enough information, let's build something together!
</h2>
<Link href="/contact" className="group flex items-center gap-4 text-xl font-bold text-[#82ed20]">
Reach out now
<span className="w-10 h-10 border-2 border-[#82ed20] rounded-full flex items-center justify-center group-hover:bg-[#82ed20] group-hover:text-primary transition-all">
&rarr;
</span>
</Link>
</div>
</Container>
</Section>
</div> </div>
); );
} }

View File

@@ -13,7 +13,7 @@ interface ProductPageProps {
const components = { const components = {
ProductTechnicalData, ProductTechnicalData,
// Add other components if needed p: (props: any) => <div {...props} className="mb-4" />,
}; };
export default async function ProductPage({ params }: ProductPageProps) { export default async function ProductPage({ params }: ProductPageProps) {

View File

@@ -5,89 +5,129 @@ import Image from 'next/image';
export default function TeamPage() { export default function TeamPage() {
const t = useTranslations('Navigation'); const t = useTranslations('Navigation');
const teamMembers = [
{
name: 'Klaus Mintel',
role: 'Founder & CEO',
image: '/uploads/2024/12/DSC07963-Large.webp',
quote: 'Sometimes all it takes is a clear head and a good cable to make the world a little better.',
bio: 'Klaus is the man with the experience, bringing perspective and calm to the table—even when cable chaos threatens to take over. With impressive industry knowledge and a network as solid as our cables, he ensures everything runs smoothly. Klaus isnt just a problem solver; hes a strategic thinker who knows how to get to the point with a touch of humor.',
linkedin: 'https://www.linkedin.com/in/klaus-mintel-b80a8b193/'
},
{
name: 'Michael Bodemer',
role: 'Technical Director',
image: '/uploads/2024/12/DSC07768-Large.webp',
quote: 'Challenges exist to be solved, not to debate how complicated they are.',
bio: 'Michael Bodemer is the go-to guy when things get complicated—and lets face it, thats often the case with cable networks. With sharp insight and a knack for practical solutions, Michael is one of our key players. Hes not just detail-oriented; hes a driving force—whether its in planning, customer interactions, or securing the best cables for every project.',
linkedin: 'https://www.linkedin.com/in/michael-bodemer-33b493122/'
}
];
return ( return (
<div className="flex flex-col min-h-screen"> <div className="flex flex-col min-h-screen">
{/* Hero Section */} {/* Hero Section */}
<section className="relative h-[60vh] flex items-center justify-center overflow-hidden bg-neutral-dark"> <section className="relative flex items-center justify-center overflow-hidden bg-neutral-dark pt-[14%] pb-[12%]">
<div className="absolute inset-0 z-0"> <div className="absolute inset-0 z-0">
<Image <Image
src="/uploads/2024/12/DSC07655-Large.webp" src="/uploads/2024/12/DSC07655-Large.webp"
alt="KLZ Team" alt="KLZ Team"
fill fill
className="object-cover" className="object-cover"
priority
/> />
<div className="absolute inset-0 bg-gradient-to-r from-black/80 to-black/40" /> <div className="absolute inset-0 bg-gradient-to-r from-[#0a0000] to-[rgba(10,10,10,0.5)] opacity-80" />
</div> </div>
<Container className="relative z-10 text-center text-white max-w-4xl"> <Container className="relative z-10 text-center text-white max-w-4xl">
<h1 className="text-4xl md:text-6xl font-bold mb-6 tracking-tight"> <h5 className="text-xl md:text-2xl font-medium mb-4 text-primary">
The bright sparks behind the power The bright sparks behind the power
</h1> </h5>
<p className="text-xl md:text-2xl text-neutral-light"> <h2 className="text-3xl md:text-5xl lg:text-6xl font-bold tracking-tight leading-tight">
We connect energy, expertise, and innovation to power a greener future. We connect energy, expertise, and innovation to power a greener future.
</p> </h2>
</Container> </Container>
</section> </section>
{/* Team Members Section */} {/* Michael Bodemer Section */}
<Section className="bg-white"> <section className="relative bg-[#011fff] text-white overflow-hidden">
<Container> <div className="flex flex-col md:flex-row">
<div className="space-y-24"> <div className="w-full md:w-1/2 p-12 md:p-24 flex flex-col justify-center">
{teamMembers.map((member, idx) => ( <h1 className="text-4xl md:text-5xl font-bold mb-8">Michael Bodemer</h1>
<div key={idx} className={`flex flex-col md:flex-row gap-12 items-center ${idx % 2 === 1 ? 'md:flex-row-reverse' : ''}`}> <div className="w-12 h-1 bg-white mb-8" />
<div className="w-full md:w-1/2 relative aspect-[4/3] rounded-lg overflow-hidden shadow-lg"> <h2 className="text-2xl md:text-3xl font-medium italic mb-8 leading-relaxed">
<Image "Challenges exist to be solved, not to debate how complicated they are."
src={member.image} </h2>
alt={member.name} <div className="w-12 h-1 bg-white mb-8" />
fill <p className="text-lg leading-relaxed opacity-90 mb-8">
className="object-cover" Michael Bodemer is the go-to guy when things get complicatedand lets face it, thats often the case with cable networks. With sharp insight and a knack for practical solutions, Michael is one of our key players. Hes not just detail-oriented; hes a driving forcewhether its in planning, customer interactions, or securing the best cables for every project.
/> </p>
</div> <a
<div className="w-full md:w-1/2 space-y-6"> href="https://www.linkedin.com/in/michael-bodemer-33b493122/"
<h2 className="text-4xl font-bold text-primary">{member.name}</h2> target="_blank"
<blockquote className="text-2xl font-medium italic text-text-primary border-l-4 border-primary pl-6 py-2"> rel="noopener noreferrer"
"{member.quote}" className="inline-flex items-center text-white font-bold border-2 border-white px-6 py-3 rounded-full hover:bg-white hover:text-[#011fff] transition-colors w-fit group"
</blockquote> >
<p className="text-lg text-text-secondary leading-relaxed"> Check Michael's LinkedIn
{member.bio} <span className="ml-2 group-hover:translate-x-1 transition-transform">&rarr;</span>
</p> </a>
<a </div>
href={member.linkedin} <div className="w-full md:w-1/2 relative min-h-[50vh] md:min-h-full">
target="_blank" <Image
rel="noopener noreferrer" src="/uploads/2024/12/DSC07768-Large.webp"
className="inline-flex items-center text-primary font-bold hover:text-primary-dark transition-colors group border-2 border-primary px-6 py-3 rounded-full hover:bg-primary hover:text-white" alt="Michael Bodemer"
> fill
Check {member.name.split(' ')[0]}'s LinkedIn className="object-cover"
<span className="ml-2 group-hover:translate-x-1 transition-transform">&rarr;</span> />
</a> </div>
</div> </div>
</section>
{/* Legacy Section */}
<section className="relative py-[10%] bg-neutral-dark text-white overflow-hidden">
<div className="absolute inset-0 z-0">
<Image
src="/uploads/2024/12/medium-voltage-1920x400.webp"
alt="Legacy"
fill
className="object-cover"
/>
<div className="absolute inset-0 bg-[#263336] opacity-90" />
</div>
<Container className="relative z-10">
<div className="grid grid-cols-1 md:grid-cols-12 gap-12">
<div className="md:col-span-5">
<h3 className="text-3xl font-bold mb-6">A Legacy of Excellence in Every Connection</h3>
<div className="space-y-6 text-lg opacity-90">
<p>
At KLZ, our expertise is built on generations of dedication to the energy industry. With decades of hands-on experience, weve grown alongside the evolution of cable technology, combining traditional craftsmanship with modern innovation. Each project we take on reflects a deep understanding of what it takes to create lasting, reliable energy solutions.
</p>
<p>
Paired with historic illustrations from the industrys early days, our story is a reminder of how far cables have come and how much care has always gone into connecting the world.
</p>
</div> </div>
))} </div>
</div> </div>
</Container> </Container>
</Section> </section>
{/* Klaus Mintel Section */}
<section className="relative bg-[#011fff] text-white overflow-hidden">
<div className="flex flex-col md:flex-row">
<div className="w-full md:w-1/2 relative min-h-[50vh] md:min-h-full order-2 md:order-1">
<Image
src="/uploads/2024/12/DSC07963-Large.webp"
alt="Klaus Mintel"
fill
className="object-cover"
/>
</div>
<div className="w-full md:w-1/2 p-12 md:p-24 flex flex-col justify-center order-1 md:order-2">
<h1 className="text-4xl md:text-5xl font-bold mb-8">Klaus Mintel</h1>
<div className="w-12 h-1 bg-white mb-8" />
<h2 className="text-2xl md:text-3xl font-medium italic mb-8 leading-relaxed">
"Sometimes all it takes is a clear head and a good cable to make the world a little better."
</h2>
<div className="w-12 h-1 bg-white mb-8" />
<p className="text-lg leading-relaxed opacity-90 mb-8">
Klaus is the man with the experience, bringing perspective and calm to the table—even when cable chaos threatens to take over. With impressive industry knowledge and a network as solid as our cables, he ensures everything runs smoothly. Klaus isnt just a problem solver; hes a strategic thinker who knows how to get to the point with a touch of humor.
</p>
<a
href="https://www.linkedin.com/in/klaus-mintel-b80a8b193/"
target="_blank"
rel="noopener noreferrer"
className="inline-flex items-center text-white font-bold border-2 border-white px-6 py-3 rounded-full hover:bg-white hover:text-[#011fff] transition-colors w-fit group"
>
Check Klaus' LinkedIn
<span className="ml-2 group-hover:translate-x-1 transition-transform">&rarr;</span>
</a>
</div>
</div>
</section>
{/* Manifesto Section */} {/* Manifesto Section */}
<Section className="bg-neutral-dark text-white"> <Section className="bg-white text-neutral-dark">
<Container> <Container>
<div className="grid grid-cols-1 lg:grid-cols-12 gap-12"> <div className="grid grid-cols-1 lg:grid-cols-12 gap-12">
<div className="lg:col-span-4"> <div className="lg:col-span-4">
@@ -95,17 +135,17 @@ export default function TeamPage() {
</div> </div>
<div className="lg:col-span-8 grid grid-cols-1 md:grid-cols-2 gap-8"> <div className="lg:col-span-8 grid grid-cols-1 md:grid-cols-2 gap-8">
{[ {[
{ title: 'Competence', desc: 'Decades of experience and Europe-wide know-how combined with commitment and new ideas.' }, { title: 'Competence', desc: 'Decades of experience and Europe-wide know-how combined with commitment and new ideas. Production partners up to 525 kV and the most modern systems, test laboratories and ready to invest in the future.' },
{ title: 'Availability', desc: 'Always there for you - no waiting, no delays, just fast and reliable support.' }, { title: 'Availability', desc: 'Always there for you - no waiting, no delays, just fast and reliable support. Maybe it\'s because we love what we do.' },
{ title: 'Solutions', desc: 'Solutions require a lot of questions. We ask them. You, the manufacturer and ourselves.' }, { title: 'Solutions', desc: 'Solutions require a lot of questions. We ask them. You, the manufacturer and ourselves. If you don\'t ask questions, you\'ll pay for it later. We need to prevent that.' },
{ title: 'Logistics', desc: 'Monitoring production, regular exchanges, freight tracking, customs clearance - our everyday life.' }, { title: 'Logistics', desc: 'Monitoring production, regular exchanges, freight tracking, customs clearance, reloading, paying attention to the delivery time tunnel, invoices, delivery notes - our everyday life. We have the right team for it.' },
{ title: 'Open to new things', desc: 'We listen. From the inquiry, through the offer, to delivery. What can be done better needs to be discussed.' }, { title: 'Open to new things', desc: 'We listen. From the inquiry, through the offer, to delivery. What can be done better needs to be discussed. If you don\'t adapt your processes, you\'ll no longer be on the highway at some point. Instead, you\'ll end up in a dead end.' },
{ title: 'Reliability', desc: 'We deliver what we promise every time, without fail.' } { title: 'Reliability', desc: 'We deliver what we promise every time, without fail.' }
].map((item, idx) => ( ].map((item, idx) => (
<div key={idx} className="bg-white/5 p-6 rounded-lg border border-white/10 hover:bg-white/10 transition-colors"> <div key={idx} className="bg-neutral-light p-6 rounded-lg border border-neutral hover:border-primary transition-colors">
<div className="text-primary font-mono text-xl mb-4">0{idx + 1}</div> <div className="text-primary font-mono text-xl mb-4">0{idx + 1}</div>
<h3 className="text-xl font-bold mb-3">{item.title}</h3> <h3 className="text-xl font-bold mb-3">{item.title}</h3>
<p className="text-white/70">{item.desc}</p> <p className="text-text-secondary">{item.desc}</p>
</div> </div>
))} ))}
</div> </div>
@@ -114,7 +154,7 @@ export default function TeamPage() {
</Section> </Section>
{/* Gallery Section */} {/* Gallery Section */}
<Section className="bg-neutral-dark py-0 pb-24"> <Section className="bg-neutral-dark py-0 pb-24 pt-24">
<Container> <Container>
<div className="grid grid-cols-2 md:grid-cols-4 gap-4"> <div className="grid grid-cols-2 md:grid-cols-4 gap-4">
{[ {[

View File

@@ -7,70 +7,91 @@ export default function Footer() {
const currentYear = new Date().getFullYear(); const currentYear = new Date().getFullYear();
return ( return (
<footer className="bg-neutral text-text-secondary py-12 border-t border-neutral-dark"> <footer className="bg-white text-neutral-dark py-16 border-t border-neutral-light">
<div className="container mx-auto px-4"> <div className="container mx-auto px-4">
<div className="grid grid-cols-1 md:grid-cols-4 gap-8 mb-8"> <div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-5 gap-8 mb-12">
<div> {/* Column 1: Legal & Languages */}
<Link href="/" className="block mb-4"> <div className="space-y-8">
<Image <div>
src="/uploads/2023/11/KLZ-Logo-blau.svg" <h4 className="text-lg font-bold mb-4">Legal</h4>
alt="KLZ Cables" <ul className="space-y-2 text-sm text-text-secondary">
width={100} <li><Link href="/legal-notice" className="hover:text-primary">Legal Notice</Link></li>
height={48} <li><Link href="/privacy-policy" className="hover:text-primary">Privacy Policy</Link></li>
className="h-12 w-auto" <li><Link href="/terms" className="hover:text-primary">Terms</Link></li>
/> </ul>
</Link> </div>
<p className="mb-4"> <div>
Raiffeisenstraße 22<br /> <h4 className="text-lg font-bold mb-4">Languages</h4>
73630 Remshalden<br /> <ul className="space-y-2 text-sm text-text-secondary">
Germany <li><Link href="/en" className="hover:text-primary">English</Link></li>
</p> <li><Link href="/de" className="hover:text-primary">Deutsch</Link></li>
<p> </ul>
<a href="tel:+4988192537298" className="hover:text-primary">+49 881 92537298</a><br /> </div>
<a href="mailto:info@klz-vertriebs-gmbh.com" className="hover:text-primary">info@klz-vertriebs-gmbh.com</a> <div>
</p> <p className="text-sm text-text-secondary">
</div> Copyright © {currentYear} KLZ Cables.<br />
All rights reserved.
<div> </p>
<h4 className="text-lg font-bold text-text-primary mb-4">{t('legal')}</h4> </div>
<ul className="space-y-2"> <div>
<li><Link href="/legal-notice" className="hover:text-primary">{t('legalNotice')}</Link></li> <Image
<li><Link href="/privacy-policy" className="hover:text-primary">{t('privacyPolicy')}</Link></li> src="/logo-white.svg"
<li><Link href="/terms" className="hover:text-primary">{t('terms')}</Link></li> alt="KLZ Cables"
</ul> width={100}
</div> height={25}
className="h-6 w-auto invert"
<div> unoptimized
<h4 className="text-lg font-bold text-text-primary mb-4">{t('products')}</h4> />
<ul className="space-y-2">
<li><Link href="/products/low-voltage-cables" className="hover:text-primary">{t('lowVoltage')}</Link></li>
<li><Link href="/products/medium-voltage-cables" className="hover:text-primary">{t('mediumVoltage')}</Link></li>
<li><Link href="/products/high-voltage-cables" className="hover:text-primary">{t('highVoltage')}</Link></li>
<li><Link href="/products/solar-cables" className="hover:text-primary">{t('solar')}</Link></li>
</ul>
</div>
<div>
<h4 className="text-lg font-bold text-text-primary mb-4">{t('followUs')}</h4>
<div className="flex space-x-4">
{/* Social Icons */}
<a href="https://www.linkedin.com/company/klz-cables" target="_blank" rel="noopener noreferrer" className="hover:text-primary">
<svg className="w-6 h-6" fill="currentColor" viewBox="0 0 24 24" aria-hidden="true">
<path fillRule="evenodd" d="M19 0h-14c-2.761 0-5 2.239-5 5v14c0 2.761 2.239 5 5 5h14c2.762 0 5-2.239 5-5v-14c0-2.761-2.238-5-5-5zm-11 19h-3v-11h3v11zm-1.5-12.268c-.966 0-1.75-.79-1.75-1.764s.784-1.764 1.75-1.764 1.75.79 1.75 1.764-.783 1.764-1.75 1.764zm13.5 12.268h-3v-5.604c0-3.368-4-3.113-4 0v5.604h-3v-11h3v1.765c1.396-2.586 7-2.777 7 2.476v6.759z" clipRule="evenodd" />
</svg>
</a>
<a href="https://www.instagram.com/klz_cables/" target="_blank" rel="noopener noreferrer" className="hover:text-primary">
<svg className="w-6 h-6" fill="currentColor" viewBox="0 0 24 24" aria-hidden="true">
<path fillRule="evenodd" d="M12.315 2c2.43 0 2.784.013 3.808.06 1.064.049 1.791.218 2.427.465a4.902 4.902 0 011.772 1.153 4.902 4.902 0 011.153 1.772c.247.636.416 1.363.465 2.427.048 1.067.06 1.407.06 4.123v.08c0 2.643-.012 2.987-.06 4.043-.049 1.064-.218 1.791-.465 2.427a4.902 4.902 0 01-1.153 1.772 4.902 4.902 0 01-1.772 1.153c-.636.247-1.363.416-2.427.465-1.067.048-1.407.06-4.123.06h-.08c-2.643 0-2.987-.012-4.043-.06-1.064-.049-1.791-.218-2.427-.465a4.902 4.902 0 01-1.772-1.153 4.902 4.902 0 01-1.153-1.772c-.247-.636-.416-1.363-.465-2.427-.047-1.024-.06-1.379-.06-3.808v-.63c0-2.43.013-2.784.06-3.808.049-1.064.218-1.791.465-2.427a4.902 4.902 0 011.153-1.772A4.902 4.902 0 015.468 2.53c.636-.247 1.363-.416 2.427-.465C8.901 2.013 9.256 2 11.685 2h.63zm-.081 1.802h-.468c-2.456 0-2.784.011-3.807.058-.975.045-1.504.207-1.857.344-.467.182-.8.398-1.15.748-.35.35-.566.683-.748 1.15-.137.353-.3.882-.344 1.857-.047 1.023-.058 1.351-.058 3.807v.468c0 2.456.011 2.784.058 3.807.045.975.207 1.504.344 1.857.182.466.399.8.748 1.15.35.35.683.566 1.15.748.353.137.882.3 1.857.344 1.054.048 1.37.058 4.041.058h.08c2.597 0 2.917-.01 3.96-.058.976-.045 1.505-.207 1.858-.344.466-.182.8-.398 1.15-.748.35-.35.566-.683.748-1.15.137-.353.3-.882.344-1.857.048-1.055.058-1.37.058-4.041v-.08c0-2.597-.01-2.917-.058-3.96-.045-.976-.207-1.505-.344-1.858a3.097 3.097 0 00-.748-1.15 3.098 3.098 0 00-1.15-.748c-.353-.137-.882-.3-1.857-.344-1.023-.047-1.351-.058-3.807-.058zM12 6.865a5.135 5.135 0 110 10.27 5.135 5.135 0 010-10.27zm0 1.802a3.333 3.333 0 100 6.666 3.333 3.333 0 000-6.666zm5.338-3.205a1.2 1.2 0 110 2.4 1.2 1.2 0 010-2.4z" clipRule="evenodd" />
</svg>
</a>
</div> </div>
</div> </div>
{/* Column 2: Archives */}
<div>
<h4 className="text-lg font-bold mb-4">Archives</h4>
<ul className="space-y-2 text-sm text-text-secondary">
<li><Link href="#" className="hover:text-primary">November 2025</Link></li>
<li><Link href="#" className="hover:text-primary">September 2025</Link></li>
<li><Link href="#" className="hover:text-primary">August 2025</Link></li>
<li><Link href="#" className="hover:text-primary">June 2025</Link></li>
<li><Link href="#" className="hover:text-primary">May 2025</Link></li>
</ul>
</div>
{/* Column 3: Categories */}
<div>
<h4 className="text-lg font-bold mb-4">Categories</h4>
<ul className="space-y-2 text-sm text-text-secondary">
<li><Link href="#" className="hover:text-primary">Cable Logistics</Link></li>
<li><Link href="#" className="hover:text-primary">Cable Technology</Link></li>
<li><Link href="#" className="hover:text-primary">KLZ News</Link></li>
<li><Link href="#" className="hover:text-primary">Renewable Energy</Link></li>
</ul>
</div>
{/* Column 4: Recent Posts */}
<div className="lg:col-span-2">
<h4 className="text-lg font-bold mb-4">Recent Posts</h4>
<ul className="space-y-4 text-sm text-text-secondary">
<li>
<Link href="#" className="hover:text-primary block font-medium">Focus on wind farm construction: three typical cable challenges</Link>
</li>
<li>
<Link href="#" className="hover:text-primary block font-medium">Why the N2XS(F)2Y is the ideal cable for your energy project</Link>
</li>
<li>
<Link href="#" className="hover:text-primary block font-medium">Shortage of NA2XSF2Y? We have the three-core medium-voltage cable</Link>
</li>
<li>
<Link href="#" className="hover:text-primary block font-medium">Which cables for wind power? Differences from low to extra-high voltage explained</Link>
</li>
</ul>
</div>
</div> </div>
</div>
<div className="border-t border-neutral-dark pt-8 text-center text-sm">
<p>&copy; {currentYear} KLZ Cables. All rights reserved.</p> {/* Slide out widget area (hidden for now, but referenced in HTML) */}
</div> <div className="fixed top-0 right-0 h-full w-80 bg-white shadow-2xl transform translate-x-full transition-transform duration-300 z-50">
{/* Content would go here */}
</div> </div>
</footer> </footer>
); );

View File

@@ -4,14 +4,30 @@ import Link from 'next/link';
import Image from 'next/image'; import Image from 'next/image';
import { useTranslations } from 'next-intl'; import { useTranslations } from 'next-intl';
import { usePathname } from 'next/navigation'; import { usePathname } from 'next/navigation';
import { Button } from './ui';
import { useEffect, useState } from 'react';
import { cn } from './ui';
export default function Header() { export default function Header() {
const t = useTranslations('Navigation'); const t = useTranslations('Navigation');
const pathname = usePathname(); const pathname = usePathname();
const [isScrolled, setIsScrolled] = useState(false);
// Extract locale from pathname // Extract locale from pathname
const currentLocale = pathname.split('/')[1] || 'en'; const currentLocale = pathname.split('/')[1] || 'en';
// Check if homepage
const isHomePage = pathname === `/${currentLocale}` || pathname === '/';
useEffect(() => {
const handleScroll = () => {
setIsScrolled(window.scrollY > 50);
};
window.addEventListener('scroll', handleScroll);
return () => window.removeEventListener('scroll', handleScroll);
}, []);
// Function to get path for a different locale // Function to get path for a different locale
const getPathForLocale = (newLocale: string) => { const getPathForLocale = (newLocale: string) => {
const segments = pathname.split('/'); const segments = pathname.split('/');
@@ -24,60 +40,92 @@ export default function Header() {
{ label: t('team'), href: '/team' }, { label: t('team'), href: '/team' },
{ label: t('products'), href: '/products' }, { label: t('products'), href: '/products' },
{ label: t('blog'), href: '/blog' }, { label: t('blog'), href: '/blog' },
{ label: t('contact'), href: '/contact' },
]; ];
const headerClass = cn(
"fixed top-0 left-0 right-0 z-50 transition-all duration-300",
{
"bg-transparent": isHomePage && !isScrolled,
"bg-white shadow-md": !isHomePage || isScrolled,
"py-4": !isScrolled,
"py-2": isScrolled
}
);
const textColorClass = (isHomePage && !isScrolled) ? "text-white" : "text-text-primary";
const logoSrc = (isHomePage && !isScrolled)
? "/logo-white.svg"
: "/logo-blue.svg";
return ( return (
<header className="bg-white shadow-sm sticky top-0 z-50"> <>
<div className="container mx-auto px-4 h-20 flex items-center justify-between"> <header className={headerClass}>
<Link href={`/${currentLocale}`} className="flex-shrink-0"> <div className="container mx-auto px-4 flex items-center justify-between">
<Image <Link href={`/${currentLocale}`} className="flex-shrink-0">
src="/uploads/2023/11/KLZ-Logo-blau.svg" <Image
alt="KLZ Cables" src={logoSrc}
width={100} alt="KLZ Cables"
height={48} width={100}
className="h-12 w-auto" height={100}
priority className="h-12 w-auto transition-all duration-300"
/> priority
</Link> unoptimized
/>
</Link>
<nav className="hidden md:flex items-center space-x-8"> <div className="flex items-center gap-8">
{menuItems.map((item) => ( <nav className="hidden lg:flex items-center space-x-8">
<Link {menuItems.map((item) => (
key={item.href} <Link
href={`/${currentLocale}${item.href === '/' ? '' : item.href}`} key={item.href}
className="text-text-primary hover:text-primary font-medium transition-colors" href={`/${currentLocale}${item.href === '/' ? '' : item.href}`}
> className={cn(textColorClass, "hover:text-primary font-medium transition-colors text-lg")}
{item.label} >
</Link> {item.label}
))} </Link>
</nav> ))}
</nav>
<div className="flex items-center space-x-4"> <div className={cn("hidden lg:flex items-center space-x-4", textColorClass)}>
<div className="flex items-center space-x-2 text-sm font-medium"> <div className="flex items-center space-x-2 text-sm font-medium">
<Link <Link
href={getPathForLocale('en')} href={getPathForLocale('en')}
className={`hover:text-primary transition-colors ${currentLocale === 'en' ? 'text-primary font-bold' : 'text-text-secondary'}`} className={`hover:text-primary transition-colors flex items-center gap-1 ${currentLocale === 'en' ? 'text-primary font-bold' : 'opacity-80'}`}
> >
EN <img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAALCAMAAABBPP0LAAAAmVBMVEViZsViZMJiYrf9gnL8eWrlYkjgYkjZYkj8/PujwPybvPz4+PetraBEgfo+fvo3efkydfkqcvj8Y2T8UlL8Q0P8MzP9k4Hz8/Lu7u4DdPj9/VrKysI9fPoDc/EAZ7z7IiLHYkjp6ekCcOTk5OIASbfY/v21takAJrT5Dg6sYkjc3Nn94t2RkYD+y8KeYkjs/v7l5fz0dF22YkjWvcOLAAAAgElEQVR4AR2KNULFQBgGZ5J13KGGKvc/Cw1uPe62eb9+Jr1EUBFHSgxxjP2Eca6AfUSfVlUfBvm1Ui1bqafctqMndNkXpb01h5TLx4b6TIXgwOCHfjv+/Pz+5vPRw7txGWT2h6yO0/GaYltIp5PT1dEpLNPL/SdWjYjAAZtvRPgHJX4Xio+DSrkAAAAASUVORK5CYII=" alt="English" width="16" height="11" />
</Link> </Link>
<span className="text-text-light">|</span> <Link
<Link href={getPathForLocale('de')}
href={getPathForLocale('de')} className={`hover:text-primary transition-colors flex items-center gap-1 ${currentLocale === 'de' ? 'text-primary font-bold' : 'opacity-80'}`}
className={`hover:text-primary transition-colors ${currentLocale === 'de' ? 'text-primary font-bold' : 'text-text-secondary'}`} >
> <img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAALCAIAAAD5gJpuAAABLElEQVR4AY2QgUZEQRSGz9ydmzbYkBWABBJYABHEFhJ6m0WP0DMEQNIr9AKrN8ne2Tt3Zs7MOdOZmRBEv+v34Tvub9R6fdNlAzU+snSME/wdjbjbbJ6EiEg6BA8102QbjKNpoMzw8v6qD/sOALbbT2MC1NgaAWOKOgxf5czY+4dbAX2G/THzcozLrvPV85IQyqVz0rvg2p9Pei4HjzSsiFbV4JgyhhxCjpGdZ0RhdikLB9/b8Qig7MkpSovR7Cp59q6CazaNFiTt4J82o6uvdMVwTsztKTXZod4jgOJJuqNAjFyGrBR8gM6XwKfIC4KanBSTZ0rClKh08D9DFh3egW7ebH7NcRDQWrz9rM2Ne+mDOXB2mZJ8agL19nwxR2iZXGm1gDbQKhDjd4yHb2oW/KR8xHicAAAAAElFTkSuQmCC" alt="Deutsch" width="16" height="11" />
DE </Link>
</Link> </div>
<Button
href="/contact"
variant="outline"
className={cn(
"rounded-full px-6 transition-colors",
isHomePage && !isScrolled
? "border-white text-white hover:bg-white hover:text-black"
: "border-primary text-primary hover:bg-primary hover:text-white"
)}
>
Get in touch
</Button>
</div>
{/* Mobile Menu Button */}
<button className={cn("lg:hidden p-2", textColorClass)}>
<svg className="w-8 h-8" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M4 6h16M4 12h16M4 18h16" />
</svg>
</button>
</div> </div>
{/* Mobile Menu Button (Placeholder) */}
<button className="md:hidden p-2 text-text-primary">
<svg className="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M4 6h16M4 12h16M4 18h16" />
</svg>
</button>
</div> </div>
</div> </header>
</header> {!isHomePage && <div className="h-24 md:h-32" />}
</>
); );
} }

56
components/Scribble.tsx Normal file
View File

@@ -0,0 +1,56 @@
import React from 'react';
import { cn } from '@/components/ui';
interface ScribbleProps {
variant: 'circle' | 'underline';
className?: string;
color?: string;
}
export default function Scribble({ variant, className, color = '#82ed20' }: ScribbleProps) {
if (variant === 'circle') {
return (
<svg
className={cn("absolute pointer-events-none", className)}
role="presentation"
viewBox="0 0 800 350"
preserveAspectRatio="none"
>
<path
style={{ animationDuration: '1.8s' }}
transform="matrix(0.9791300296783447,0,0,0.9791300296783447,400,179)"
strokeLinejoin="miter"
fillOpacity="0"
pathLength="1"
strokeMiterlimit="4"
stroke={color}
strokeOpacity="1"
strokeWidth="20"
d=" M253,-161 C253,-161 -284.78900146484375,-201.4600067138672 -376,-21 C-469,163 67.62300109863281,174.2100067138672 256,121 C564,34 250.82899475097656,-141.6929931640625 19.10700035095215,-116.93599700927734"
/>
</svg>
);
}
if (variant === 'underline') {
return (
<svg
className={cn("absolute pointer-events-none", className)}
role="presentation"
viewBox="-400 -55 730 60"
preserveAspectRatio="none"
>
<path
style={{ animationDuration: '1.8s' }}
d="m -383.25 -6 c 55.25 -22 130.75 -33.5 293.25 -38 c 54.5 -0.5 195 -2.5 401 15"
stroke={color}
pathLength="1"
strokeWidth="20"
fill="none"
/>
</svg>
);
}
return null;
}

23
components/home/CTA.tsx Normal file
View File

@@ -0,0 +1,23 @@
import React from 'react';
import Link from 'next/link';
import { Section, Container } from '../../components/ui';
export default function CTA() {
return (
<Section className="bg-primary text-white py-24">
<Container>
<div className="flex flex-col md:flex-row items-center justify-between gap-8">
<h2 className="text-3xl md:text-4xl font-bold max-w-2xl">
Enough information, let's build something together!
</h2>
<Link href="/contact" className="group flex items-center gap-4 text-xl font-bold text-[#82ed20]">
Reach out now
<span className="w-10 h-10 border-2 border-[#82ed20] rounded-full flex items-center justify-center group-hover:bg-[#82ed20] group-hover:text-primary transition-all">
&rarr;
</span>
</Link>
</div>
</Container>
</Section>
);
}

View File

@@ -0,0 +1,39 @@
import React from 'react';
import Image from 'next/image';
import { Section, Container } from '../../components/ui';
export default function GallerySection() {
const images = [
'/uploads/2024/12/DSC07433-Large-600x400.webp',
'/uploads/2024/12/DSC07460-Large-600x400.webp',
'/uploads/2024/12/DSC07469-Large-600x400.webp',
'/uploads/2024/12/DSC07539-Large-600x400.webp',
'/uploads/2024/12/DSC07655-Large.webp',
'/uploads/2024/12/DSC07768-Large.webp',
];
return (
<Section className="bg-white text-neutral-dark py-24">
<Container>
<div className="text-center mb-16">
<h2 className="text-4xl md:text-5xl font-bold">Strong Connections for a Sustainable World.</h2>
</div>
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4">
{images.map((src, idx) => (
<div key={idx} className="relative aspect-[4/3] overflow-hidden rounded-lg group">
<Image
src={src}
alt={`Gallery image ${idx + 1}`}
fill
className="object-cover transition-transform duration-500 group-hover:scale-110"
unoptimized
/>
<div className="absolute inset-0 bg-black/20 group-hover:bg-transparent transition-colors" />
</div>
))}
</div>
</Container>
</Section>
);
}

46
components/home/Hero.tsx Normal file
View File

@@ -0,0 +1,46 @@
import React from 'react';
import Link from 'next/link';
import { Container } from '@/components/ui';
import Scribble from '@/components/Scribble';
export default function Hero() {
return (
<section className="relative h-[80vh] flex items-center justify-center overflow-hidden bg-neutral-dark">
<div className="absolute inset-0 z-0">
<video
className="w-full h-full object-cover"
autoPlay
muted
loop
playsInline
poster="/uploads/2025/02/Still-2025-02-10-104337_1.1.1.webp"
>
<source src="/uploads/2025/02/header.webm" type="video/webm" />
<source src="/uploads/2025/02/header.mp4" type="video/mp4" />
</video>
<div className="absolute inset-0 bg-gradient-to-b from-black/10 to-black/40" />
</div>
<Container className="relative z-10 text-left text-white w-full">
<div className="max-w-4xl">
<h1 className="text-4xl md:text-6xl lg:text-7xl font-bold mb-6 tracking-tight leading-tight">
We are helping to expand the energy cable networks for a
<span className="relative inline-block ml-4 mr-2">
<span className="relative z-10 text-white italic">green</span>
<Scribble variant="circle" className="w-[140%] h-[140%] -top-[20%] -left-[20%]" />
</span>
future
</h1>
<div className="mt-8">
<Link href="/contact" className="inline-flex items-center text-white text-xl font-medium group">
Let's talk
<span className="ml-2 w-8 h-8 border-2 border-white rounded-full flex items-center justify-center group-hover:bg-white group-hover:text-black transition-all">
&rarr;
</span>
</Link>
</div>
</div>
</Container>
</section>
);
}

View File

@@ -0,0 +1,45 @@
import React from 'react';
import Link from 'next/link';
import Image from 'next/image';
import { Section, Container, Button } from '../../components/ui';
export default function MeetTheTeam() {
return (
<Section className="relative py-24 md:py-32 overflow-hidden">
<div className="absolute inset-0 z-0">
<Image
src="/uploads/2024/12/DSC07655-Large.webp"
alt="KLZ Team"
fill
className="object-cover"
unoptimized
/>
<div className="absolute inset-0 bg-gradient-to-r from-neutral-dark/90 to-neutral-dark/40" />
</div>
<Container className="relative z-10">
<div className="max-w-2xl text-white">
<div className="flex items-center gap-4 mb-6">
<div className="w-12 h-12 rounded-full overflow-hidden border-2 border-white/20">
{/* Placeholder for avatar if needed, or just icon */}
<div className="w-full h-full bg-primary flex items-center justify-center">
<span className="font-bold">KLZ</span>
</div>
</div>
<h2 className="text-3xl font-bold">Meet the team behind KLZ</h2>
</div>
<div className="bg-white/10 backdrop-blur-sm rounded-lg p-6 mb-8 border border-white/10">
<p className="text-lg leading-relaxed">
At KLZ, our team is the power behind the cables. From seasoned experts like Michael and Klaus to a dedicated group of planners, logistics specialists, and customer support professionals, every member plays a vital role. Together, we combine decades of experience, innovative thinking, and a shared commitment to delivering reliable energy solutions.
</p>
</div>
<Button href="/team" variant="primary" size="lg">
Checkout our team
</Button>
</div>
</Container>
</Section>
);
}

View File

@@ -0,0 +1,63 @@
import React from 'react';
import Link from 'next/link';
import Image from 'next/image';
import { Section } from '../../components/ui';
export default function ProductCategories() {
return (
<Section className="bg-white py-0">
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4">
{[
{
title: 'Low Voltage Cables',
desc: 'Powering everyday essentials with reliability and safety.',
img: '/uploads/2024/12/low-voltage-scaled.webp',
icon: '/uploads/2024/11/Low-Voltage.svg',
href: '/products/low-voltage-cables'
},
{
title: 'Medium Voltage Cables',
desc: 'The perfect balance between power and performance for industrial and urban grids.',
img: '/uploads/2024/12/medium-voltage-scaled.webp',
icon: '/uploads/2024/11/Medium-Voltage.svg',
href: '/products/medium-voltage-cables'
},
{
title: 'High Voltage Cables',
desc: 'Delivering maximum power over long distances—without compromise.',
img: '/uploads/2025/06/na2xsfl2y-rendered.webp',
icon: '/uploads/2024/11/High-Voltage.svg',
href: '/products/high-voltage-cables'
},
{
title: 'Solar Cables',
desc: 'Connecting the suns energy to your sustainable future.',
img: '/uploads/2025/04/3.webp',
icon: '/uploads/2024/11/Solar.svg',
href: '/products/solar-cables'
}
].map((category, idx) => (
<Link key={idx} href={category.href} className="group block relative h-[400px] md:h-[500px] overflow-hidden">
<Image
src={category.img}
alt={category.title}
fill
className="object-cover transition-transform duration-700 group-hover:scale-110"
unoptimized
/>
<div className="absolute inset-0 bg-black/20 group-hover:bg-black/40 transition-colors" />
<div className="absolute inset-0 p-8 flex flex-col justify-center items-center text-center text-white">
<div className="mb-4 transform transition-transform group-hover:-translate-y-2">
<img src={category.icon} alt="" className="w-16 h-16 mx-auto" />
</div>
<h3 className="text-2xl font-bold mb-2 transform transition-transform group-hover:-translate-y-2">{category.title}</h3>
<p className="text-white/90 opacity-0 group-hover:opacity-100 transform translate-y-4 group-hover:translate-y-0 transition-all duration-300">
{category.desc}
</p>
</div>
</Link>
))}
</div>
</Section>
);
}

View File

@@ -0,0 +1,28 @@
import React from 'react';
import Scribble from '@/components/Scribble';
export default function VideoSection() {
return (
<section className="relative h-[60vh] overflow-hidden">
<video
className="w-full h-full object-cover"
autoPlay
muted
loop
playsInline
>
<source src="/uploads/2024/12/making-of-metal-cable-on-factory-2023-11-27-04-55-16-utc-2.webm" type="video/mp4" />
</video>
<div className="absolute inset-0 bg-black/50 flex items-center justify-center">
<h2 className="text-3xl md:text-5xl font-bold text-white text-center max-w-4xl px-4 leading-tight">
From a single strand to infinite power the
<span className="relative inline-block mx-2">
<span className="relative z-10 italic">future</span>
<Scribble variant="underline" className="w-full h-full top-full left-0" />
</span>
starts here.
</h2>
</div>
</section>
);
}

View File

@@ -0,0 +1,51 @@
import React from 'react';
import { Section, Container } from '../../components/ui';
export default function WhatWeDo() {
return (
<Section className="bg-white text-neutral-dark">
<Container>
<div className="grid grid-cols-1 lg:grid-cols-12 gap-12">
<div className="lg:col-span-4">
<div className="sticky top-24">
<h2 className="text-5xl font-bold text-primary mb-6">What we do</h2>
<p className="text-xl text-text-secondary">
We ensure that the electricity flows with quality-tested cables. From low voltage up to high voltage.
</p>
</div>
</div>
<div className="lg:col-span-8 grid grid-cols-1 md:grid-cols-2 gap-x-12 gap-y-16">
{[
{
num: '01',
title: 'Supply to energy suppliers, wind and solar parks, industry and trade',
desc: 'We support your projects from 1 to 220 kV, from simple NYY to high-voltage cables with segment conductors and aluminum sheaths, with a particular focus on medium-voltage cables.'
},
{
num: '02',
title: 'Supply of cables whose quality is certified',
desc: 'Cables are products that have to function 100%. For decades, often 80 to 100 years. Our cables are not only approved by VDE. The most well-known energy suppliers trust us.'
},
{
num: '03',
title: 'We deliver on time because we know the consequences for you',
desc: 'Wind farm North Germany, coordinates XYZ, delivery Wednesday 2-4 p.m., no unloading option. Yes, we know that. We organize the logistics with a back office team that has up to 20 years of cable experience.'
},
{
num: '04',
title: 'The cable alone is not the solution',
desc: 'Stony ground? Perhaps a thicker outer sheath would be better? Damp ground? Can there be transverse watertight protection? We think for you and ask questions.'
}
].map((item, idx) => (
<div key={idx} className="space-y-4">
<span className="text-sm font-mono text-primary/60 border-b border-primary/20 pb-2 block w-fit">{item.num}</span>
<h3 className="text-2xl font-bold">{item.title}</h3>
<p className="text-text-secondary leading-relaxed">{item.desc}</p>
</div>
))}
</div>
</div>
</Container>
</Section>
);
}

View File

@@ -0,0 +1,51 @@
import React from 'react';
import { Section, Container } from '../../components/ui';
export default function WhyChooseUs() {
return (
<Section className="bg-white text-neutral-dark">
<Container>
<div className="grid grid-cols-1 lg:grid-cols-12 gap-12">
<div className="lg:col-span-4">
<div className="sticky top-24">
<h2 className="text-5xl font-bold text-primary mb-6">Why choose us</h2>
<p className="text-xl text-text-secondary">
Experience prevents many mistakes, but we learn something new every day
</p>
</div>
</div>
<div className="lg:col-span-8 grid grid-cols-1 md:grid-cols-2 gap-x-12 gap-y-16">
{[
{
num: '01',
title: 'Expertise with depth',
desc: 'Our team has decades of experience far beyond the founding of KLZ in 2009. The entire team has over 100 years of cable experience, gained in a wide variety of plants, from low voltage to medium voltage to high voltage. We know what cables smell like, what the colleague at the shielding machine is responsible for how testing is carried out.'
},
{
num: '02',
title: 'Tailor-made solutions for your project',
desc: 'When things get more complex, we involve our technical consultants. Thats where you need experts who havent just started their careers. You need people who read and understand standards and have sometimes been involved. We have them, and with their and our experience we differentiate ourselves from simple cable trading'
},
{
num: '03',
title: 'Reliability that keeps your projects on track',
desc: 'Accessibility, quick response in a fast-moving world. Do you still have questions after 5 p.m.? Or at the weekend? We are always there. And that is how we have developed our partners so that as a team we can realize what you have paid for. And if something does not go well, no one hides.'
},
{
num: '04',
title: 'Sustainability without compromise',
desc: 'We are convinced that we will leave the world better than we found it. With initiatives such as our drum return service and a clear focus on recycling, we ensure that every connection is as environmentally friendly as possible. Each of our partners has the appropriate certificates, which are increasingly expected by all customers.'
}
].map((item, idx) => (
<div key={idx} className="space-y-4">
<span className="text-sm font-mono text-primary/60 border-b border-primary/20 pb-2 block w-fit">{item.num}</span>
<h3 className="text-2xl font-bold">{item.title}</h3>
<p className="text-text-secondary leading-relaxed">{item.desc}</p>
</div>
))}
</div>
</div>
</Container>
</Section>
);
}

View File

@@ -1,15 +1,6 @@
--- ---
title: 100 % erneuerbare Energie? Nur mit der richtigen Kabelinfrastruktur! title: 100 % erneuerbare Energie? Nur mit der richtigen Kabelinfrastruktur!
date: '2025-03-31T12:00:34' date: '2025-03-31T12:00:34'
excerpt: >-
[vc_column column_padding=&#8221;no-extra-padding&#8221;
column_padding_tablet=&#8221;inherit&#8221;
column_padding_phone=&#8221;inherit&#8221;
column_padding_position=&#8221;all&#8221;
column_element_direction_desktop=&#8221;default&#8221;
column_element_spacing=&#8221;10px&#8221;
desktop_text_alignment=&#8221;default&#8221;
tablet_text_alignment=&#8221;default&#8221;&#8230;
featuredImage: /uploads/2025/02/image_fx_-6.webp featuredImage: /uploads/2025/02/image_fx_-6.webp
locale: de locale: de
--- ---
@@ -125,7 +116,7 @@ locale: de
</table> </table>
<p data-start="1161" data-end="1473">Während Freileitungen in der Vergangenheit aufgrund der geringeren Baukosten bevorzugt wurden, sprechen moderne Anforderungen an Netzstabilität, Umweltschutz und Ästhetik zunehmend für Erdkabel. In vielen Ländern setzt sich daher die Erdverkabelung als Standard für neue Hoch- und Mittelspannungstrassen durch.</p> <p data-start="1161" data-end="1473">Während Freileitungen in der Vergangenheit aufgrund der geringeren Baukosten bevorzugt wurden, sprechen moderne Anforderungen an Netzstabilität, Umweltschutz und Ästhetik zunehmend für Erdkabel. In vielen Ländern setzt sich daher die Erdverkabelung als Standard für neue Hoch- und Mittelspannungstrassen durch.</p>
<p data-start="1475" data-end="1780">Wer sich detaillierter mit diesem Thema befassen möchte, findet hier eine umfassende Analyse der Unterschiede zwischen Erdkabeln und Freileitungen. <a href="https://www.hochspannungsblog.at/wissenswertes/netzaufbau/vergleich-freileitung-erdkabel" target="_blank" rel="noopener noreferrer nofollow">https://www.hochspannungsblog.at/wissenswertes/netzaufbau/vergleich-freileitung-erdkabel</a></p> <p data-start="1475" data-end="1780">Wer sich detaillierter mit diesem Thema befassen möchte, findet hier eine umfassende Analyse der Unterschiede zwischen Erdkabeln und Freileitungen. <a href="https://www.hochspannungsblog.at/wissenswertes/netzaufbau/vergleich-freileitung-erdkabel" target="_blank" rel="noopener noreferrer nofollow">https://www.hochspannungsblog.at/wissenswertes/netzaufbau/vergleich-freileitung-erdkabel</a></p>
<div class="vlp-link-container vlp-layout-basic"><a href="https://www.hochspannungsblog.at/wissenswertes/netzaufbau/vergleich-freileitung-erdkabel" class="vlp-link" title="Freileitung und Erdkabel sind „Stand der Technik“" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="https://www.hochspannungsblog.at/201210-netzbau-110kv-wegscheid-mast-kabelanschluss-1723.jpg?ch=dhsowxyq&amp;:hp=9;1;de" style="max-width: 150px; max-height: 150px" /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Freileitung und Erdkabel sind „Stand der Technik“</div><div class="vlp-block-1 vlp-link-summary">Freileitung oder Erdkabel? Wir erklären Ihnen die Unterschiede und Möglichkeiten, aber auch warum was möglich ist und warum was nicht.</div></div></div> <div class="vlp-link-container vlp-layout-basic"><a href="https://www.hochspannungsblog.at/wissenswertes/netzaufbau/vergleich-freileitung-erdkabel" class="vlp-link" title="Freileitung und Erdkabel sind „Stand der Technik“" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="https://www.hochspannungsblog.at/201210-netzbau-110kv-wegscheid-mast-kabelanschluss-1723.jpg?ch=dhsowxyq&amp;:hp=9;1;de" style={{"maxWidth":"150px","maxHeight":"150px"}} /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Freileitung und Erdkabel sind „Stand der Technik“</div><div class="vlp-block-1 vlp-link-summary">Freileitung oder Erdkabel? Wir erklären Ihnen die Unterschiede und Möglichkeiten, aber auch warum was möglich ist und warum was nicht.</div></div></div>
<p data-start="1782" data-end="1956">Die Energiewende kann nur gelingen, wenn die Infrastruktur mitwächst. Wer jetzt in die richtigen Kabel investiert, sichert die Stromversorgung für die kommenden Jahrzehnte.</p> <p data-start="1782" data-end="1956">Die Energiewende kann nur gelingen, wenn die Infrastruktur mitwächst. Wer jetzt in die richtigen Kabel investiert, sichert die Stromversorgung für die kommenden Jahrzehnte.</p>
<div class="flex-shrink-0 flex flex-col relative items-end"> <div class="flex-shrink-0 flex flex-col relative items-end">

View File

@@ -1,14 +1,6 @@
--- ---
title: Das müssen Sie über erneuerbare Energien im Jahr 2025 wissen title: Das müssen Sie über erneuerbare Energien im Jahr 2025 wissen
date: '2025-01-15T13:41:10' date: '2025-01-15T13:41:10'
excerpt: >-
[vc_column column_padding=&#8221;no-extra-padding&#8221;
column_padding_tablet=&#8221;inherit&#8221;
column_padding_phone=&#8221;inherit&#8221;
column_padding_position=&#8221;all&#8221;
column_element_direction_desktop=&#8221;default&#8221;
column_element_spacing=&#8221;10px&#8221;
desktop_text_alignment=&#8221;default&#8221;&#8230;
featuredImage: >- featuredImage: >-
/uploads/2024/11/aerial-view-of-electricity-station-surrounded-with-2023-11-27-05-33-40-utc-scaled.jpg /uploads/2024/11/aerial-view-of-electricity-station-surrounded-with-2023-11-27-05-33-40-utc-scaled.jpg
locale: de locale: de

View File

@@ -1,15 +1,6 @@
--- ---
title: Die besten Erdkabel für Windkraft und Solar jetzt bei uns bestellen title: Die besten Erdkabel für Windkraft und Solar jetzt bei uns bestellen
date: '2025-05-26T10:17:34' date: '2025-05-26T10:17:34'
excerpt: >-
[vc_column column_padding=&#8221;no-extra-padding&#8221;
column_padding_tablet=&#8221;inherit&#8221;
column_padding_phone=&#8221;inherit&#8221;
column_padding_position=&#8221;all&#8221;
column_element_direction_desktop=&#8221;default&#8221;
column_element_spacing=&#8221;10px&#8221;
desktop_text_alignment=&#8221;default&#8221;
tablet_text_alignment=&#8221;default&#8221;&#8230;
featuredImage: /uploads/2025/04/image_fx_-2025-02-20T191245.537.webp featuredImage: /uploads/2025/04/image_fx_-2025-02-20T191245.537.webp
locale: de locale: de
--- ---

View File

@@ -3,14 +3,6 @@ title: >-
Die Kunst der Kabellogistik: Der Transport des Fundamentes moderner Die Kunst der Kabellogistik: Der Transport des Fundamentes moderner
Energienetze Energienetze
date: '2025-01-14T13:43:59' date: '2025-01-14T13:43:59'
excerpt: >-
[vc_column column_padding=&#8221;no-extra-padding&#8221;
column_padding_tablet=&#8221;inherit&#8221;
column_padding_phone=&#8221;inherit&#8221;
column_padding_position=&#8221;all&#8221;
column_element_direction_desktop=&#8221;default&#8221;
column_element_spacing=&#8221;10px&#8221;
desktop_text_alignment=&#8221;default&#8221;&#8230;
featuredImage: >- featuredImage: >-
/uploads/2025/01/transportation-and-logistics-trucking-2023-11-27-04-54-40-utc-scaled.webp /uploads/2025/01/transportation-and-logistics-trucking-2023-11-27-04-54-40-utc-scaled.webp
locale: de locale: de

View File

@@ -1,15 +1,6 @@
--- ---
title: 'Die perfekte Kabelanfrage: So sparen Sie sich unnötige Rückfragen' title: 'Die perfekte Kabelanfrage: So sparen Sie sich unnötige Rückfragen'
date: '2025-02-17T08:15:37' date: '2025-02-17T08:15:37'
excerpt: >-
[vc_column column_padding=&#8221;no-extra-padding&#8221;
column_padding_tablet=&#8221;inherit&#8221;
column_padding_phone=&#8221;inherit&#8221;
column_padding_position=&#8221;all&#8221;
column_element_direction_desktop=&#8221;default&#8221;
column_element_spacing=&#8221;10px&#8221;
desktop_text_alignment=&#8221;default&#8221;
tablet_text_alignment=&#8221;default&#8221;&#8230;
featuredImage: /uploads/2025/02/1.webp featuredImage: /uploads/2025/02/1.webp
locale: de locale: de
--- ---

View File

@@ -1,15 +1,6 @@
--- ---
title: 'Erkenntnisse über die grüne Energiewende: Herausforderungen und Chancen' title: 'Erkenntnisse über die grüne Energiewende: Herausforderungen und Chancen'
date: '2025-01-15T12:05:25' date: '2025-01-15T12:05:25'
excerpt: >-
[vc_column column_padding=&#8221;no-extra-padding&#8221;
column_padding_tablet=&#8221;inherit&#8221;
column_padding_phone=&#8221;inherit&#8221;
column_padding_position=&#8221;all&#8221;
column_element_direction_desktop=&#8221;default&#8221;
column_element_spacing=&#8221;10px&#8221;
desktop_text_alignment=&#8221;default&#8221;
tablet_text_alignment=&#8221;default&#8221;&#8230;
featuredImage: >- featuredImage: >-
/uploads/2024/12/green-electric-plug-concept-2023-11-27-05-30-00-utc-scaled.webp /uploads/2024/12/green-electric-plug-concept-2023-11-27-05-30-00-utc-scaled.webp
locale: de locale: de
@@ -80,7 +71,7 @@ Energiespeichersysteme wie Batterien oder Pumpspeicherwerke ermöglichen eine ef
</div> </div>
</div> </div>
</div> </div>
<div class="vlp-link-container vlp-layout-basic"><a href="https://ratedpower.com/blog/utility-scale-pv-losses/" class="vlp-link" title="Ultimate guide to utility-scale PV system losses — RatedPower" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="https://assets.ratedpower.com/1694509274-aerial-view-solar-panels-top-building-eco-building-factory-solar-photovoltaic-cell.jpg?auto=format&amp;fit=crop&amp;h=630&amp;w=1200" style="max-width: 150px; max-height: 150px" /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Ultimate guide to utility-scale PV system losses — RatedPower</div><div class="vlp-block-1 vlp-link-summary">What are solar PV system losses and how can you avoid them to maximize the electrical output from your utility-scale plant project?</div></div></div> <div class="vlp-link-container vlp-layout-basic"><a href="https://ratedpower.com/blog/utility-scale-pv-losses/" class="vlp-link" title="Ultimate guide to utility-scale PV system losses — RatedPower" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="https://assets.ratedpower.com/1694509274-aerial-view-solar-panels-top-building-eco-building-factory-solar-photovoltaic-cell.jpg?auto=format&amp;fit=crop&amp;h=630&amp;w=1200" style={{"maxWidth":"150px","maxHeight":"150px"}} /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Ultimate guide to utility-scale PV system losses — RatedPower</div><div class="vlp-block-1 vlp-link-summary">What are solar PV system losses and how can you avoid them to maximize the electrical output from your utility-scale plant project?</div></div></div>
<h4>Fakt 2: Windparks ohne Energiespeicherung sind nicht besonders effizient</h4> <h4>Fakt 2: Windparks ohne Energiespeicherung sind nicht besonders effizient</h4>
<p>Windparks haben ein ähnliches Problem wie Solaranlagen: Energieverluste aufgrund schwankender Stromerzeugung. Stellen Sie sich vor, ein Windpark erzeugt Strom, aber der Wind weht nicht konstant. Das bedeutet, dass zu bestimmten Zeiten die Windturbinen mehr Strom erzeugen, als tatsächlich benötigt wird, während sie zu anderen Zeiten, wenn der Wind nachlässt, fast keinen Strom liefern können. In beiden Fällen geht viel Energie verloren oder wird nicht genutzt. Ohne eine Möglichkeit, <strong>überschüssige Energie </strong>zu<strong> speichern</strong>, gibt es eine Lücke zwischen der erzeugten Energie und dem tatsächlichen Bedarf, was die Effizienz des gesamten Systems erheblich verringert. <p>Windparks haben ein ähnliches Problem wie Solaranlagen: Energieverluste aufgrund schwankender Stromerzeugung. Stellen Sie sich vor, ein Windpark erzeugt Strom, aber der Wind weht nicht konstant. Das bedeutet, dass zu bestimmten Zeiten die Windturbinen mehr Strom erzeugen, als tatsächlich benötigt wird, während sie zu anderen Zeiten, wenn der Wind nachlässt, fast keinen Strom liefern können. In beiden Fällen geht viel Energie verloren oder wird nicht genutzt. Ohne eine Möglichkeit, <strong>überschüssige Energie </strong>zu<strong> speichern</strong>, gibt es eine Lücke zwischen der erzeugten Energie und dem tatsächlichen Bedarf, was die Effizienz des gesamten Systems erheblich verringert.
@@ -94,7 +85,7 @@ Energiespeichersysteme wie Batterien oder Pumpspeicherwerke ermöglichen eine ef
</div> </div>
</div> </div>
</div> </div>
<div class="vlp-link-container vlp-layout-basic"><a href="https://www.solarenergie.de/stromspeicher/arten/stromspeicher-windkraft" class="vlp-link" title="Speicher für Windenergie: Welche Möglichkeiten gibt es?" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="https://assets.solarwatt.de/Resources/Persistent/e084aa09af5f0cdef386088bc558a52d81509cc0/Regenerative%20Energie-1200x628.jpg" style="max-width: 150px; max-height: 150px" /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Speicher für Windenergie: Welche Möglichkeiten gibt es?</div><div class="vlp-block-1 vlp-link-summary">Speicher für Windenergie: Welche Möglichkeiten gibt es? Windkraftanlagen mit Speicher im privaten und im öffentlichen Bereich ✓ Wie kann man Windenergie speichern? Lernen Sie hier bereits existente und sich derzeit in der Forschung befindende Verfahren der Zukunft kennen!</div></div></div> <div class="vlp-link-container vlp-layout-basic"><a href="https://www.solarenergie.de/stromspeicher/arten/stromspeicher-windkraft" class="vlp-link" title="Speicher für Windenergie: Welche Möglichkeiten gibt es?" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="https://assets.solarwatt.de/Resources/Persistent/e084aa09af5f0cdef386088bc558a52d81509cc0/Regenerative%20Energie-1200x628.jpg" style={{"maxWidth":"150px","maxHeight":"150px"}} /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Speicher für Windenergie: Welche Möglichkeiten gibt es?</div><div class="vlp-block-1 vlp-link-summary">Speicher für Windenergie: Welche Möglichkeiten gibt es? Windkraftanlagen mit Speicher im privaten und im öffentlichen Bereich ✓ Wie kann man Windenergie speichern? Lernen Sie hier bereits existente und sich derzeit in der Forschung befindende Verfahren der Zukunft kennen!</div></div></div>
<div class="flex max-w-full flex-col flex-grow"> <div class="flex max-w-full flex-col flex-grow">
<div class="min-h-8 text-message flex w-full flex-col items-end gap-2 whitespace-normal break-words text-start [.text-message+&amp;]:mt-5" dir="auto" data-message-author-role="assistant" data-message-id="ce8cfe97-af13-43b6-bdc0-886fb51711e3" data-message-model-slug="gpt-4o-mini"> <div class="min-h-8 text-message flex w-full flex-col items-end gap-2 whitespace-normal break-words text-start [.text-message+&amp;]:mt-5" dir="auto" data-message-author-role="assistant" data-message-id="ce8cfe97-af13-43b6-bdc0-886fb51711e3" data-message-model-slug="gpt-4o-mini">

View File

@@ -1,15 +1,6 @@
--- ---
title: Grüne Energie beginnt unter der Erde und zwar mit Plan title: Grüne Energie beginnt unter der Erde und zwar mit Plan
date: '2025-05-22T09:14:46' date: '2025-05-22T09:14:46'
excerpt: >-
[vc_column column_padding=&#8221;no-extra-padding&#8221;
column_padding_tablet=&#8221;inherit&#8221;
column_padding_phone=&#8221;inherit&#8221;
column_padding_position=&#8221;all&#8221;
column_element_direction_desktop=&#8221;default&#8221;
column_element_spacing=&#8221;10px&#8221;
desktop_text_alignment=&#8221;default&#8221;
tablet_text_alignment=&#8221;default&#8221;&#8230;
featuredImage: /uploads/2025/02/image_fx_-9.webp featuredImage: /uploads/2025/02/image_fx_-9.webp
locale: de locale: de
--- ---
@@ -78,7 +69,7 @@ locale: de
</div> </div>
<p class="" data-start="2502" data-end="2671">Professionelle Planung schafft nicht nur Versorgungssicherheit, sondern senkt langfristig die Betriebskosten und ermöglicht eine flexible Reaktion auf Netzanforderungen.</p> <p class="" data-start="2502" data-end="2671">Professionelle Planung schafft nicht nur Versorgungssicherheit, sondern senkt langfristig die Betriebskosten und ermöglicht eine flexible Reaktion auf Netzanforderungen.</p>
<p data-start="2502" data-end="2671">Hier finden Sie weitere Informationen, wie Windenergie grundlegend funktioniert:</p> <p data-start="2502" data-end="2671">Hier finden Sie weitere Informationen, wie Windenergie grundlegend funktioniert:</p>
<div class="vlp-link-container vlp-layout-basic"><a href="https://www.e-werk-mittelbaden.de/wie-funktioniert-windenergie" class="vlp-link" title="Wie funktioniert Windenergie? - Einfach erklärt | E-Werk Mittelbaden" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="https://www.e-werk-mittelbaden.de/sites/default/files/media_image/2024-12/DJI_20231105012629_0029_D-HDR.jpg" style="max-width: 150px; max-height: 150px" /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Wie funktioniert Windenergie? - Einfach erklärt | E-Werk Mittelbaden</div><div class="vlp-block-1 vlp-link-summary">Erfahren Sie, wie Windenergie funktioniert und wie sie zur nachhaltigen Energieversorgung beiträgt. Jetzt informieren!</div></div></div> <div class="vlp-link-container vlp-layout-basic"><a href="https://www.e-werk-mittelbaden.de/wie-funktioniert-windenergie" class="vlp-link" title="Wie funktioniert Windenergie? - Einfach erklärt | E-Werk Mittelbaden" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="https://www.e-werk-mittelbaden.de/sites/default/files/media_image/2024-12/DJI_20231105012629_0029_D-HDR.jpg" style={{"maxWidth":"150px","maxHeight":"150px"}} /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Wie funktioniert Windenergie? - Einfach erklärt | E-Werk Mittelbaden</div><div class="vlp-block-1 vlp-link-summary">Erfahren Sie, wie Windenergie funktioniert und wie sie zur nachhaltigen Energieversorgung beiträgt. Jetzt informieren!</div></div></div>
</div> </div>
</div> </div>
</div> </div>
@@ -125,7 +116,7 @@ locale: de
<p class="" data-start="1111" data-end="1404">Dabei geht es nicht nur um <strong data-start="1138" data-end="1161">ökologische Aspekte</strong> auch <strong data-start="1169" data-end="1183">ökonomisch</strong> macht ein geplanter Rückbau Sinn. Projekte, die <strong data-start="1232" data-end="1261">systematisch rückbaufähig</strong> ausgelegt sind, vermeiden hohe <strong data-start="1293" data-end="1314">Entsorgungskosten</strong> und erfüllen zukünftige <strong data-start="1339" data-end="1371">regulatorische Anforderungen</strong> mit deutlich geringerem Aufwand.</p> <p class="" data-start="1111" data-end="1404">Dabei geht es nicht nur um <strong data-start="1138" data-end="1161">ökologische Aspekte</strong> auch <strong data-start="1169" data-end="1183">ökonomisch</strong> macht ein geplanter Rückbau Sinn. Projekte, die <strong data-start="1232" data-end="1261">systematisch rückbaufähig</strong> ausgelegt sind, vermeiden hohe <strong data-start="1293" data-end="1314">Entsorgungskosten</strong> und erfüllen zukünftige <strong data-start="1339" data-end="1371">regulatorische Anforderungen</strong> mit deutlich geringerem Aufwand.</p>
<p class="" data-start="1406" data-end="1639">Insgesamt zeigt sich: <strong data-start="1428" data-end="1478">Nachhaltigkeit endet nicht beim Netzanschluss.</strong> Sie umfasst den <strong data-start="1495" data-end="1520">gesamten Lebenszyklus</strong> bis hin zur <strong data-start="1535" data-end="1565">letzten recycelten Leitung</strong>. Wer <strong data-start="1571" data-end="1601">Infrastruktur ganzheitlich</strong> denkt, denkt sie <strong data-start="1619" data-end="1638">bis zum Schluss</strong>.</p> <p class="" data-start="1406" data-end="1639">Insgesamt zeigt sich: <strong data-start="1428" data-end="1478">Nachhaltigkeit endet nicht beim Netzanschluss.</strong> Sie umfasst den <strong data-start="1495" data-end="1520">gesamten Lebenszyklus</strong> bis hin zur <strong data-start="1535" data-end="1565">letzten recycelten Leitung</strong>. Wer <strong data-start="1571" data-end="1601">Infrastruktur ganzheitlich</strong> denkt, denkt sie <strong data-start="1619" data-end="1638">bis zum Schluss</strong>.</p>
<p data-start="1406" data-end="1639">Im nachfolgenden Artikel erfahren Sie, wie beispielsweise Windkrafträder entsprechend recycelt werden:</p> <p data-start="1406" data-end="1639">Im nachfolgenden Artikel erfahren Sie, wie beispielsweise Windkrafträder entsprechend recycelt werden:</p>
<div class="vlp-link-container vlp-layout-basic"><a href="https://www.enbw.com/unternehmen/themen/windkraft/windrad-recycling.html" class="vlp-link" title="Recycling von Windrädern | EnBW" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="https://www.enbw.com/media/image-proxy/1600x914,q70,focus60x67,zoom1.45/https://www.enbw.com/media/presse/images/newsroom/windenergie/rueckbau-windpark-hemme-3_1743678993586.jpg" style="max-width: 150px; max-height: 150px" /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Recycling von Windrädern | EnBW</div><div class="vlp-block-1 vlp-link-summary">Wie funktioniert das Recycling von Windrädern? Erfahren Sie mehr über Herausforderungen und die neuesten Methoden.</div></div></div> <div class="vlp-link-container vlp-layout-basic"><a href="https://www.enbw.com/unternehmen/themen/windkraft/windrad-recycling.html" class="vlp-link" title="Recycling von Windrädern | EnBW" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="https://www.enbw.com/media/image-proxy/1600x914,q70,focus60x67,zoom1.45/https://www.enbw.com/media/presse/images/newsroom/windenergie/rueckbau-windpark-hemme-3_1743678993586.jpg" style={{"maxWidth":"150px","maxHeight":"150px"}} /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Recycling von Windrädern | EnBW</div><div class="vlp-block-1 vlp-link-summary">Wie funktioniert das Recycling von Windrädern? Erfahren Sie mehr über Herausforderungen und die neuesten Methoden.</div></div></div>
<div class="flex-shrink-0 flex flex-col relative items-end"> <div class="flex-shrink-0 flex flex-col relative items-end">
<div class="pt-0"> <div class="pt-0">

View File

@@ -1,15 +1,6 @@
--- ---
title: Kabelabkürzungen entschlüsselt der Schlüssel zur richtigen Kabelwahl title: Kabelabkürzungen entschlüsselt der Schlüssel zur richtigen Kabelwahl
date: '2025-03-17T10:00:23' date: '2025-03-17T10:00:23'
excerpt: >-
[vc_column column_padding=&#8221;no-extra-padding&#8221;
column_padding_tablet=&#8221;inherit&#8221;
column_padding_phone=&#8221;inherit&#8221;
column_padding_position=&#8221;all&#8221;
column_element_direction_desktop=&#8221;default&#8221;
column_element_spacing=&#8221;10px&#8221;
desktop_text_alignment=&#8221;default&#8221;
tablet_text_alignment=&#8221;default&#8221;&#8230;
featuredImage: >- featuredImage: >-
/uploads/2024/12/Medium-Voltage-Cables--KLZ-Cables-12-30-2024_05_20_PM-scaled.webp /uploads/2024/12/Medium-Voltage-Cables--KLZ-Cables-12-30-2024_05_20_PM-scaled.webp
locale: de locale: de

View File

@@ -1,14 +1,6 @@
--- ---
title: 'Kabeltrommelqualität: Die Grundlage der Kabelzuverlässigkeit' title: 'Kabeltrommelqualität: Die Grundlage der Kabelzuverlässigkeit'
date: '2025-01-15T13:41:56' date: '2025-01-15T13:41:56'
excerpt: >-
[vc_column column_padding=&#8221;no-extra-padding&#8221;
column_padding_tablet=&#8221;inherit&#8221;
column_padding_phone=&#8221;inherit&#8221;
column_padding_position=&#8221;all&#8221;
column_element_direction_desktop=&#8221;default&#8221;
column_element_spacing=&#8221;10px&#8221;
desktop_text_alignment=&#8221;default&#8221;&#8230;
featuredImage: /uploads/2024/11/1234adws21312-scaled.jpg featuredImage: /uploads/2024/11/1234adws21312-scaled.jpg
locale: de locale: de
--- ---

View File

@@ -1,14 +1,6 @@
--- ---
title: 'Klimaneutral bis 2050? Was wir tun müssen, um das Ziel zu erreichen' title: 'Klimaneutral bis 2050? Was wir tun müssen, um das Ziel zu erreichen'
date: '2025-01-20T12:30:14' date: '2025-01-20T12:30:14'
excerpt: >-
[vc_column column_padding=&#8221;no-extra-padding&#8221;
column_padding_tablet=&#8221;inherit&#8221;
column_padding_phone=&#8221;inherit&#8221;
column_padding_position=&#8221;all&#8221;
column_element_direction_desktop=&#8221;default&#8221;
column_element_spacing=&#8221;10px&#8221;
desktop_text_alignment=&#8221;default&#8221;&#8230;
featuredImage: >- featuredImage: >-
/uploads/2025/01/business-planning-hand-using-laptop-for-working-te-2024-11-01-21-25-44-utc-scaled.webp /uploads/2025/01/business-planning-hand-using-laptop-for-working-te-2024-11-01-21-25-44-utc-scaled.webp
locale: de locale: de

View File

@@ -1,20 +1,12 @@
--- ---
title: KLZ im Adressbuch der Windenergie 2025 title: KLZ im Adressbuch der Windenergie 2025
date: '2025-01-15T13:30:43' date: '2025-01-15T13:30:43'
excerpt: >-
[vc_column column_padding=&#8221;no-extra-padding&#8221;
column_padding_tablet=&#8221;inherit&#8221;
column_padding_phone=&#8221;inherit&#8221;
column_padding_position=&#8221;all&#8221;
column_element_direction_desktop=&#8221;default&#8221;
column_element_spacing=&#8221;10px&#8221;
desktop_text_alignment=&#8221;default&#8221;&#8230;
featuredImage: /uploads/2025/01/klz-directory-2-scaled.webp featuredImage: /uploads/2025/01/klz-directory-2-scaled.webp
locale: de locale: de
--- ---
# KLZ im Adressbuch der Windenergie 2025 # KLZ im Adressbuch der Windenergie 2025
<h3><span style="font-size: 16px;">Was ist das Adressbuch der Windenergie?</span></h3> <h3><span style={{"fontSize":"16px"}}>Was ist das Adressbuch der Windenergie?</span></h3>
<div class="group/conversation-turn relative flex w-full min-w-0 flex-col agent-turn"> <div class="group/conversation-turn relative flex w-full min-w-0 flex-col agent-turn">
<div class="flex-col gap-1 md:gap-3"> <div class="flex-col gap-1 md:gap-3">
<div class="flex max-w-full flex-col flex-grow"> <div class="flex max-w-full flex-col flex-grow">

View File

@@ -1,15 +1,6 @@
--- ---
title: KLZ wächst weiter neue Stärke im Bereich Financial &amp; Sales title: KLZ wächst weiter neue Stärke im Bereich Financial &amp; Sales
date: '2025-10-06T13:26:31' date: '2025-10-06T13:26:31'
excerpt: >-
[vc_column column_padding=&#8221;no-extra-padding&#8221;
column_padding_tablet=&#8221;inherit&#8221;
column_padding_phone=&#8221;inherit&#8221;
column_padding_position=&#8221;all&#8221;
column_element_direction_desktop=&#8221;default&#8221;
column_element_spacing=&#8221;10px&#8221;
desktop_text_alignment=&#8221;default&#8221;
tablet_text_alignment=&#8221;default&#8221;&#8230;
featuredImage: /uploads/2025/10/1759325528650.webp featuredImage: /uploads/2025/10/1759325528650.webp
locale: de locale: de
--- ---

View File

@@ -3,15 +3,6 @@ title: >-
Kupfer oder Aluminiumkabel im Windpark? Kostenvergleich für Erdkabel und Kupfer oder Aluminiumkabel im Windpark? Kostenvergleich für Erdkabel und
Netzanschluss Netzanschluss
date: '2025-02-24T08:30:24' date: '2025-02-24T08:30:24'
excerpt: >-
[vc_column column_padding=&#8221;no-extra-padding&#8221;
column_padding_tablet=&#8221;inherit&#8221;
column_padding_phone=&#8221;inherit&#8221;
column_padding_position=&#8221;all&#8221;
column_element_direction_desktop=&#8221;default&#8221;
column_element_spacing=&#8221;10px&#8221;
desktop_text_alignment=&#8221;default&#8221;
tablet_text_alignment=&#8221;default&#8221;&#8230;
featuredImage: /uploads/2024/11/medium-voltage-category.webp featuredImage: /uploads/2024/11/medium-voltage-category.webp
locale: de locale: de
--- ---
@@ -20,7 +11,7 @@ locale: de
<div class="flex max-w-full flex-col flex-grow"> <div class="flex max-w-full flex-col flex-grow">
<div class="min-h-8 text-message flex w-full flex-col items-end gap-2 whitespace-normal break-words text-start [.text-message+&amp;]:mt-5" dir="auto" data-message-author-role="assistant" data-message-id="ce8cfe97-af13-43b6-bdc0-886fb51711e3" data-message-model-slug="gpt-4o-mini"> <div class="min-h-8 text-message flex w-full flex-col items-end gap-2 whitespace-normal break-words text-start [.text-message+&amp;]:mt-5" dir="auto" data-message-author-role="assistant" data-message-id="ce8cfe97-af13-43b6-bdc0-886fb51711e3" data-message-model-slug="gpt-4o-mini">
<div class="flex w-full flex-col gap-1 empty:hidden first:pt-[3px]"> <div class="flex w-full flex-col gap-1 empty:hidden first:pt-[3px]">
<div class="markdown prose w-full break-words dark:prose-invert dark" style="text-align: left;"> <div class="markdown prose w-full break-words dark:prose-invert dark" style={{"textAlign":"left"}}>
<p>Gerade bei Kabeln wie <strong data-start="562" data-end="576">NA2XS(F)2Y</strong> oder <strong data-start="582" data-end="616">NAYY </strong>für<strong data-start="582" data-end="616"> Windkraftanlagen</strong> entscheidet die Materialwahl über Kosten, Leistung und Lebensdauer. Kupfer überzeugt durch eine hohe elektrische Leitfähigkeit, während Aluminium mit niedrigen Kosten und geringem Gewicht punktet. Doch welches Material ist <strong data-start="385" data-end="417">technisch </strong>und<strong data-start="385" data-end="417"> wirtschaftlich</strong> langfristig die bessere Wahl? Dieser Artikel liefert eine detaillierte Analyse der Vor- und Nachteile beider Optionen.</p> <p>Gerade bei Kabeln wie <strong data-start="562" data-end="576">NA2XS(F)2Y</strong> oder <strong data-start="582" data-end="616">NAYY </strong>für<strong data-start="582" data-end="616"> Windkraftanlagen</strong> entscheidet die Materialwahl über Kosten, Leistung und Lebensdauer. Kupfer überzeugt durch eine hohe elektrische Leitfähigkeit, während Aluminium mit niedrigen Kosten und geringem Gewicht punktet. Doch welches Material ist <strong data-start="385" data-end="417">technisch </strong>und<strong data-start="385" data-end="417"> wirtschaftlich</strong> langfristig die bessere Wahl? Dieser Artikel liefert eine detaillierte Analyse der Vor- und Nachteile beider Optionen.</p>
</div> </div>
</div> </div>

View File

@@ -1,14 +1,6 @@
--- ---
title: 'Milliarden-Paket für Infrastruktur: Der Kabel-Boom steht bevor' title: 'Milliarden-Paket für Infrastruktur: Der Kabel-Boom steht bevor'
date: '2025-04-06T08:00:07' date: '2025-04-06T08:00:07'
excerpt: >-
[vc_column column_padding=&#8221;no-extra-padding&#8221;
column_padding_tablet=&#8221;inherit&#8221;
column_padding_phone=&#8221;inherit&#8221;
column_padding_position=&#8221;all&#8221;
column_element_direction_desktop=&#8221;default&#8221;
column_element_spacing=&#8221;10px&#8221;
desktop_text_alignment=&#8221;default&#8221;&#8230;
featuredImage: >- featuredImage: >-
/uploads/2025/03/closeup-shot-of-a-person-presenting-a-euro-rain-wi-2025-02-02-14-02-05-utc-scaled.webp /uploads/2025/03/closeup-shot-of-a-person-presenting-a-euro-rain-wi-2025-02-02-14-02-05-utc-scaled.webp
locale: de locale: de
@@ -40,7 +32,7 @@ locale: de
</li> </li>
</ol> </ol>
<p>Eine detaillierte Aufschlüsselung der Mittelverteilung und ihrer Auswirkungen finden Sie im nachfolgenden Artikel <em data-start="207" data-end="271">„Das Milliarden-Schuldenpaket: So setzt es sich zusammen“</em>.</p> <p>Eine detaillierte Aufschlüsselung der Mittelverteilung und ihrer Auswirkungen finden Sie im nachfolgenden Artikel <em data-start="207" data-end="271">„Das Milliarden-Schuldenpaket: So setzt es sich zusammen“</em>.</p>
<div class="vlp-link-container vlp-layout-basic"><a href="https://www.zdf.de/nachrichten/politik/deutschland/sondervermoegen-schuldenbremse-infrastruktur-verteidigung-bundesrat-100.html" class="vlp-link" title="Das Milliarden-Schuldenpaket: So setzt es sich zusammen" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="https://www.zdf.de/assets/bundestag-berlin-118~1280x720?cb=1741856505967" style="max-width: 150px; max-height: 150px" /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Das Milliarden-Schuldenpaket: So setzt es sich zusammen</div><div class="vlp-block-1 vlp-link-summary">Im politischen Berlin sind derzeit astronomische Beträge rund um das geplante Schuldenpaket zu hören. Doch für was? Und mit welchem Ziel?</div></div></div> <div class="vlp-link-container vlp-layout-basic"><a href="https://www.zdf.de/nachrichten/politik/deutschland/sondervermoegen-schuldenbremse-infrastruktur-verteidigung-bundesrat-100.html" class="vlp-link" title="Das Milliarden-Schuldenpaket: So setzt es sich zusammen" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="https://www.zdf.de/assets/bundestag-berlin-118~1280x720?cb=1741856505967" style={{"maxWidth":"150px","maxHeight":"150px"}} /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Das Milliarden-Schuldenpaket: So setzt es sich zusammen</div><div class="vlp-block-1 vlp-link-summary">Im politischen Berlin sind derzeit astronomische Beträge rund um das geplante Schuldenpaket zu hören. Doch für was? Und mit welchem Ziel?</div></div></div>
<h3>Warum Kabelhersteller jetzt durchstarten sollten</h3> <h3>Warum Kabelhersteller jetzt durchstarten sollten</h3>
<p>Es wird viel über Subventionen, Fördergelder und deren Verwendung gesprochen. Doch die eigentliche Herausforderung bleibt: Die notwendige Infrastruktur muss geschaffen werden und das gelingt nur mit leistungsfähigen Kabeln.</p> <p>Es wird viel über Subventionen, Fördergelder und deren Verwendung gesprochen. Doch die eigentliche Herausforderung bleibt: Die notwendige Infrastruktur muss geschaffen werden und das gelingt nur mit leistungsfähigen Kabeln.</p>
@@ -74,7 +66,7 @@ locale: de
<p data-start="5448" data-end="5689">Statt zu diskutieren, ob es die beste Lösung ist, konzentrieren wir uns darauf, dass <strong data-start="5533" data-end="5596">die beste Kabeltechnik bereitsteht, wenn sie gebraucht wird</strong>. Die Energiewende wird kommen und wir sorgen dafür, dass sie auch wirklich funktioniert.</p> <p data-start="5448" data-end="5689">Statt zu diskutieren, ob es die beste Lösung ist, konzentrieren wir uns darauf, dass <strong data-start="5533" data-end="5596">die beste Kabeltechnik bereitsteht, wenn sie gebraucht wird</strong>. Die Energiewende wird kommen und wir sorgen dafür, dass sie auch wirklich funktioniert.</p>
<p data-start="5691" data-end="5911">Und während andere noch darüber diskutieren, was sinnvoll ist und was nicht, haben wir längst den Fokus darauf gelegt, unser Produktportfolio so zu optimieren, dass sie den wachsenden Anforderungen des Marktes gerecht werden.</p> <p data-start="5691" data-end="5911">Und während andere noch darüber diskutieren, was sinnvoll ist und was nicht, haben wir längst den Fokus darauf gelegt, unser Produktportfolio so zu optimieren, dass sie den wachsenden Anforderungen des Marktes gerecht werden.</p>
<p data-start="5691" data-end="5911">Mehr Infos zum Thema Netzausbau für eine grüne Zukunft finden Sie hier:</p> <p data-start="5691" data-end="5911">Mehr Infos zum Thema Netzausbau für eine grüne Zukunft finden Sie hier:</p>
<div class="vlp-link-container vlp-layout-basic"><a href="/de/netzausbau-2025-warum-jede-neue-leitung-ein-schritt-zur-energiewende-ist/" class="vlp-link" title="Netzausbau: Schlüssel zur erfolgreichen Energiewende" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="/uploads/2025/01/power-grid-station-electrical-distribution-statio-2023-11-27-05-25-36-utc-scaled.webp" style="max-width: 150px; max-height: 150px" /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Netzausbau: Schlüssel zur erfolgreichen Energiewende</div><div class="vlp-block-1 vlp-link-summary">Erfahre, wie neue Stromleitungen den Weg zur klimaneutralen Zukunft ebnen. Herausforderungen und Lösungen für eine nachhaltige Energieversorgung.</div></div></div> <div class="vlp-link-container vlp-layout-basic"><a href="/de/netzausbau-2025-warum-jede-neue-leitung-ein-schritt-zur-energiewende-ist/" class="vlp-link" title="Netzausbau: Schlüssel zur erfolgreichen Energiewende" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="/uploads/2025/01/power-grid-station-electrical-distribution-statio-2023-11-27-05-25-36-utc-scaled.webp" style={{"maxWidth":"150px","maxHeight":"150px"}} /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Netzausbau: Schlüssel zur erfolgreichen Energiewende</div><div class="vlp-block-1 vlp-link-summary">Erfahre, wie neue Stromleitungen den Weg zur klimaneutralen Zukunft ebnen. Herausforderungen und Lösungen für eine nachhaltige Energieversorgung.</div></div></div>
<h3 data-start="5918" data-end="5969"><strong data-start="5922" data-end="5967">KLZ ist bereit seid ihr es auch?</strong></h3> <h3 data-start="5918" data-end="5969"><strong data-start="5922" data-end="5967">KLZ ist bereit seid ihr es auch?</strong></h3>
<p data-start="5970" data-end="6159">Das Milliarden-Paket ist mehr als nur eine Finanzspritze für den Ausbau der Infrastruktur. Es ist ein klares Zeichen, dass Deutschland den Weg in eine grüne Zukunft gehen will und muss.</p> <p data-start="5970" data-end="6159">Das Milliarden-Paket ist mehr als nur eine Finanzspritze für den Ausbau der Infrastruktur. Es ist ein klares Zeichen, dass Deutschland den Weg in eine grüne Zukunft gehen will und muss.</p>

View File

@@ -1,15 +1,6 @@
--- ---
title: Warum das NA2XS(F)2Y das ideale Kabel für Ihr Energieprojekt ist title: Warum das NA2XS(F)2Y das ideale Kabel für Ihr Energieprojekt ist
date: '2025-09-29T12:33:25' date: '2025-09-29T12:33:25'
excerpt: >-
[vc_column column_padding=&#8221;no-extra-padding&#8221;
column_padding_tablet=&#8221;inherit&#8221;
column_padding_phone=&#8221;inherit&#8221;
column_padding_position=&#8221;all&#8221;
column_element_direction_desktop=&#8221;default&#8221;
column_element_spacing=&#8221;10px&#8221;
desktop_text_alignment=&#8221;default&#8221;
tablet_text_alignment=&#8221;default&#8221;&#8230;
featuredImage: /uploads/2025/04/image_fx_-2025-02-22T132138.470.webp featuredImage: /uploads/2025/04/image_fx_-2025-02-22T132138.470.webp
locale: de locale: de
--- ---
@@ -80,7 +71,7 @@ locale: de
</div> </div>
<p data-start="2817" data-end="2996">Das bedeutet: Mit dem <a href="/de/produkte/stromkabel/mittelspannungskabel/na2xsf2y-2/">NA2XS(F)2Y</a> lassen sich Netze realisieren, die nicht nur auf dem Papier funktionieren, sondern auch im praktischen Betrieb dauerhaft, wartungsarm und sicher.</p> <p data-start="2817" data-end="2996">Das bedeutet: Mit dem <a href="/de/produkte/stromkabel/mittelspannungskabel/na2xsf2y-2/">NA2XS(F)2Y</a> lassen sich Netze realisieren, die nicht nur auf dem Papier funktionieren, sondern auch im praktischen Betrieb dauerhaft, wartungsarm und sicher.</p>
<p data-start="2817" data-end="2996">Warum der Netzausbau wichtig ist, erfahren Sie hier:</p> <p data-start="2817" data-end="2996">Warum der Netzausbau wichtig ist, erfahren Sie hier:</p>
<div class="vlp-link-container vlp-layout-basic"><a href="https://www.netze-bw.de/unsernetz/netzausbau" class="vlp-link" title="Netzausbau - Netze BW GmbH" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="https://www.netze-bw.de/logo-seo.png" style="max-width: 150px; max-height: 150px" /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Netzausbau - Netze BW GmbH</div><div class="vlp-block-1 vlp-link-summary">Die Netze BW ist daran interessiert und dazu verpflichtet, ihr Netz im Sinne einer effizienten und sicheren Stromversorgung stetig zu optimieren.</div></div></div> <div class="vlp-link-container vlp-layout-basic"><a href="https://www.netze-bw.de/unsernetz/netzausbau" class="vlp-link" title="Netzausbau - Netze BW GmbH" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="https://www.netze-bw.de/logo-seo.png" style={{"maxWidth":"150px","maxHeight":"150px"}} /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Netzausbau - Netze BW GmbH</div><div class="vlp-block-1 vlp-link-summary">Die Netze BW ist daran interessiert und dazu verpflichtet, ihr Netz im Sinne einer effizienten und sicheren Stromversorgung stetig zu optimieren.</div></div></div>
<h3 data-start="212" data-end="261">Technik, auf die Sie sich verlassen können</h3> <h3 data-start="212" data-end="261">Technik, auf die Sie sich verlassen können</h3>
<p data-start="263" data-end="515">Wenn Mittelspannung zur tragenden Infrastruktur wird, braucht es Kabel, auf deren technische Eigenschaften absolut Verlass ist nicht nur unter Idealbedingungen, sondern gerade dann, wenn Umgebungsbedingungen, Belastung und Systemkomplexität zunehmen.</p> <p data-start="263" data-end="515">Wenn Mittelspannung zur tragenden Infrastruktur wird, braucht es Kabel, auf deren technische Eigenschaften absolut Verlass ist nicht nur unter Idealbedingungen, sondern gerade dann, wenn Umgebungsbedingungen, Belastung und Systemkomplexität zunehmen.</p>
@@ -173,7 +164,7 @@ locale: de
</ul> </ul>
</div> </div>
<p>Schon überzeugt? Dann bestellen Sie Ihr Mittelspannungskabel direkt bei uns:</p> <p>Schon überzeugt? Dann bestellen Sie Ihr Mittelspannungskabel direkt bei uns:</p>
<div class="vlp-link-container vlp-layout-basic"><a href="/de/kontakt/" class="vlp-link" title="Kontakt Lassen Sie uns Ihre Energieprojekte voranbringen" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="/uploads/2025/02/og-2.webp" style="max-width: 150px; max-height: 150px" /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Kontakt Lassen Sie uns Ihre Energieprojekte voranbringen</div><div class="vlp-block-1 vlp-link-summary">Schnell, verlässlich und unkompliziert nehmen Sie Kontakt auf für individuelle Kabel- und Energielösungen. Wir sind für Sie da.</div></div></div> <div class="vlp-link-container vlp-layout-basic"><a href="/de/kontakt/" class="vlp-link" title="Kontakt Lassen Sie uns Ihre Energieprojekte voranbringen" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="/uploads/2025/02/og-2.webp" style={{"maxWidth":"150px","maxHeight":"150px"}} /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Kontakt Lassen Sie uns Ihre Energieprojekte voranbringen</div><div class="vlp-block-1 vlp-link-summary">Schnell, verlässlich und unkompliziert nehmen Sie Kontakt auf für individuelle Kabel- und Energielösungen. Wir sind für Sie da.</div></div></div>
</div> </div>
</div> </div>
</div> </div>
@@ -252,7 +243,7 @@ locale: de
<p data-start="1890" data-end="2062">Wer bei KLZ ein <strong data-start="1906" data-end="1936">Mittelspannungskabel kauft</strong>, bekommt also nicht nur ein Produkt sondern eine Lösung, die <strong data-start="2000" data-end="2057">technisch fundiert, normgerecht und sofort einsetzbar</strong> ist.</p> <p data-start="1890" data-end="2062">Wer bei KLZ ein <strong data-start="1906" data-end="1936">Mittelspannungskabel kauft</strong>, bekommt also nicht nur ein Produkt sondern eine Lösung, die <strong data-start="2000" data-end="2057">technisch fundiert, normgerecht und sofort einsetzbar</strong> ist.</p>
<p data-start="2064" data-end="2278">Gerade bei Energieprojekten, die unter Zeitdruck oder im laufenden Betrieb umgesetzt werden müssen, macht das NA2XS(F)2Y den entscheidenden Unterschied: <strong data-start="2216" data-end="2277">keine Diskussionen, keine Nacharbeiten, keine Kompromisse</strong>.</p> <p data-start="2064" data-end="2278">Gerade bei Energieprojekten, die unter Zeitdruck oder im laufenden Betrieb umgesetzt werden müssen, macht das NA2XS(F)2Y den entscheidenden Unterschied: <strong data-start="2216" data-end="2277">keine Diskussionen, keine Nacharbeiten, keine Kompromisse</strong>.</p>
<p data-start="2064" data-end="2278">Sie wollen mehr zum Thema Erdverlegung und Erdkabeln wissen? Dieser Artikel bietet interessante Informationen zum Kabelschutz bei Erdverlegung.</p> <p data-start="2064" data-end="2278">Sie wollen mehr zum Thema Erdverlegung und Erdkabeln wissen? Dieser Artikel bietet interessante Informationen zum Kabelschutz bei Erdverlegung.</p>
<div class="vlp-link-container vlp-layout-basic"><a href="https://www.richterbaustoffe.de/article/kabelschutz-bei-erdverlegung" class="vlp-link" title="Kabelschutz bei Erdverlegung" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="https://images.ctfassets.net/74nz86copyef/1CDlYm1yT02sRPwG1piRUo/dc25523b67f1efc4fae65cc978f900db/hagebau_Ostendorf_Kabelschutz_Headerbild.webp" style="max-width: 150px; max-height: 150px" /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Kabelschutz bei Erdverlegung</div><div class="vlp-block-1 vlp-link-summary">Beim Um- und Ausbau der Stromnetze für die Energiewende werden ein Großteil der Leitungen und Kabel unterirdisch verlegt um den äußeren Einflüssen unter der Erde standzuhalten und sie sicher zu isolieren, kommen…</div></div></div> <div class="vlp-link-container vlp-layout-basic"><a href="https://www.richterbaustoffe.de/article/kabelschutz-bei-erdverlegung" class="vlp-link" title="Kabelschutz bei Erdverlegung" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="https://images.ctfassets.net/74nz86copyef/1CDlYm1yT02sRPwG1piRUo/dc25523b67f1efc4fae65cc978f900db/hagebau_Ostendorf_Kabelschutz_Headerbild.webp" style={{"maxWidth":"150px","maxHeight":"150px"}} /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Kabelschutz bei Erdverlegung</div><div class="vlp-block-1 vlp-link-summary">Beim Um- und Ausbau der Stromnetze für die Energiewende werden ein Großteil der Leitungen und Kabel unterirdisch verlegt um den äußeren Einflüssen unter der Erde standzuhalten und sie sicher zu isolieren, kommen…</div></div></div>
<h3 data-start="212" data-end="294">Fazit:</h3> <h3 data-start="212" data-end="294">Fazit:</h3>
<p data-start="212" data-end="294">Wenn Sie ein Mittelspannungskabel brauchen, das zuverlässig funktioniert auch unter realen Betriebsbedingungen, ist das NA2XS(F)2Y die richtige Wahl.</p> <p data-start="212" data-end="294">Wenn Sie ein Mittelspannungskabel brauchen, das zuverlässig funktioniert auch unter realen Betriebsbedingungen, ist das NA2XS(F)2Y die richtige Wahl.</p>

View File

@@ -1,15 +1,6 @@
--- ---
title: Engpass bei NA2XSF2Y? Wir haben das Dreileiter-Mittelspannungskabel title: Engpass bei NA2XSF2Y? Wir haben das Dreileiter-Mittelspannungskabel
date: '2025-08-14T08:46:27' date: '2025-08-14T08:46:27'
excerpt: >-
[vc_column column_padding=&#8221;no-extra-padding&#8221;
column_padding_tablet=&#8221;inherit&#8221;
column_padding_phone=&#8221;inherit&#8221;
column_padding_position=&#8221;all&#8221;
column_element_direction_desktop=&#8221;default&#8221;
column_element_spacing=&#8221;10px&#8221;
desktop_text_alignment=&#8221;default&#8221;
tablet_text_alignment=&#8221;default&#8221;&#8230;
featuredImage: /uploads/2025/08/NA2XSF2X_3x1x300_RM-25_12-20kV-3.webp featuredImage: /uploads/2025/08/NA2XSF2X_3x1x300_RM-25_12-20kV-3.webp
locale: de locale: de
--- ---
@@ -53,7 +44,7 @@ locale: de
</ul> </ul>
<p>Deshalb ist das <strong>NA2XSF2Y 3x1x</strong> die sichere Wahl für langlebige, unterirdische Energieinfrastruktur.</p> <p>Deshalb ist das <strong>NA2XSF2Y 3x1x</strong> die sichere Wahl für langlebige, unterirdische Energieinfrastruktur.</p>
<p>Mehr Infos zur Freileitung vs. Erdverlegung finden Sie hier:</p> <p>Mehr Infos zur Freileitung vs. Erdverlegung finden Sie hier:</p>
<div class="vlp-link-container vlp-layout-basic"><a href="https://www.hochspannungsblog.at/wissenswertes/netzaufbau/vergleich-freileitung-erdkabel" class="vlp-link" title="Freileitung und Erdkabel sind „Stand der Technik“" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="https://www.hochspannungsblog.at/201210-netzbau-110kv-wegscheid-mast-kabelanschluss-1723.jpg?ch=dhsowxyq&amp;:hp=9;1;de" style="max-width: 150px; max-height: 150px" /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Freileitung und Erdkabel sind „Stand der Technik“</div><div class="vlp-block-1 vlp-link-summary">Freileitung oder Erdkabel? Wir erklären Ihnen die Unterschiede und Möglichkeiten, aber auch warum was möglich ist und warum was nicht.</div></div></div> <div class="vlp-link-container vlp-layout-basic"><a href="https://www.hochspannungsblog.at/wissenswertes/netzaufbau/vergleich-freileitung-erdkabel" class="vlp-link" title="Freileitung und Erdkabel sind „Stand der Technik“" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="https://www.hochspannungsblog.at/201210-netzbau-110kv-wegscheid-mast-kabelanschluss-1723.jpg?ch=dhsowxyq&amp;:hp=9;1;de" style={{"maxWidth":"150px","maxHeight":"150px"}} /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Freileitung und Erdkabel sind „Stand der Technik“</div><div class="vlp-block-1 vlp-link-summary">Freileitung oder Erdkabel? Wir erklären Ihnen die Unterschiede und Möglichkeiten, aber auch warum was möglich ist und warum was nicht.</div></div></div>
<h2>Typische Einsatzbereiche für das NA2XSF2Y</h2> <h2>Typische Einsatzbereiche für das NA2XSF2Y</h2>
<h3>Netzanschluss in Windkraftanlagen</h3> <h3>Netzanschluss in Windkraftanlagen</h3>
@@ -107,7 +98,7 @@ locale: de
<p>Während viele erst dann nachbestellen, wenn der Markt längst ausverkauft ist, setzen wir auf vorausschauende Lagerhaltung. Bereits frühzeitig haben wir zentrale Typen wie das beliebte Dreileiter-Mittelspannungskabel <strong><a href="/de/produkte/stromkabel/mittelspannungskabel/na2xsf2y-2/">NA2XSF2Y</a> 3x1x</strong> gezielt in relevanten Mengen bevorratet weil wir wissen, wie kritisch diese für den Netzausbau sind.</p> <p>Während viele erst dann nachbestellen, wenn der Markt längst ausverkauft ist, setzen wir auf vorausschauende Lagerhaltung. Bereits frühzeitig haben wir zentrale Typen wie das beliebte Dreileiter-Mittelspannungskabel <strong><a href="/de/produkte/stromkabel/mittelspannungskabel/na2xsf2y-2/">NA2XSF2Y</a> 3x1x</strong> gezielt in relevanten Mengen bevorratet weil wir wissen, wie kritisch diese für den Netzausbau sind.</p>
<p><strong>Und genau das macht jetzt den Unterschied: Diese Kabel haben wir als Lieferant strategisch eingeplant und sind bei uns verfügbar.</strong></p> <p><strong>Und genau das macht jetzt den Unterschied: Diese Kabel haben wir als Lieferant strategisch eingeplant und sind bei uns verfügbar.</strong></p>
<p>Alle Details und technischen Daten finden Sie hier:</p> <p>Alle Details und technischen Daten finden Sie hier:</p>
<div class="vlp-link-container vlp-layout-basic"><a href="/de/produkte/stromkabel/mittelspannungskabel/na2xsf2y-2/" class="vlp-link" title="NA2XS(F)2Y-Mittelspannungskabel | KLZ" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="/uploads/2025/01/NA2XSF2Y-3-scaled.webp" style="max-width: 150px; max-height: 150px" /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">NA2XS(F)2Y-Mittelspannungskabel | KLZ</div><div class="vlp-block-1 vlp-link-summary">NA2XS(F)2Y-Mittelspannungskabel, Spannungsklasse bis 36 kV, Kupferleiter, XLPE-Isolation, geeignet für extreme Temperaturen, konform mit IEC/VDE, ideal für erneuerbare Energien und Industrieanlagen.</div></div></div> <div class="vlp-link-container vlp-layout-basic"><a href="/de/produkte/stromkabel/mittelspannungskabel/na2xsf2y-2/" class="vlp-link" title="NA2XS(F)2Y-Mittelspannungskabel | KLZ" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="/uploads/2025/01/NA2XSF2Y-3-scaled.webp" style={{"maxWidth":"150px","maxHeight":"150px"}} /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">NA2XS(F)2Y-Mittelspannungskabel | KLZ</div><div class="vlp-block-1 vlp-link-summary">NA2XS(F)2Y-Mittelspannungskabel, Spannungsklasse bis 36 kV, Kupferleiter, XLPE-Isolation, geeignet für extreme Temperaturen, konform mit IEC/VDE, ideal für erneuerbare Energien und Industrieanlagen.</div></div></div>
<h3>Logistik, die mitdenkt</h3> <h3>Logistik, die mitdenkt</h3>
<p>Unsere Logistikprozesse sind auf Geschwindigkeit und Flexibilität ausgelegt. Durch unser Lager mit direkter Anbindung nach Deutschland und in die Niederlande können wir Baustellen in kürzester Zeit versorgen.</p> <p>Unsere Logistikprozesse sind auf Geschwindigkeit und Flexibilität ausgelegt. Durch unser Lager mit direkter Anbindung nach Deutschland und in die Niederlande können wir Baustellen in kürzester Zeit versorgen.</p>
<ul> <ul>
@@ -120,9 +111,9 @@ locale: de
<p>Wir setzen auf mehrere Lieferketten und haben bewusst Lagerkapazitäten aufgebaut. So stellen wir sicher, dass selbst bei branchenweiten Engpässen noch geliefert werden kann ohne Improvisation. Auch Typen wie das gefragte Dreileiterkabel <strong><a href="/de/produkte/stromkabel/mittelspannungskabel/na2xsf2y-2/">NA2XS(F)2Y</a> 3x1x300 RM/25 12/20kV</strong> sind bei uns verfügbar.</p> <p>Wir setzen auf mehrere Lieferketten und haben bewusst Lagerkapazitäten aufgebaut. So stellen wir sicher, dass selbst bei branchenweiten Engpässen noch geliefert werden kann ohne Improvisation. Auch Typen wie das gefragte Dreileiterkabel <strong><a href="/de/produkte/stromkabel/mittelspannungskabel/na2xsf2y-2/">NA2XS(F)2Y</a> 3x1x300 RM/25 12/20kV</strong> sind bei uns verfügbar.</p>
<p><strong>Keine Ausreden wir liefern, was andere nur anbieten.</strong></p> <p><strong>Keine Ausreden wir liefern, was andere nur anbieten.</strong></p>
<p><!-- Call to Action --></p> <p><!-- Call to Action --></p>
<div style="margin-top: 20px;padding: 15px;background-color: #f5f5f5;border-left: 5px solid #0073aa"> <div style={{"marginTop":"20px","padding":"15px","backgroundColor":"#f5f5f5","borderLeft":"5px solid #0073aa"}}>
<p><strong>Wir liefern Ihnen die Kabel, die Sie brauchen!</strong><br /> <p><strong>Wir liefern Ihnen die Kabel, die Sie brauchen!</strong><br />
<a style="color: #0073aa;text-decoration: underline" href="/contact/" target="_blank" rel="noopener">Kontaktieren Sie uns für eine konkrete Anfrage.</a></p> <a style={{"color":"#0073aa","textDecoration":"underline"}} href="/contact/" target="_blank" rel="noopener">Kontaktieren Sie uns für eine konkrete Anfrage.</a></p>
</div> </div>
<h2>FAQs rund ums NA2XSF2Y</h2> <h2>FAQs rund ums NA2XSF2Y</h2>

View File

@@ -1,15 +1,6 @@
--- ---
title: 'Netzausbau 2025: Warum jede neue Leitung ein Schritt zur Energiewende ist' title: 'Netzausbau 2025: Warum jede neue Leitung ein Schritt zur Energiewende ist'
date: '2025-02-10T13:00:38' date: '2025-02-10T13:00:38'
excerpt: >-
[vc_column column_padding=&#8221;no-extra-padding&#8221;
column_padding_tablet=&#8221;inherit&#8221;
column_padding_phone=&#8221;inherit&#8221;
column_padding_position=&#8221;all&#8221;
column_element_direction_desktop=&#8221;default&#8221;
column_element_spacing=&#8221;10px&#8221;
desktop_text_alignment=&#8221;default&#8221;
tablet_text_alignment=&#8221;default&#8221;&#8230;
featuredImage: >- featuredImage: >-
/uploads/2025/01/power-grid-station-electrical-distribution-statio-2023-11-27-05-25-36-utc-scaled.webp /uploads/2025/01/power-grid-station-electrical-distribution-statio-2023-11-27-05-25-36-utc-scaled.webp
locale: de locale: de

View File

@@ -1,15 +1,6 @@
--- ---
title: 'Recycling von Kabeltrommeln: Nachhaltigkeit im Windkraftprojekt' title: 'Recycling von Kabeltrommeln: Nachhaltigkeit im Windkraftprojekt'
date: '2025-03-03T09:30:21' date: '2025-03-03T09:30:21'
excerpt: >-
[vc_column column_padding=&#8221;no-extra-padding&#8221;
column_padding_tablet=&#8221;inherit&#8221;
column_padding_phone=&#8221;inherit&#8221;
column_padding_position=&#8221;all&#8221;
column_element_direction_desktop=&#8221;default&#8221;
column_element_spacing=&#8221;10px&#8221;
desktop_text_alignment=&#8221;default&#8221;
tablet_text_alignment=&#8221;default&#8221;&#8230;
featuredImage: /uploads/2025/02/5.webp featuredImage: /uploads/2025/02/5.webp
locale: de locale: de
--- ---

View File

@@ -1,14 +1,6 @@
--- ---
title: Reicht Windenergie wirklich nicht? Ein Blick hinter die Schlagzeilen title: Reicht Windenergie wirklich nicht? Ein Blick hinter die Schlagzeilen
date: '2025-02-03T11:30:21' date: '2025-02-03T11:30:21'
excerpt: >-
[vc_column column_padding=&#8221;no-extra-padding&#8221;
column_padding_tablet=&#8221;inherit&#8221;
column_padding_phone=&#8221;inherit&#8221;
column_padding_position=&#8221;all&#8221;
column_element_direction_desktop=&#8221;default&#8221;
column_element_spacing=&#8221;10px&#8221;
desktop_text_alignment=&#8221;default&#8221;&#8230;
featuredImage: >- featuredImage: >-
/uploads/2025/01/offshore-wind-power-and-energy-farm-with-many-wind-2023-11-27-04-51-29-utc-scaled.webp /uploads/2025/01/offshore-wind-power-and-energy-farm-with-many-wind-2023-11-27-04-51-29-utc-scaled.webp
locale: de locale: de

View File

@@ -1,14 +1,6 @@
--- ---
title: 'Sicherheit bei Kabeltrommeln: Unfallfrei und effizient arbeiten' title: 'Sicherheit bei Kabeltrommeln: Unfallfrei und effizient arbeiten'
date: '2025-01-15T11:18:33' date: '2025-01-15T11:18:33'
excerpt: >-
[vc_column column_padding=&#8221;no-extra-padding&#8221;
column_padding_tablet=&#8221;inherit&#8221;
column_padding_phone=&#8221;inherit&#8221;
column_padding_position=&#8221;all&#8221;
column_element_direction_desktop=&#8221;default&#8221;
column_element_spacing=&#8221;10px&#8221;
desktop_text_alignment=&#8221;default&#8221;&#8230;
featuredImage: >- featuredImage: >-
/uploads/2024/12/large-rolls-of-wires-against-the-blue-sky-at-sunse-2023-11-27-05-20-33-utc-Large.webp /uploads/2024/12/large-rolls-of-wires-against-the-blue-sky-at-sunse-2023-11-27-05-20-33-utc-Large.webp
locale: de locale: de

View File

@@ -1,14 +1,6 @@
--- ---
title: So wählen Sie das richtige Kabel für Ihr nächstes Projekt aus title: So wählen Sie das richtige Kabel für Ihr nächstes Projekt aus
date: '2025-01-15T13:20:06' date: '2025-01-15T13:20:06'
excerpt: >-
[vc_column column_padding=&#8221;no-extra-padding&#8221;
column_padding_tablet=&#8221;inherit&#8221;
column_padding_phone=&#8221;inherit&#8221;
column_padding_position=&#8221;all&#8221;
column_element_direction_desktop=&#8221;default&#8221;
column_element_spacing=&#8221;10px&#8221;
desktop_text_alignment=&#8221;default&#8221;&#8230;
featuredImage: /uploads/2024/11/low-voltage-category.webp featuredImage: /uploads/2024/11/low-voltage-category.webp
locale: de locale: de
--- ---

View File

@@ -1,15 +1,6 @@
--- ---
title: 'Von smart bis nachhaltig: So sieht die Energiewirtschaft in naher Zukunft aus' title: 'Von smart bis nachhaltig: So sieht die Energiewirtschaft in naher Zukunft aus'
date: '2025-03-24T11:00:21' date: '2025-03-24T11:00:21'
excerpt: >-
[vc_column column_padding=&#8221;no-extra-padding&#8221;
column_padding_tablet=&#8221;inherit&#8221;
column_padding_phone=&#8221;inherit&#8221;
column_padding_position=&#8221;all&#8221;
column_element_direction_desktop=&#8221;default&#8221;
column_element_spacing=&#8221;10px&#8221;
desktop_text_alignment=&#8221;default&#8221;
tablet_text_alignment=&#8221;default&#8221;&#8230;
featuredImage: /uploads/2025/02/image_fx_-7.webp featuredImage: /uploads/2025/02/image_fx_-7.webp
locale: de locale: de
--- ---

View File

@@ -1,15 +1,6 @@
--- ---
title: Warum die richtigen Kabel der geheime Held der grünen Energie sind title: Warum die richtigen Kabel der geheime Held der grünen Energie sind
date: '2025-01-27T11:30:48' date: '2025-01-27T11:30:48'
excerpt: >-
[vc_column column_padding=&#8221;no-extra-padding&#8221;
column_padding_tablet=&#8221;inherit&#8221;
column_padding_phone=&#8221;inherit&#8221;
column_padding_position=&#8221;all&#8221;
column_element_direction_desktop=&#8221;default&#8221;
column_element_spacing=&#8221;10px&#8221;
desktop_text_alignment=&#8221;default&#8221;
tablet_text_alignment=&#8221;default&#8221;&#8230;
featuredImage: >- featuredImage: >-
/uploads/2025/01/technicians-inspecting-wind-turbines-in-a-green-en-2024-12-09-01-25-20-utc-scaled.webp /uploads/2025/01/technicians-inspecting-wind-turbines-in-a-green-en-2024-12-09-01-25-20-utc-scaled.webp
locale: de locale: de

View File

@@ -1,14 +1,6 @@
--- ---
title: Warum Windpark-Netzanschlusskabel extremen Belastungen standhalten müssen title: Warum Windpark-Netzanschlusskabel extremen Belastungen standhalten müssen
date: '2025-03-10T09:30:51' date: '2025-03-10T09:30:51'
excerpt: >-
[vc_column column_padding=&#8221;no-extra-padding&#8221;
column_padding_tablet=&#8221;inherit&#8221;
column_padding_phone=&#8221;inherit&#8221;
column_padding_position=&#8221;all&#8221;
column_element_direction_desktop=&#8221;default&#8221;
column_element_spacing=&#8221;10px&#8221;
desktop_text_alignment=&#8221;default&#8221;&#8230;
featuredImage: /uploads/2025/02/image_fx_-9.webp featuredImage: /uploads/2025/02/image_fx_-9.webp
locale: de locale: de
--- ---

View File

@@ -1,14 +1,6 @@
--- ---
title: Was macht ein erstklassiges Kabel aus? Finden Sie es hier heraus! title: Was macht ein erstklassiges Kabel aus? Finden Sie es hier heraus!
date: '2025-01-15T11:31:46' date: '2025-01-15T11:31:46'
excerpt: >-
[vc_column column_padding=&#8221;no-extra-padding&#8221;
column_padding_tablet=&#8221;inherit&#8221;
column_padding_phone=&#8221;inherit&#8221;
column_padding_position=&#8221;all&#8221;
column_element_direction_desktop=&#8221;default&#8221;
column_element_spacing=&#8221;10px&#8221;
desktop_text_alignment=&#8221;default&#8221;&#8230;
featuredImage: >- featuredImage: >-
/uploads/2024/12/production-of-cable-wire-at-cable-factory-2023-11-27-05-18-33-utc-Large.webp /uploads/2024/12/production-of-cable-wire-at-cable-factory-2023-11-27-05-18-33-utc-Large.webp
locale: de locale: de
@@ -55,7 +47,7 @@ Die Wahl des richtigen Kabels ist eine langfristige Investition, die sich in Sic
<h4>Die Bedeutung hochwertiger Kabel für eine nachhaltige Zukunft</h4> <h4>Die Bedeutung hochwertiger Kabel für eine nachhaltige Zukunft</h4>
<p>In einer Welt, die zunehmend auf eine kohlenstoffneutrale Energieversorgung setzt, leisten erstklassige Kabel einen wichtigen Beitrag zur Erreichung dieser Ziele. Nachhaltige Kabel bestehen aus recycelbaren Materialien, die die Umweltbelastung minimieren. Sie unterstützen zudem die Integration erneuerbarer Energien in das Stromnetz, indem sie sicherstellen, dass der erzeugte Strom effizient und verlustfrei transportiert wird.</p> <p>In einer Welt, die zunehmend auf eine kohlenstoffneutrale Energieversorgung setzt, leisten erstklassige Kabel einen wichtigen Beitrag zur Erreichung dieser Ziele. Nachhaltige Kabel bestehen aus recycelbaren Materialien, die die Umweltbelastung minimieren. Sie unterstützen zudem die Integration erneuerbarer Energien in das Stromnetz, indem sie sicherstellen, dass der erzeugte Strom effizient und verlustfrei transportiert wird.</p>
<p>Die Wahl des richtigen Kabels ist daher nicht nur eine technische Entscheidung, sondern auch ein Beitrag zu einer nachhaltigeren Zukunft. Durch den Einsatz hochwertiger Kabel kann der CO2-Fußabdruck von Infrastrukturprojekten erheblich reduziert werden. Dies ist ein wichtiger Schritt hin zu einer umweltfreundlicheren und energieeffizienteren Gesellschaft.Ein erstklassiges Kabel ist daher mehr als nur ein technisches Bauteil es ist der Schlüssel zu einer stabileren, umweltfreundlicheren und effizienteren Energieversorgung.</p> <p>Die Wahl des richtigen Kabels ist daher nicht nur eine technische Entscheidung, sondern auch ein Beitrag zu einer nachhaltigeren Zukunft. Durch den Einsatz hochwertiger Kabel kann der CO2-Fußabdruck von Infrastrukturprojekten erheblich reduziert werden. Dies ist ein wichtiger Schritt hin zu einer umweltfreundlicheren und energieeffizienteren Gesellschaft.Ein erstklassiges Kabel ist daher mehr als nur ein technisches Bauteil es ist der Schlüssel zu einer stabileren, umweltfreundlicheren und effizienteren Energieversorgung.</p>
<div class="vlp-link-container vlp-layout-basic"><a href="https://www.konnworld.com/why-cable-quality-matters-the-impact-on-energy-efficiency-and-longevity" class="vlp-link" title="Why Cable Quality Matters: The Impact on Energy Efficiency and Longevity" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="https://www.konnworld.com/wp-content/uploads/2018/08/konn-b-logo.png" style="max-width: 150px; max-height: 150px" /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Why Cable Quality Matters: The Impact on Energy Efficiency and Longevity</div><div class="vlp-block-1 vlp-link-summary">In the electrical systems that we have today, theres no denying that cable quality is important in ensuring optimal performance and safety.</div></div></div> <div class="vlp-link-container vlp-layout-basic"><a href="https://www.konnworld.com/why-cable-quality-matters-the-impact-on-energy-efficiency-and-longevity" class="vlp-link" title="Why Cable Quality Matters: The Impact on Energy Efficiency and Longevity" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="https://www.konnworld.com/wp-content/uploads/2018/08/konn-b-logo.png" style={{"maxWidth":"150px","maxHeight":"150px"}} /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Why Cable Quality Matters: The Impact on Energy Efficiency and Longevity</div><div class="vlp-block-1 vlp-link-summary">In the electrical systems that we have today, theres no denying that cable quality is important in ensuring optimal performance and safety.</div></div></div>
<h4>Materialien: Was macht ein Kabel langlebig und effizient?</h4> <h4>Materialien: Was macht ein Kabel langlebig und effizient?</h4>
<p>Die Wahl des richtigen Materials ist entscheidend, um Kabel sowohl langlebig als auch effizient zu gestalten. Zwei der häufigsten und wichtigsten Materialien, die in Kabeln verwendet werden, sind Kupfer und Aluminium. Sie spielen eine zentrale Rolle in der elektrischen Leitfähigkeit und Haltbarkeit von Kabeln.</p> <p>Die Wahl des richtigen Materials ist entscheidend, um Kabel sowohl langlebig als auch effizient zu gestalten. Zwei der häufigsten und wichtigsten Materialien, die in Kabeln verwendet werden, sind Kupfer und Aluminium. Sie spielen eine zentrale Rolle in der elektrischen Leitfähigkeit und Haltbarkeit von Kabeln.</p>
@@ -70,7 +62,7 @@ Die Nachfrage nach umweltfreundlichen Materialien wächst, da immer mehr Unterne
<li><strong>Biologisch abbaubare Isolierung:</strong> Ein weiterer Trend ist die Entwicklung von biologisch abbaubaren oder umweltfreundlicheren Isoliermaterialien. Diese Materialien reduzieren nicht nur den Einsatz toxischer Substanzen, sondern tragen auch dazu bei, Abfall nach der Lebensdauer des Kabels zu minimieren.</li> <li><strong>Biologisch abbaubare Isolierung:</strong> Ein weiterer Trend ist die Entwicklung von biologisch abbaubaren oder umweltfreundlicheren Isoliermaterialien. Diese Materialien reduzieren nicht nur den Einsatz toxischer Substanzen, sondern tragen auch dazu bei, Abfall nach der Lebensdauer des Kabels zu minimieren.</li>
</ul> </ul>
<p>Zusammenfassend lässt sich sagen, dass die Wahl der richtigen Materialien für Kabel nicht nur einen Einfluss auf ihre Langlebigkeit und Effizienz hat, sondern auch entscheidend für eine nachhaltige Zukunft ist. Kupfer und Aluminium bieten hervorragende Leistung, aber der Fokus auf Recycling und die Suche nach umweltfreundlicheren Alternativen machen die Kabelindustrie zunehmend grüner und ressourcenschonender. So kann ein Kabel nicht nur heute effizient arbeiten, sondern auch in der Zukunft einen kleineren ökologischen Fußabdruck hinterlassen.</p> <p>Zusammenfassend lässt sich sagen, dass die Wahl der richtigen Materialien für Kabel nicht nur einen Einfluss auf ihre Langlebigkeit und Effizienz hat, sondern auch entscheidend für eine nachhaltige Zukunft ist. Kupfer und Aluminium bieten hervorragende Leistung, aber der Fokus auf Recycling und die Suche nach umweltfreundlicheren Alternativen machen die Kabelindustrie zunehmend grüner und ressourcenschonender. So kann ein Kabel nicht nur heute effizient arbeiten, sondern auch in der Zukunft einen kleineren ökologischen Fußabdruck hinterlassen.</p>
<div class="vlp-link-container vlp-layout-basic"><a href="https://insights.regencysupply.com/pros-and-cons-of-copper-and-aluminum-wire" class="vlp-link" title="Pros and Cons of Copper and Aluminum Wire" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="https://insights.regencysupply.com/hubfs/copper%20wire.jpg" style="max-width: 150px; max-height: 150px" /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Pros and Cons of Copper and Aluminum Wire</div><div class="vlp-block-1 vlp-link-summary">Copper wire and aluminum wire — which option is better? We weight the pros and cons.</div></div></div> <div class="vlp-link-container vlp-layout-basic"><a href="https://insights.regencysupply.com/pros-and-cons-of-copper-and-aluminum-wire" class="vlp-link" title="Pros and Cons of Copper and Aluminum Wire" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="https://insights.regencysupply.com/hubfs/copper%20wire.jpg" style={{"maxWidth":"150px","maxHeight":"150px"}} /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Pros and Cons of Copper and Aluminum Wire</div><div class="vlp-block-1 vlp-link-summary">Copper wire and aluminum wire — which option is better? We weight the pros and cons.</div></div></div>
<div class="flex-shrink-0 flex flex-col relative items-end"> <div class="flex-shrink-0 flex flex-col relative items-end">
<div> <div>
@@ -99,7 +91,7 @@ Die Isolierung eines Kabels schützt vor Kurzschlüssen und äußeren Einflüsse
<strong>Kabel für erneuerbare Energiequellen</strong></p> <strong>Kabel für erneuerbare Energiequellen</strong></p>
<p>Solar- und Windenergie erfordern spezialisierte Kabel, die extremen Wetterbedingungen und hohen Belastungen standhalten können. Solarkabel müssen UV-beständig und für Gleichstromsysteme geeignet sein, während Windkraftkabel flexibel und korrosionsbeständig sein müssen, um der ständigen Bewegung der Rotorblätter standzuhalten. Diese fortschrittlichen Kabel ermöglichen den effizienten und sicheren Transport von Energie, was für die Nachhaltigkeit und wirtschaftliche Rentabilität erneuerbarer Energien von entscheidender Bedeutung ist.</p> <p>Solar- und Windenergie erfordern spezialisierte Kabel, die extremen Wetterbedingungen und hohen Belastungen standhalten können. Solarkabel müssen UV-beständig und für Gleichstromsysteme geeignet sein, während Windkraftkabel flexibel und korrosionsbeständig sein müssen, um der ständigen Bewegung der Rotorblätter standzuhalten. Diese fortschrittlichen Kabel ermöglichen den effizienten und sicheren Transport von Energie, was für die Nachhaltigkeit und wirtschaftliche Rentabilität erneuerbarer Energien von entscheidender Bedeutung ist.</p>
<p>Insgesamt tragen diese Technologien dazu bei, die Effizienz und Sicherheit von Kabeln zu maximieren und unterstützen eine nachhaltige Energiezukunft.</p> <p>Insgesamt tragen diese Technologien dazu bei, die Effizienz und Sicherheit von Kabeln zu maximieren und unterstützen eine nachhaltige Energiezukunft.</p>
<div class="vlp-link-container vlp-layout-basic"><a href="https://www.cables-unlimited.com/renewable-energy-cable-assemblies-weve-got-you-covered/" class="vlp-link" title="Renewable Energy Cable Assemblies — Weve Got You Covered - Cables Unlimited Inc." rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="http://www.cables-unlimited.com/wp-content/uploads/2023/02/Cables-Unlimited_Featured-Renewable-Energy-Cable-Assemblies-%E2%80%94-Weve-Got-You-Covered.jpg" style="max-width: 150px; max-height: 150px" /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Renewable Energy Cable Assemblies — Weve Got You Covered - Cables Unlimited Inc.</div><div class="vlp-block-1 vlp-link-summary">Cable assemblies used in renewable energy installations, what they are, their benefits and cable systems for renewable energy design factors.</div></div></div> <div class="vlp-link-container vlp-layout-basic"><a href="https://www.cables-unlimited.com/renewable-energy-cable-assemblies-weve-got-you-covered/" class="vlp-link" title="Renewable Energy Cable Assemblies — Weve Got You Covered - Cables Unlimited Inc." rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="http://www.cables-unlimited.com/wp-content/uploads/2023/02/Cables-Unlimited_Featured-Renewable-Energy-Cable-Assemblies-%E2%80%94-Weve-Got-You-Covered.jpg" style={{"maxWidth":"150px","maxHeight":"150px"}} /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Renewable Energy Cable Assemblies — Weve Got You Covered - Cables Unlimited Inc.</div><div class="vlp-block-1 vlp-link-summary">Cable assemblies used in renewable energy installations, what they are, their benefits and cable systems for renewable energy design factors.</div></div></div>
<h4>Zertifikate und Standards: Eine Garantie für Qualität</h4> <h4>Zertifikate und Standards: Eine Garantie für Qualität</h4>
<p>Die Qualität von Kabeln wird nicht nur durch ihre Materialien und Technologien bestimmt, sondern auch durch die Einhaltung von Zertifikaten und Standards. Diese garantieren, dass Kabel sicher, effizient und langlebig sind. Sie spielen eine entscheidende Rolle bei der Sicherstellung der Produktqualität und sind ein wichtiges Kriterium bei der Auswahl von Kabeln für verschiedene Anwendungen, insbesondere im Hinblick auf Nachhaltigkeit und Umweltschutz.<strong>Wichtige Standards und Siegel für erstklassige Kabel</strong></p> <p>Die Qualität von Kabeln wird nicht nur durch ihre Materialien und Technologien bestimmt, sondern auch durch die Einhaltung von Zertifikaten und Standards. Diese garantieren, dass Kabel sicher, effizient und langlebig sind. Sie spielen eine entscheidende Rolle bei der Sicherstellung der Produktqualität und sind ein wichtiges Kriterium bei der Auswahl von Kabeln für verschiedene Anwendungen, insbesondere im Hinblick auf Nachhaltigkeit und Umweltschutz.<strong>Wichtige Standards und Siegel für erstklassige Kabel</strong></p>
@@ -145,11 +137,11 @@ In den Niederlanden setzt das NEN (Nederlands Normalisatie-instituut) die nation
<li><strong>Umweltfreundliche Produktion:</strong> Zertifikate wie ISO 14001 beweisen, dass Hersteller umweltfreundliche Produktionsprozesse verwenden, die den Energieverbrauch und Abfall minimieren.</li> <li><strong>Umweltfreundliche Produktion:</strong> Zertifikate wie ISO 14001 beweisen, dass Hersteller umweltfreundliche Produktionsprozesse verwenden, die den Energieverbrauch und Abfall minimieren.</li>
</ul> </ul>
<p>Die zunehmende Bedeutung von Nachhaltigkeitszertifikaten ist nicht nur eine Reaktion auf gesetzliche Anforderungen, sondern auch auf das wachsende Bewusstsein von Verbrauchern und Unternehmen, die umweltfreundliche Produkte suchen. In einer Branche, die zunehmend von grünen Technologien dominiert wird, verschaffen solche Zertifikate Unternehmen einen Wettbewerbsvorteil und bieten Verbrauchern die Gewissheit, dass sie verantwortungsbewusst produzierte Produkte wählen.</p> <p>Die zunehmende Bedeutung von Nachhaltigkeitszertifikaten ist nicht nur eine Reaktion auf gesetzliche Anforderungen, sondern auch auf das wachsende Bewusstsein von Verbrauchern und Unternehmen, die umweltfreundliche Produkte suchen. In einer Branche, die zunehmend von grünen Technologien dominiert wird, verschaffen solche Zertifikate Unternehmen einen Wettbewerbsvorteil und bieten Verbrauchern die Gewissheit, dass sie verantwortungsbewusst produzierte Produkte wählen.</p>
<div class="vlp-link-container vlp-layout-basic"><a href="https://www.flukenetworks.com/blog/cabling-chronicles/cabling-certification" class="vlp-link" title="Three Reasons Cabling Certification Is More Important Than Ever" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="https://www.flukenetworks.com/sites/default/files/blog/fn-dsx-8000_14a_w.jpg" style="max-width: 150px; max-height: 150px" /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Three Reasons Cabling Certification Is More Important Than Ever</div><div class="vlp-block-1 vlp-link-summary">Every time you complete the installation of a structured cabling system, you can choose whether to certify it. All links in the system should be tested in some way to make sure that theyre connected properly, but is it necessary to measure and document the performance of every link?</div></div></div> <div class="vlp-link-container vlp-layout-basic"><a href="https://www.flukenetworks.com/blog/cabling-chronicles/cabling-certification" class="vlp-link" title="Three Reasons Cabling Certification Is More Important Than Ever" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="https://www.flukenetworks.com/sites/default/files/blog/fn-dsx-8000_14a_w.jpg" style={{"maxWidth":"150px","maxHeight":"150px"}} /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Three Reasons Cabling Certification Is More Important Than Ever</div><div class="vlp-block-1 vlp-link-summary">Every time you complete the installation of a structured cabling system, you can choose whether to certify it. All links in the system should be tested in some way to make sure that theyre connected properly, but is it necessary to measure and document the performance of every link?</div></div></div>
<h4>Fazit: Was macht ein erstklassiges Kabel aus?</h4> <h4>Fazit: Was macht ein erstklassiges Kabel aus?</h4>
<p>Ein erstklassiges Kabel zeichnet sich durch ein perfektes Gleichgewicht zwischen Qualität, Effizienz und Nachhaltigkeit aus. Die Wahl des richtigen Kabels ist nicht nur eine Frage technischer Anforderungen, sondern auch ein wichtiger Schritt in Richtung einer nachhaltigeren Zukunft. Ein hochwertiges Kabel gewährleistet zuverlässige Leistung und maximale Effizienz, reduziert Energieverluste und bietet gleichzeitig einen hohen Sicherheitsstandard.<strong>Qualität und Effizienz</strong><br /> <p>Ein erstklassiges Kabel zeichnet sich durch ein perfektes Gleichgewicht zwischen Qualität, Effizienz und Nachhaltigkeit aus. Die Wahl des richtigen Kabels ist nicht nur eine Frage technischer Anforderungen, sondern auch ein wichtiger Schritt in Richtung einer nachhaltigeren Zukunft. Ein hochwertiges Kabel gewährleistet zuverlässige Leistung und maximale Effizienz, reduziert Energieverluste und bietet gleichzeitig einen hohen Sicherheitsstandard.<strong>Qualität und Effizienz</strong><br />
Ein gutes Kabel ist darauf ausgelegt, langfristig effizient zu arbeiten. Materialien wie Kupfer und Aluminium gewährleisten hervorragende Leitfähigkeit, während moderne Isoliermaterialien und Schutzschichten die Lebensdauer des Kabels verlängern und es vor äußeren Einflüssen wie Feuchtigkeit und Korrosion schützen. Dies ist besonders wichtig in Anwendungen wie der Energieübertragung und der Nutzung erneuerbarer Energien, bei denen Effizienz und Zuverlässigkeit oberste Priorität haben.</p> Ein gutes Kabel ist darauf ausgelegt, langfristig effizient zu arbeiten. Materialien wie Kupfer und Aluminium gewährleisten hervorragende Leitfähigkeit, während moderne Isoliermaterialien und Schutzschichten die Lebensdauer des Kabels verlängern und es vor äußeren Einflüssen wie Feuchtigkeit und Korrosion schützen. Dies ist besonders wichtig in Anwendungen wie der Energieübertragung und der Nutzung erneuerbarer Energien, bei denen Effizienz und Zuverlässigkeit oberste Priorität haben.</p>
<p><strong>Nachhaltigkeit</strong><br /> <p><strong>Nachhaltigkeit</strong><br />
In einer Welt, die zunehmend auf Nachhaltigkeit fokussiert ist, spielt der Umweltschutz bei der Wahl eines Kabels eine immer größere Rolle. Recyclingfähigkeit, nachhaltige Produktionsprozesse und Zertifikate wie RoHS oder Recycling-Siegel sind entscheidende Faktoren, die den ökologischen Fußabdruck eines Kabels bestimmen. Die Integration dieser Elemente in die Kabelproduktion hilft, den Ressourcenkonsum zu minimieren und Abfälle zu reduzieren, was zu einer umweltfreundlicheren und ressourceneffizienteren Zukunft beiträgt.</p> In einer Welt, die zunehmend auf Nachhaltigkeit fokussiert ist, spielt der Umweltschutz bei der Wahl eines Kabels eine immer größere Rolle. Recyclingfähigkeit, nachhaltige Produktionsprozesse und Zertifikate wie RoHS oder Recycling-Siegel sind entscheidende Faktoren, die den ökologischen Fußabdruck eines Kabels bestimmen. Die Integration dieser Elemente in die Kabelproduktion hilft, den Ressourcenkonsum zu minimieren und Abfälle zu reduzieren, was zu einer umweltfreundlicheren und ressourceneffizienteren Zukunft beiträgt.</p>
<div class="vlp-link-container vlp-layout-basic"><a href="https://sustainablebrands.com/read/evolving-infrastructure-wire-cable-prioritize-sustainability" class="vlp-link" title="Evolving Our Infrastructure Means the Wire and Cable Industry Must Prioritize Sustainability | Sustainable Brands" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="https://sb-web-assets.s3.amazonaws.com/production/46426/conversions/keyart-fbimg.jpg" style="max-width: 150px; max-height: 150px" /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Evolving Our Infrastructure Means the Wire and Cable Industry Must Prioritize Sustainability | Sustainable Brands</div><div class="vlp-block-1 vlp-link-summary">To sustainably support the tremendous global demand for connectivity, collaboration is needed across the value chain to create solutions that enable more inf…</div></div></div> <div class="vlp-link-container vlp-layout-basic"><a href="https://sustainablebrands.com/read/evolving-infrastructure-wire-cable-prioritize-sustainability" class="vlp-link" title="Evolving Our Infrastructure Means the Wire and Cable Industry Must Prioritize Sustainability | Sustainable Brands" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="https://sb-web-assets.s3.amazonaws.com/production/46426/conversions/keyart-fbimg.jpg" style={{"maxWidth":"150px","maxHeight":"150px"}} /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Evolving Our Infrastructure Means the Wire and Cable Industry Must Prioritize Sustainability | Sustainable Brands</div><div class="vlp-block-1 vlp-link-summary">To sustainably support the tremendous global demand for connectivity, collaboration is needed across the value chain to create solutions that enable more inf…</div></div></div>

View File

@@ -3,15 +3,6 @@ title: >-
Welche Kabel für Windkraft? Unterschiede von Nieder- bis Höchstspannung Welche Kabel für Windkraft? Unterschiede von Nieder- bis Höchstspannung
erklärt erklärt
date: '2025-06-10T10:36:45' date: '2025-06-10T10:36:45'
excerpt: >-
[vc_column column_padding=&#8221;no-extra-padding&#8221;
column_padding_tablet=&#8221;inherit&#8221;
column_padding_phone=&#8221;inherit&#8221;
column_padding_position=&#8221;all&#8221;
column_element_direction_desktop=&#8221;default&#8221;
column_element_spacing=&#8221;10px&#8221;
desktop_text_alignment=&#8221;default&#8221;
tablet_text_alignment=&#8221;default&#8221;&#8230;
featuredImage: /uploads/2025/04/image_fx_-2025-02-20T185502.688.webp featuredImage: /uploads/2025/04/image_fx_-2025-02-20T185502.688.webp
locale: de locale: de
--- ---
@@ -20,7 +11,7 @@ locale: de
<h2 data-start="88" data-end="144">Kabel: Das Nervensystem der Energiewende</h2> <h2 data-start="88" data-end="144">Kabel: Das Nervensystem der Energiewende</h2>
<p data-start="146" data-end="608">Ohne Kabel kein Strom. Und ohne passenden Kabeltyp auch kein funktionierender Windpark. In modernen <strong data-start="246" data-end="276">Onshore-Windkraftprojekten</strong> spielt die Wahl der richtigen Spannungsklasse eine zentrale Rolle nicht nur für die Effizienz, sondern auch für die Sicherheit und Langlebigkeit der gesamten Anlage.</p> <p data-start="146" data-end="608">Ohne Kabel kein Strom. Und ohne passenden Kabeltyp auch kein funktionierender Windpark. In modernen <strong data-start="246" data-end="276">Onshore-Windkraftprojekten</strong> spielt die Wahl der richtigen Spannungsklasse eine zentrale Rolle nicht nur für die Effizienz, sondern auch für die Sicherheit und Langlebigkeit der gesamten Anlage.</p>
<p data-start="146" data-end="608">Auch der Europäische Rechnungshof fordert verstärkte Investitionen in den Ausbau der Stromnetze, um die Energiewende erfolgreich voranzubringen. Denn nur mit modernen Kabeln und leistungsfähiger Infrastruktur lassen sich erneuerbare Energien zuverlässig integrieren und eine nachhaltige Energiezukunft sichern. Hier finden Sie mehr Infos zu diesem Thema.</p> <p data-start="146" data-end="608">Auch der Europäische Rechnungshof fordert verstärkte Investitionen in den Ausbau der Stromnetze, um die Energiewende erfolgreich voranzubringen. Denn nur mit modernen Kabeln und leistungsfähiger Infrastruktur lassen sich erneuerbare Energien zuverlässig integrieren und eine nachhaltige Energiezukunft sichern. Hier finden Sie mehr Infos zu diesem Thema.</p>
<div class="vlp-link-container vlp-layout-basic"><a href="https://www.klimareporter.de/strom/stromnetze-fuer-die-energiewende" class="vlp-link" title="Stromnetze für die Energiewende" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="https://www.klimareporter.de/images/karo3imgmanager/resized/standard-1/power-line-at-sunset-1100-733-80-ccb.webp" style="max-width: 150px; max-height: 150px" /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Stromnetze für die Energiewende</div><div class="vlp-block-1 vlp-link-summary">Der Europäische Rechnungshof dringt auf mehr Investitionen, um die Elektrizitätsnetze in der EU fit für erneuerbare Energien zu machen. Eine dezentrale und flex</div></div></div> <div class="vlp-link-container vlp-layout-basic"><a href="https://www.klimareporter.de/strom/stromnetze-fuer-die-energiewende" class="vlp-link" title="Stromnetze für die Energiewende" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="https://www.klimareporter.de/images/karo3imgmanager/resized/standard-1/power-line-at-sunset-1100-733-80-ccb.webp" style={{"maxWidth":"150px","maxHeight":"150px"}} /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Stromnetze für die Energiewende</div><div class="vlp-block-1 vlp-link-summary">Der Europäische Rechnungshof dringt auf mehr Investitionen, um die Elektrizitätsnetze in der EU fit für erneuerbare Energien zu machen. Eine dezentrale und flex</div></div></div>
<p data-start="610" data-end="968">In dem nachfolgenden Beitrag werfen wir einen genauen Blick auf die verschiedenen Spannungsklassen von der Niederspannung über Mittel- und Hochspannung bis hin zur Höchstspannung und zeigen, wo sie im Windpark konkret zum Einsatz kommen. Denn wer die Unterschiede kennt, kann Projekte nicht nur effizienter planen, sondern auch günstiger und zuverlässiger umsetzen.</p> <p data-start="610" data-end="968">In dem nachfolgenden Beitrag werfen wir einen genauen Blick auf die verschiedenen Spannungsklassen von der Niederspannung über Mittel- und Hochspannung bis hin zur Höchstspannung und zeigen, wo sie im Windpark konkret zum Einsatz kommen. Denn wer die Unterschiede kennt, kann Projekte nicht nur effizienter planen, sondern auch günstiger und zuverlässiger umsetzen.</p>
<h2 data-start="975" data-end="1032">Niederspannungskabel Einfach, günstig, unverzichtbar</h2> <h2 data-start="975" data-end="1032">Niederspannungskabel Einfach, günstig, unverzichtbar</h2>
@@ -134,7 +125,7 @@ locale: de
</ul> </ul>
<p data-start="3411" data-end="3649">Wer sich für das <strong data-start="3415" data-end="3436">NA2XS(F)2Y </strong>entscheidet, setzt auf eine bewährte Lösung für die Mittelspannungsebene. Diese Kabel sind nicht nur leistungsfähig, sondern auch langlebig und wirtschaftlich eine sichere Bank für die Energieverteilung im Windpark.</p> <p data-start="3411" data-end="3649">Wer sich für das <strong data-start="3415" data-end="3436">NA2XS(F)2Y </strong>entscheidet, setzt auf eine bewährte Lösung für die Mittelspannungsebene. Diese Kabel sind nicht nur leistungsfähig, sondern auch langlebig und wirtschaftlich eine sichere Bank für die Energieverteilung im Windpark.</p>
<p data-start="3411" data-end="3649">Dieses Kabel erhalten Sie auch direkt bei uns (KLZ). Mehr Informationen und <a href="/de/kontakt/">Bestellmöglichkeiten</a> finden Sie hier:</p> <p data-start="3411" data-end="3649">Dieses Kabel erhalten Sie auch direkt bei uns (KLZ). Mehr Informationen und <a href="/de/kontakt/">Bestellmöglichkeiten</a> finden Sie hier:</p>
<div class="vlp-link-container vlp-layout-basic"><a href="/de/start/" class="vlp-link" title="Lassen Sie uns Ihre Energieprojekte voranbringen" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="/uploads/2025/02/og-2.webp" style="max-width: 150px; max-height: 150px" /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Lassen Sie uns Ihre Energieprojekte voranbringen</div><div class="vlp-block-1 vlp-link-summary">Schnell, verlässlich und unkompliziert nehmen Sie Kontakt auf für individuelle Kabel- und Energielösungen. Wir sind für Sie da.</div></div></div> <div class="vlp-link-container vlp-layout-basic"><a href="/de/start/" class="vlp-link" title="Lassen Sie uns Ihre Energieprojekte voranbringen" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="/uploads/2025/02/og-2.webp" style={{"maxWidth":"150px","maxHeight":"150px"}} /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Lassen Sie uns Ihre Energieprojekte voranbringen</div><div class="vlp-block-1 vlp-link-summary">Schnell, verlässlich und unkompliziert nehmen Sie Kontakt auf für individuelle Kabel- und Energielösungen. Wir sind für Sie da.</div></div></div>
<p data-start="3411" data-end="3649"> <p data-start="3411" data-end="3649">
</div> </div>
</div> </div>
@@ -252,7 +243,7 @@ locale: de
</div> </div>
<p data-start="6841" data-end="7000">Die Tabelle verdeutlicht: Je höher die Spannung, desto spezialisierter das Kabel. Gleichzeitig steigen die Anforderungen an Planung, Verlegung und Überwachung.</p> <p data-start="6841" data-end="7000">Die Tabelle verdeutlicht: Je höher die Spannung, desto spezialisierter das Kabel. Gleichzeitig steigen die Anforderungen an Planung, Verlegung und Überwachung.</p>
<p data-start="6841" data-end="7000">In diesem Artikel können Sie nachlesen, wie sich unsere Energie smart und nachhaltig verteilen lässt.</p> <p data-start="6841" data-end="7000">In diesem Artikel können Sie nachlesen, wie sich unsere Energie smart und nachhaltig verteilen lässt.</p>
<div class="vlp-link-container vlp-layout-basic"><a href="https://www.enercity.de/magazin/unsere-welt/bedeutung-von-smart-grids-fuer-die-energiewende" class="vlp-link" title="Stromversorgung: Wie das Smart Grid die Energiewende ermöglicht" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="https://www.enercity.de/assets/cms/enercity-de/magazin/bedeutung-von-smart-grids-fuer-die-energiewende/306_460751759_1944x822_header.jpg" style="max-width: 150px; max-height: 150px" /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Stromversorgung: Wie das Smart Grid die Energiewende ermöglicht</div><div class="vlp-block-1 vlp-link-summary">Abertausende Klein- und Kleinstkraftwerke, eine sicherzustellende Versorgung, hoher Bedarf: Das Stromnetz der Zukunft muss intelligent sein.</div></div></div> <div class="vlp-link-container vlp-layout-basic"><a href="https://www.enercity.de/magazin/unsere-welt/bedeutung-von-smart-grids-fuer-die-energiewende" class="vlp-link" title="Stromversorgung: Wie das Smart Grid die Energiewende ermöglicht" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="https://www.enercity.de/assets/cms/enercity-de/magazin/bedeutung-von-smart-grids-fuer-die-energiewende/306_460751759_1944x822_header.jpg" style={{"maxWidth":"150px","maxHeight":"150px"}} /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Stromversorgung: Wie das Smart Grid die Energiewende ermöglicht</div><div class="vlp-block-1 vlp-link-summary">Abertausende Klein- und Kleinstkraftwerke, eine sicherzustellende Versorgung, hoher Bedarf: Das Stromnetz der Zukunft muss intelligent sein.</div></div></div>
</div> </div>
</div> </div>
</div> </div>

View File

@@ -1,15 +1,6 @@
--- ---
title: Wie die Kabelbranche Nachhaltigkeit und erneuerbare Energien vorantreibt title: Wie die Kabelbranche Nachhaltigkeit und erneuerbare Energien vorantreibt
date: '2025-04-14T10:00:41' date: '2025-04-14T10:00:41'
excerpt: >-
[vc_column column_padding=&#8221;no-extra-padding&#8221;
column_padding_tablet=&#8221;inherit&#8221;
column_padding_phone=&#8221;inherit&#8221;
column_padding_position=&#8221;all&#8221;
column_element_direction_desktop=&#8221;default&#8221;
column_element_spacing=&#8221;10px&#8221;
desktop_text_alignment=&#8221;default&#8221;
tablet_text_alignment=&#8221;default&#8221;&#8230;
featuredImage: /uploads/2025/02/image_fx_-2.webp featuredImage: /uploads/2025/02/image_fx_-2.webp
locale: de locale: de
--- ---
@@ -131,7 +122,7 @@ locale: de
<p class="" data-start="5823" data-end="6094">Wer heute <strong data-start="5833" data-end="5857">erneuerbare Energien</strong> denkt, sollte sich auch mit dem beschäftigen, was diese Energie in Bewegung hält: <strong data-start="5940" data-end="5963">Die Kabelindustrie.</strong> Sie liefert nicht nur Kupfer und Isoliermaterial sondern Lösungen, die unseren Weg in die <strong data-start="6056" data-end="6073">grüne Zukunft</strong> erst möglich machen.</p> <p class="" data-start="5823" data-end="6094">Wer heute <strong data-start="5833" data-end="5857">erneuerbare Energien</strong> denkt, sollte sich auch mit dem beschäftigen, was diese Energie in Bewegung hält: <strong data-start="5940" data-end="5963">Die Kabelindustrie.</strong> Sie liefert nicht nur Kupfer und Isoliermaterial sondern Lösungen, die unseren Weg in die <strong data-start="6056" data-end="6073">grüne Zukunft</strong> erst möglich machen.</p>
<p class="" data-start="5823" data-end="6094">Wie Sie selbst zu einer nachhaltigen Energieversorgung beitragen können, erfahren Sie in dem nachfolgenden Artikel.</p> <p class="" data-start="5823" data-end="6094">Wie Sie selbst zu einer nachhaltigen Energieversorgung beitragen können, erfahren Sie in dem nachfolgenden Artikel.</p>
</div> </div>
<div class="vlp-link-container vlp-layout-basic"><a href="https://money-for-future.com/nachhaltige-energieversorgung-erneuerbare-energie" class="vlp-link" title="Nachhaltige Energieversor­gung und erneuerbare Energie erklärt" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="https://money-for-future.com/wp-content/uploads/2022/01/Image-153-1.jpg" style="max-width: 150px; max-height: 150px" /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Nachhaltige Energieversor­gung und erneuerbare Energie erklärt</div><div class="vlp-block-1 vlp-link-summary">Nachhaltige Energieversor­gung. Was kann ich tun, um die Energiewende voranzubringen? 7 Schritte zu einer nachhaltigen Lebensweise.</div></div></div> <div class="vlp-link-container vlp-layout-basic"><a href="https://money-for-future.com/nachhaltige-energieversorgung-erneuerbare-energie" class="vlp-link" title="Nachhaltige Energieversor­gung und erneuerbare Energie erklärt" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="https://money-for-future.com/wp-content/uploads/2022/01/Image-153-1.jpg" style={{"maxWidth":"150px","maxHeight":"150px"}} /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Nachhaltige Energieversor­gung und erneuerbare Energie erklärt</div><div class="vlp-block-1 vlp-link-summary">Nachhaltige Energieversor­gung. Was kann ich tun, um die Energiewende voranzubringen? 7 Schritte zu einer nachhaltigen Lebensweise.</div></div></div>
</div> </div>
</div> </div>
</div> </div>

View File

@@ -1,15 +1,6 @@
--- ---
title: 'Willkommen in der Zukunft von KLZ: Unsere neue Website ist online!' title: 'Willkommen in der Zukunft von KLZ: Unsere neue Website ist online!'
date: '2025-01-15T13:38:36' date: '2025-01-15T13:38:36'
excerpt: >-
[vc_column column_padding=&#8221;no-extra-padding&#8221;
column_padding_tablet=&#8221;inherit&#8221;
column_padding_phone=&#8221;inherit&#8221;
column_padding_position=&#8221;all&#8221;
column_element_direction_desktop=&#8221;default&#8221;
column_element_spacing=&#8221;10px&#8221;
desktop_text_alignment=&#8221;default&#8221;
tablet_text_alignment=&#8221;default&#8221;&#8230;
featuredImage: /uploads/2024/12/mockup_03-copy-scaled.webp featuredImage: /uploads/2024/12/mockup_03-copy-scaled.webp
locale: de locale: de
--- ---

View File

@@ -1,15 +1,6 @@
--- ---
title: 'Windparkbau im Fokus: drei typische Kabelherausforderungen' title: 'Windparkbau im Fokus: drei typische Kabelherausforderungen'
date: '2025-11-05T10:16:10' date: '2025-11-05T10:16:10'
excerpt: >-
[vc_column column_padding=&#8221;no-extra-padding&#8221;
column_padding_tablet=&#8221;inherit&#8221;
column_padding_phone=&#8221;inherit&#8221;
column_padding_position=&#8221;all&#8221;
column_element_direction_desktop=&#8221;default&#8221;
column_element_spacing=&#8221;10px&#8221;
desktop_text_alignment=&#8221;default&#8221;
tablet_text_alignment=&#8221;default&#8221;&#8230;
featuredImage: /uploads/2025/04/image_fx_-2025-02-20T193520.620.webp featuredImage: /uploads/2025/04/image_fx_-2025-02-20T193520.620.webp
locale: de locale: de
--- ---
@@ -20,7 +11,7 @@ locale: de
<p data-start="836" data-end="1129">Hinzu kommen logistische Herausforderungen: <strong data-start="880" data-end="903">große Kabeltrommeln</strong>, unterschiedliche <a href="https://www.conrad.de/de/ratgeber/handwerk/kabelquerschnitt-berechnen.html" target="_blank" rel="noopener noreferrer nofollow"><strong data-start="922" data-end="944">Leiterquerschnitte</strong></a>, spezielle <strong data-start="956" data-end="972">Verpackungen</strong> und wechselnde Baustellenbedingungen. Wer hier nicht vorausplant, riskiert Engpässe und das kann den gesamten <a href="https://www.enargus.de/pub/bscw.cgi/d7842-2/*/*/Netzanschluss%20einer%20Windkraftanlage?op=Wiki.getwiki&amp;search=Windpark" target="_blank" rel="noopener noreferrer nofollow"><strong data-start="1085" data-end="1116">Netzanschluss des Windparks</strong></a> verzögern.</p> <p data-start="836" data-end="1129">Hinzu kommen logistische Herausforderungen: <strong data-start="880" data-end="903">große Kabeltrommeln</strong>, unterschiedliche <a href="https://www.conrad.de/de/ratgeber/handwerk/kabelquerschnitt-berechnen.html" target="_blank" rel="noopener noreferrer nofollow"><strong data-start="922" data-end="944">Leiterquerschnitte</strong></a>, spezielle <strong data-start="956" data-end="972">Verpackungen</strong> und wechselnde Baustellenbedingungen. Wer hier nicht vorausplant, riskiert Engpässe und das kann den gesamten <a href="https://www.enargus.de/pub/bscw.cgi/d7842-2/*/*/Netzanschluss%20einer%20Windkraftanlage?op=Wiki.getwiki&amp;search=Windpark" target="_blank" rel="noopener noreferrer nofollow"><strong data-start="1085" data-end="1116">Netzanschluss des Windparks</strong></a> verzögern.</p>
<p data-start="1131" data-end="1351" data-is-last-node="" data-is-only-node="">In diesem Beitrag beleuchten wir die<strong data-start="1168" data-end="1215"> 3 größten Herausforderungen im Windparkbau</strong> und zeigen, wie man mit einer vorausschauenden Logistik und der richtigen Kabelstrategie Projekte terminsicher und effizient umsetzt.</p> <p data-start="1131" data-end="1351" data-is-last-node="" data-is-only-node="">In diesem Beitrag beleuchten wir die<strong data-start="1168" data-end="1215"> 3 größten Herausforderungen im Windparkbau</strong> und zeigen, wie man mit einer vorausschauenden Logistik und der richtigen Kabelstrategie Projekte terminsicher und effizient umsetzt.</p>
<p data-start="1131" data-end="1351" data-is-last-node="" data-is-only-node="">Warum besonders Onshore-Windparks ein starker Pfeiler der Energiewende sind, erfahren Sie hier:</p> <p data-start="1131" data-end="1351" data-is-last-node="" data-is-only-node="">Warum besonders Onshore-Windparks ein starker Pfeiler der Energiewende sind, erfahren Sie hier:</p>
<div class="vlp-link-container vlp-layout-basic"><a href="https://www.enbw.com/unternehmen/themen/windkraft/onshore-wind-pfeiler-der-energiewende.html" class="vlp-link" title="Onshore-Windenergie als Pfeiler der Energiewende | EnBW" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="https://www.enbw.com/media/image-proxy/1600x914,q70,focus50x49,zoom1.0/https://www.enbw.com/media/presse/images/newsroom/onshore-windpark-langenburg-7zu4_1701415033580.jpg" style="max-width: 150px; max-height: 150px" /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Onshore-Windenergie als Pfeiler der Energiewende | EnBW</div><div class="vlp-block-1 vlp-link-summary">Viele Faktoren haben den Bau von Windenergieanlagen in den letzten Jahren gebremst. Lesen Sie hier die Gründe!</div></div></div> <div class="vlp-link-container vlp-layout-basic"><a href="https://www.enbw.com/unternehmen/themen/windkraft/onshore-wind-pfeiler-der-energiewende.html" class="vlp-link" title="Onshore-Windenergie als Pfeiler der Energiewende | EnBW" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="https://www.enbw.com/media/image-proxy/1600x914,q70,focus50x49,zoom1.0/https://www.enbw.com/media/presse/images/newsroom/onshore-windpark-langenburg-7zu4_1701415033580.jpg" style={{"maxWidth":"150px","maxHeight":"150px"}} /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Onshore-Windenergie als Pfeiler der Energiewende | EnBW</div><div class="vlp-block-1 vlp-link-summary">Viele Faktoren haben den Bau von Windenergieanlagen in den letzten Jahren gebremst. Lesen Sie hier die Gründe!</div></div></div>
<h2 data-start="975" data-end="1032">Herausforderung 1: Enge Bauzeiten und Fixtermine</h2> <h2 data-start="975" data-end="1032">Herausforderung 1: Enge Bauzeiten und Fixtermine</h2>
<article class="text-token-text-primary w-full focus:outline-none [--shadow-height:45px] has-data-writing-block:pointer-events-none has-data-writing-block:-mt-(--shadow-height) has-data-writing-block:pt-(--shadow-height) [&amp;:has([data-writing-block])&gt;*]:pointer-events-auto [content-visibility:auto] supports-[content-visibility:auto]:[contain-intrinsic-size:auto_100lvh] scroll-mt-[calc(var(--header-height)+min(200px,max(70px,20svh)))]" dir="auto" data-turn-id="request-WEB:bf30f1b0-7528-4f1e-bc5d-25dc4336c07f-12" data-testid="conversation-turn-26" data-scroll-anchor="true" data-turn="assistant"> <article class="text-token-text-primary w-full focus:outline-none [--shadow-height:45px] has-data-writing-block:pointer-events-none has-data-writing-block:-mt-(--shadow-height) has-data-writing-block:pt-(--shadow-height) [&amp;:has([data-writing-block])&gt;*]:pointer-events-auto [content-visibility:auto] supports-[content-visibility:auto]:[contain-intrinsic-size:auto_100lvh] scroll-mt-[calc(var(--header-height)+min(200px,max(70px,20svh)))]" dir="auto" data-turn-id="request-WEB:bf30f1b0-7528-4f1e-bc5d-25dc4336c07f-12" data-testid="conversation-turn-26" data-scroll-anchor="true" data-turn="assistant">
@@ -80,7 +71,7 @@ locale: de
</div> </div>
<p data-start="1455" data-end="1694" data-is-last-node="" data-is-only-node="">Mit einer präzisen Planung der <a href="https://www.a-eberle.de/infobrief/infobrief-20/" target="_blank" rel="noopener noreferrer nofollow"><strong data-start="1486" data-end="1506">Kabelkapazitäten</strong></a> und einer reaktionsfähigen Logistik lässt sich auch unter hohem Zeitdruck effizient arbeiten. So bleibt der <strong data-start="1615" data-end="1646">Netzanschluss des Windparks</strong> termingerecht und der Energiefluss gesichert.</p> <p data-start="1455" data-end="1694" data-is-last-node="" data-is-only-node="">Mit einer präzisen Planung der <a href="https://www.a-eberle.de/infobrief/infobrief-20/" target="_blank" rel="noopener noreferrer nofollow"><strong data-start="1486" data-end="1506">Kabelkapazitäten</strong></a> und einer reaktionsfähigen Logistik lässt sich auch unter hohem Zeitdruck effizient arbeiten. So bleibt der <strong data-start="1615" data-end="1646">Netzanschluss des Windparks</strong> termingerecht und der Energiefluss gesichert.</p>
<p data-start="1455" data-end="1694" data-is-last-node="" data-is-only-node="">Sie möchten wissen, welche Kabelarten in einem Windpark verlegt werden? Dann schauen Sie sich diesen Artikel an:</p> <p data-start="1455" data-end="1694" data-is-last-node="" data-is-only-node="">Sie möchten wissen, welche Kabelarten in einem Windpark verlegt werden? Dann schauen Sie sich diesen Artikel an:</p>
<div class="vlp-link-container vlp-layout-basic"><a href="https://wind-turbine.com/magazin/ratgeber/250713/welche-arten-von-kabeln-benoetigt-man-fuer-den-bau-eines-windparks.html" class="vlp-link" title="Welche Arten von Kabeln benötigt man für den Bau eines Windparks?" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="https://wind-turbine.com/i/53689/68738caa5e58ffdf06031cf2/2/1200/630/68738c85497af_KabelfreinenWindparkpng.png" style="max-width: 150px; max-height: 150px" /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Welche Arten von Kabeln benötigt man für den Bau eines Windparks?</div><div class="vlp-block-1 vlp-link-summary">Die Verkabelung ist ein zentrales Element jeder Windkraftanlage und beeinflusst maßgeblich die Effizienz, Sicherheit und Wirtschaftlichkeit eines Windparks.…</div></div></div> <div class="vlp-link-container vlp-layout-basic"><a href="https://wind-turbine.com/magazin/ratgeber/250713/welche-arten-von-kabeln-benoetigt-man-fuer-den-bau-eines-windparks.html" class="vlp-link" title="Welche Arten von Kabeln benötigt man für den Bau eines Windparks?" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="https://wind-turbine.com/i/53689/68738caa5e58ffdf06031cf2/2/1200/630/68738c85497af_KabelfreinenWindparkpng.png" style={{"maxWidth":"150px","maxHeight":"150px"}} /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Welche Arten von Kabeln benötigt man für den Bau eines Windparks?</div><div class="vlp-block-1 vlp-link-summary">Die Verkabelung ist ein zentrales Element jeder Windkraftanlage und beeinflusst maßgeblich die Effizienz, Sicherheit und Wirtschaftlichkeit eines Windparks.…</div></div></div>
</div> </div>
</div> </div>
</div> </div>
@@ -192,7 +183,7 @@ locale: de
</ul> </ul>
<p data-start="1203" data-end="1546" data-is-last-node="" data-is-only-node="">Kurzfristige Änderungen sind kein Ausnahmefall sie gehören zum Alltag im <strong data-start="1278" data-end="1293">Windparkbau</strong>. Entscheidend ist, darauf vorbereitet zu sein. Eine durchdachte <a href="https://bwo-offshorewind.de/pressemitteilung-roadmap-ist-wichtiger-schritt-fuer-resiliente-lieferketten/" target="_blank" rel="noopener noreferrer nofollow"><strong data-start="1358" data-end="1373">Lieferkette</strong></a>, klare Kommunikation und reaktionsfähige Lagerstrukturen sorgen dafür, dass das Projekt trotz Anpassungen im Zeitplan bleibt und der Windpark termingerecht ans Netz geht.</p> <p data-start="1203" data-end="1546" data-is-last-node="" data-is-only-node="">Kurzfristige Änderungen sind kein Ausnahmefall sie gehören zum Alltag im <strong data-start="1278" data-end="1293">Windparkbau</strong>. Entscheidend ist, darauf vorbereitet zu sein. Eine durchdachte <a href="https://bwo-offshorewind.de/pressemitteilung-roadmap-ist-wichtiger-schritt-fuer-resiliente-lieferketten/" target="_blank" rel="noopener noreferrer nofollow"><strong data-start="1358" data-end="1373">Lieferkette</strong></a>, klare Kommunikation und reaktionsfähige Lagerstrukturen sorgen dafür, dass das Projekt trotz Anpassungen im Zeitplan bleibt und der Windpark termingerecht ans Netz geht.</p>
<p data-start="1203" data-end="1546" data-is-last-node="" data-is-only-node="">Vermeiden Sie Verzögerungen oder Probleme beim Bau Ihres Windkraftprojektes, indem Sie schon im Vorfeld wissen, warum der NABU gegen manche Projekte klagt:</p> <p data-start="1203" data-end="1546" data-is-last-node="" data-is-only-node="">Vermeiden Sie Verzögerungen oder Probleme beim Bau Ihres Windkraftprojektes, indem Sie schon im Vorfeld wissen, warum der NABU gegen manche Projekte klagt:</p>
<div class="vlp-link-container vlp-layout-basic"><a href="https://www.nabu.de/umwelt-und-ressourcen/energie/erneuerbare-energien-energiewende/windenergie/26913.html" class="vlp-link" title="Wann klagt der NABU gegen Windkraftprojekte?" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="https://www.nabu.de/imperia/md/nabu/images/umwelt/energie/energietraeger/windkraft/161125-nabu-windrad-allgaeu-heidrun-burchard.jpeg" style="max-width: 150px; max-height: 150px" /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Wann klagt der NABU gegen Windkraftprojekte?</div><div class="vlp-block-1 vlp-link-summary">45 Klagen wurden wegen Fehlplanungen bei Windenergie zwischen 2010 und 2019 vom NABU auf den Weg gebracht. Nicht weil der Windenergieausbau aufgehalten werden soll, sondern weil immer wieder Vorhaben und Planungen eklatant gegen Naturschutzrecht verstoßen.</div></div></div> <div class="vlp-link-container vlp-layout-basic"><a href="https://www.nabu.de/umwelt-und-ressourcen/energie/erneuerbare-energien-energiewende/windenergie/26913.html" class="vlp-link" title="Wann klagt der NABU gegen Windkraftprojekte?" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="https://www.nabu.de/imperia/md/nabu/images/umwelt/energie/energietraeger/windkraft/161125-nabu-windrad-allgaeu-heidrun-burchard.jpeg" style={{"maxWidth":"150px","maxHeight":"150px"}} /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Wann klagt der NABU gegen Windkraftprojekte?</div><div class="vlp-block-1 vlp-link-summary">45 Klagen wurden wegen Fehlplanungen bei Windenergie zwischen 2010 und 2019 vom NABU auf den Weg gebracht. Nicht weil der Windenergieausbau aufgehalten werden soll, sondern weil immer wieder Vorhaben und Planungen eklatant gegen Naturschutzrecht verstoßen.</div></div></div>
<h2 data-start="4835" data-end="4892">Qualität und Nachhaltigkeit als Erfolgsfaktor</h2> <h2 data-start="4835" data-end="4892">Qualität und Nachhaltigkeit als Erfolgsfaktor</h2>
<article class="text-token-text-primary w-full focus:outline-none [--shadow-height:45px] has-data-writing-block:pointer-events-none has-data-writing-block:-mt-(--shadow-height) has-data-writing-block:pt-(--shadow-height) [&amp;:has([data-writing-block])&gt;*]:pointer-events-auto [content-visibility:auto] supports-[content-visibility:auto]:[contain-intrinsic-size:auto_100lvh] scroll-mt-[calc(var(--header-height)+min(200px,max(70px,20svh)))]" dir="auto" data-turn-id="request-WEB:bf30f1b0-7528-4f1e-bc5d-25dc4336c07f-15" data-testid="conversation-turn-32" data-scroll-anchor="true" data-turn="assistant"> <article class="text-token-text-primary w-full focus:outline-none [--shadow-height:45px] has-data-writing-block:pointer-events-none has-data-writing-block:-mt-(--shadow-height) has-data-writing-block:pt-(--shadow-height) [&amp;:has([data-writing-block])&gt;*]:pointer-events-auto [content-visibility:auto] supports-[content-visibility:auto]:[contain-intrinsic-size:auto_100lvh] scroll-mt-[calc(var(--header-height)+min(200px,max(70px,20svh)))]" dir="auto" data-turn-id="request-WEB:bf30f1b0-7528-4f1e-bc5d-25dc4336c07f-15" data-testid="conversation-turn-32" data-scroll-anchor="true" data-turn="assistant">

View File

@@ -1,22 +1,13 @@
--- ---
title: 'Zukunft sichern mit H1Z2Z2-K: Unser Solarkabel zur Intersolar 2025' title: 'Zukunft sichern mit H1Z2Z2-K: Unser Solarkabel zur Intersolar 2025'
date: '2025-04-30T09:17:33' date: '2025-04-30T09:17:33'
excerpt: >-
[vc_column column_padding=&#8221;no-extra-padding&#8221;
column_padding_tablet=&#8221;inherit&#8221;
column_padding_phone=&#8221;inherit&#8221;
column_padding_position=&#8221;all&#8221;
column_element_direction_desktop=&#8221;default&#8221;
column_element_spacing=&#8221;10px&#8221;
desktop_text_alignment=&#8221;default&#8221;
tablet_text_alignment=&#8221;default&#8221;&#8230;
featuredImage: /uploads/2025/04/inter-solar.webp featuredImage: /uploads/2025/04/inter-solar.webp
locale: de locale: de
--- ---
# Zukunft sichern mit H1Z2Z2-K: Unser Solarkabel zur Intersolar 2025 # Zukunft sichern mit H1Z2Z2-K: Unser Solarkabel zur Intersolar 2025
<p class="" data-start="114" data-end="386">Rund um die <a href="https://www.intersolar.de/start" target="_blank" rel="noopener noreferrer nofollow">Intersolar Europe</a> rückt das Thema Photovoltaik wieder stärker in den Fokus. Ein guter Anlass, sich ein spezielles Solarkabel näher anzusehen, das für den Einsatz in PV-Anlagen entwickelt wurde robust, witterungsbeständig und konform mit den geltenden Normen.</p> <p class="" data-start="114" data-end="386">Rund um die <a href="https://www.intersolar.de/start" target="_blank" rel="noopener noreferrer nofollow">Intersolar Europe</a> rückt das Thema Photovoltaik wieder stärker in den Fokus. Ein guter Anlass, sich ein spezielles Solarkabel näher anzusehen, das für den Einsatz in PV-Anlagen entwickelt wurde robust, witterungsbeständig und konform mit den geltenden Normen.</p>
<div class="vlp-link-container vlp-layout-basic"><a href="https://youtu.be/YbtdyvQFoVM" class="vlp-link" title="Intersolar Europe 2025 | Save The Date | May 79, 2025" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="https://i.ytimg.com/vi/YbtdyvQFoVM/maxresdefault.jpg?sqp=-oaymwEmCIAKENAF8quKqQMa8AEB-AH-CYAC0AWKAgwIABABGEQgSyhyMA8=&amp;rs=AOn4CLBx90qdBxgYcyMttgdOGs3-m0udZQ" style="max-width: 150px; max-height: 150px" /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Intersolar Europe 2025 | Save The Date | May 79, 2025</div><div class="vlp-block-1 vlp-link-summary">As the worlds leading exhibition for the solar industry, Intersolar Europe demonstrates the enormous vitality of the solar market. For more than 30 years, i…</div></div></div> <div class="vlp-link-container vlp-layout-basic"><a href="https://youtu.be/YbtdyvQFoVM" class="vlp-link" title="Intersolar Europe 2025 | Save The Date | May 79, 2025" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="https://i.ytimg.com/vi/YbtdyvQFoVM/maxresdefault.jpg?sqp=-oaymwEmCIAKENAF8quKqQMa8AEB-AH-CYAC0AWKAgwIABABGEQgSyhyMA8=&amp;rs=AOn4CLBx90qdBxgYcyMttgdOGs3-m0udZQ" style={{"maxWidth":"150px","maxHeight":"150px"}} /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Intersolar Europe 2025 | Save The Date | May 79, 2025</div><div class="vlp-block-1 vlp-link-summary">As the worlds leading exhibition for the solar industry, Intersolar Europe demonstrates the enormous vitality of the solar market. For more than 30 years, i…</div></div></div>
<p class="" data-start="388" data-end="575">Was hinter der Konstruktion steckt, welche Auswahlkriterien bei Solarkabeln zählen und warum es bei Photovoltaikprojekten auf jedes Detail ankommt genau darum geht es in diesem Artikel.</p> <p class="" data-start="388" data-end="575">Was hinter der Konstruktion steckt, welche Auswahlkriterien bei Solarkabeln zählen und warum es bei Photovoltaikprojekten auf jedes Detail ankommt genau darum geht es in diesem Artikel.</p>
<h2 class="" data-start="189" data-end="243">Was ist das H1Z2Z2-K 6mm² Solarkabel?</h2> <h2 class="" data-start="189" data-end="243">Was ist das H1Z2Z2-K 6mm² Solarkabel?</h2>
@@ -293,7 +284,7 @@ locale: de
<p class="" data-start="839" data-end="932">Weitere Informationen, technische Daten und Bestelloptionen finden sich auf der Produktseite: 👉 <a class="" href="/de/produkte/solarkabel/h1z2z2-k-2/" target="_new" rel="noopener" data-start="937" data-end="1023">Zum H1Z2Z2-K bei KLZ</a></p> <p class="" data-start="839" data-end="932">Weitere Informationen, technische Daten und Bestelloptionen finden sich auf der Produktseite: 👉 <a class="" href="/de/produkte/solarkabel/h1z2z2-k-2/" target="_new" rel="noopener" data-start="937" data-end="1023">Zum H1Z2Z2-K bei KLZ</a></p>
<p class="" data-start="839" data-end="932">Alles Wichtige zur Intersolar Europe finden Sie hier:</p> <p class="" data-start="839" data-end="932">Alles Wichtige zur Intersolar Europe finden Sie hier:</p>
</div> </div>
<div class="vlp-link-container vlp-layout-basic"><a href="https://www.intersolar.de/messe-kompakt?ref=m5f53a666f3a2cb2fee160554-s65eec4739108db093b003a02-t1746004197-cf3c592e7" class="vlp-link" title="Intersolar Europe at a Glance" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="https://www.intersolar.de/media/image/6311c9ee98bbc414b66305e2/750" style="max-width: 150px; max-height: 150px" /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Intersolar Europe at a Glance</div><div class="vlp-block-1 vlp-link-summary">Intersolar Europe | Exhibition Quick Facts | Date, Venue, Opening Hours, Exhibitors</div></div></div> <div class="vlp-link-container vlp-layout-basic"><a href="https://www.intersolar.de/messe-kompakt?ref=m5f53a666f3a2cb2fee160554-s65eec4739108db093b003a02-t1746004197-cf3c592e7" class="vlp-link" title="Intersolar Europe at a Glance" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="https://www.intersolar.de/media/image/6311c9ee98bbc414b66305e2/750" style={{"maxWidth":"150px","maxHeight":"150px"}} /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Intersolar Europe at a Glance</div><div class="vlp-block-1 vlp-link-summary">Intersolar Europe | Exhibition Quick Facts | Date, Venue, Opening Hours, Exhibitors</div></div></div>
</div> </div>
</div> </div>
</div> </div>

View File

@@ -1,15 +1,6 @@
--- ---
title: 100% renewable energy? Only with the right cable infrastructure! title: 100% renewable energy? Only with the right cable infrastructure!
date: '2025-03-31T12:00:23' date: '2025-03-31T12:00:23'
excerpt: >-
[vc_column column_padding=&#8221;no-extra-padding&#8221;
column_padding_tablet=&#8221;inherit&#8221;
column_padding_phone=&#8221;inherit&#8221;
column_padding_position=&#8221;all&#8221;
column_element_direction_desktop=&#8221;default&#8221;
column_element_spacing=&#8221;10px&#8221;
desktop_text_alignment=&#8221;default&#8221;
tablet_text_alignment=&#8221;default&#8221;&#8230;
featuredImage: /uploads/2025/02/image_fx_-6.webp featuredImage: /uploads/2025/02/image_fx_-6.webp
locale: en locale: en
--- ---
@@ -158,7 +149,7 @@ locale: en
</table> </table>
<p data-start="1148" data-end="1476">In the past, overhead lines were favored due to lower construction costs. However, modern demands for grid stability, environmental protection, and aesthetics increasingly support underground cables. As a result, many countries are now adopting underground cabling as the standard for new high- and medium-voltage power lines.</p> <p data-start="1148" data-end="1476">In the past, overhead lines were favored due to lower construction costs. However, modern demands for grid stability, environmental protection, and aesthetics increasingly support underground cables. As a result, many countries are now adopting underground cabling as the standard for new high- and medium-voltage power lines.</p>
<p data-start="1478" data-end="1712">For those who want to dive deeper into the topic, heres a <strong data-start="1537" data-end="1558">detailed analysis</strong> comparing overhead lines and underground cables: <a href="https://www.hochspannungsblog.at/wissenswertes/netzaufbau/vergleich-freileitung-erdkabel" target="_new" rel="noopener noreferrer nofollow" data-start="1608" data-end="1709" target="_blank">Read </a><a href="https://www.hochspannungsblog.at/wissenswertes/netzaufbau/vergleich-freileitung-erdkabel" target="_new" rel="noopener noreferrer nofollow" data-start="1608" data-end="1709" target="_blank">more</a><a href="https://www.hochspannungsblog.at/wissenswertes/netzaufbau/vergleich-freileitung-erdkabel" target="_new" rel="noopener noreferrer nofollow" data-start="1608" data-end="1709" target="_blank">.</a></p> <p data-start="1478" data-end="1712">For those who want to dive deeper into the topic, heres a <strong data-start="1537" data-end="1558">detailed analysis</strong> comparing overhead lines and underground cables: <a href="https://www.hochspannungsblog.at/wissenswertes/netzaufbau/vergleich-freileitung-erdkabel" target="_new" rel="noopener noreferrer nofollow" data-start="1608" data-end="1709" target="_blank">Read </a><a href="https://www.hochspannungsblog.at/wissenswertes/netzaufbau/vergleich-freileitung-erdkabel" target="_new" rel="noopener noreferrer nofollow" data-start="1608" data-end="1709" target="_blank">more</a><a href="https://www.hochspannungsblog.at/wissenswertes/netzaufbau/vergleich-freileitung-erdkabel" target="_new" rel="noopener noreferrer nofollow" data-start="1608" data-end="1709" target="_blank">.</a></p>
<div class="vlp-link-container vlp-layout-basic"><a href="https://www.hochspannungsblog.at/wissenswertes/netzaufbau/vergleich-freileitung-erdkabel" class="vlp-link" title="Freileitung und Erdkabel sind „Stand der Technik“" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="https://www.hochspannungsblog.at/201210-netzbau-110kv-wegscheid-mast-kabelanschluss-1723.jpg?ch=dhsowxyq&amp;:hp=9;1;de" style="max-width: 150px; max-height: 150px" /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Freileitung und Erdkabel sind „Stand der Technik“</div><div class="vlp-block-1 vlp-link-summary">Freileitung oder Erdkabel? Wir erklären Ihnen die Unterschiede und Möglichkeiten, aber auch warum was möglich ist und warum was nicht.</div></div></div> <div class="vlp-link-container vlp-layout-basic"><a href="https://www.hochspannungsblog.at/wissenswertes/netzaufbau/vergleich-freileitung-erdkabel" class="vlp-link" title="Freileitung und Erdkabel sind „Stand der Technik“" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="https://www.hochspannungsblog.at/201210-netzbau-110kv-wegscheid-mast-kabelanschluss-1723.jpg?ch=dhsowxyq&amp;:hp=9;1;de" style={{"maxWidth":"150px","maxHeight":"150px"}} /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Freileitung und Erdkabel sind „Stand der Technik“</div><div class="vlp-block-1 vlp-link-summary">Freileitung oder Erdkabel? Wir erklären Ihnen die Unterschiede und Möglichkeiten, aber auch warum was möglich ist und warum was nicht.</div></div></div>
<p data-start="1869" data-end="2036" data-is-last-node="" data-is-only-node="">⚡ <strong data-start="1871" data-end="1945">The energy transition can only succeed if the infrastructure keeps up.</strong> Those who invest in the right cables now will secure the power supply for decades to come.</p> <p data-start="1869" data-end="2036" data-is-last-node="" data-is-only-node="">⚡ <strong data-start="1871" data-end="1945">The energy transition can only succeed if the infrastructure keeps up.</strong> Those who invest in the right cables now will secure the power supply for decades to come.</p>
<div class="flex-shrink-0 flex flex-col relative items-end"> <div class="flex-shrink-0 flex flex-col relative items-end">

View File

@@ -1,14 +1,6 @@
--- ---
title: 'Billion-euro package for infrastructure: The cable boom is coming' title: 'Billion-euro package for infrastructure: The cable boom is coming'
date: '2025-04-06T08:05:19' date: '2025-04-06T08:05:19'
excerpt: >-
[vc_column column_padding=&#8221;no-extra-padding&#8221;
column_padding_tablet=&#8221;inherit&#8221;
column_padding_phone=&#8221;inherit&#8221;
column_padding_position=&#8221;all&#8221;
column_element_direction_desktop=&#8221;default&#8221;
column_element_spacing=&#8221;10px&#8221;
desktop_text_alignment=&#8221;default&#8221;&#8230;
featuredImage: >- featuredImage: >-
/uploads/2025/03/closeup-shot-of-a-person-presenting-a-euro-rain-wi-2025-02-02-14-02-05-utc-scaled.webp /uploads/2025/03/closeup-shot-of-a-person-presenting-a-euro-rain-wi-2025-02-02-14-02-05-utc-scaled.webp
locale: en locale: en

View File

@@ -1,15 +1,6 @@
--- ---
title: Cable abbreviations decoded the key to choosing the right cable title: Cable abbreviations decoded the key to choosing the right cable
date: '2025-03-17T10:00:16' date: '2025-03-17T10:00:16'
excerpt: >-
[vc_column column_padding=&#8221;no-extra-padding&#8221;
column_padding_tablet=&#8221;inherit&#8221;
column_padding_phone=&#8221;inherit&#8221;
column_padding_position=&#8221;all&#8221;
column_element_direction_desktop=&#8221;default&#8221;
column_element_spacing=&#8221;10px&#8221;
desktop_text_alignment=&#8221;default&#8221;
tablet_text_alignment=&#8221;default&#8221;&#8230;
featuredImage: >- featuredImage: >-
/uploads/2024/12/Medium-Voltage-Cables--KLZ-Cables-12-30-2024_05_20_PM-scaled.webp /uploads/2024/12/Medium-Voltage-Cables--KLZ-Cables-12-30-2024_05_20_PM-scaled.webp
locale: en locale: en

View File

@@ -1,14 +1,6 @@
--- ---
title: 'Cable drum quality: the foundation of cable reliability' title: 'Cable drum quality: the foundation of cable reliability'
date: '2024-11-09T12:14:30' date: '2024-11-09T12:14:30'
excerpt: >-
[vc_column column_padding=&#8221;no-extra-padding&#8221;
column_padding_tablet=&#8221;inherit&#8221;
column_padding_phone=&#8221;inherit&#8221;
column_padding_position=&#8221;all&#8221;
column_element_direction_desktop=&#8221;default&#8221;
column_element_spacing=&#8221;10px&#8221;
desktop_text_alignment=&#8221;default&#8221;&#8230;
featuredImage: /uploads/2024/11/1234adws21312-scaled.jpg featuredImage: /uploads/2024/11/1234adws21312-scaled.jpg
locale: en locale: en
--- ---

View File

@@ -1,14 +1,6 @@
--- ---
title: 'Cable drum safety: Ensuring smooth operations and accident-free environments' title: 'Cable drum safety: Ensuring smooth operations and accident-free environments'
date: '2025-01-14T12:23:33' date: '2025-01-14T12:23:33'
excerpt: >-
[vc_column column_padding=&#8221;no-extra-padding&#8221;
column_padding_tablet=&#8221;inherit&#8221;
column_padding_phone=&#8221;inherit&#8221;
column_padding_position=&#8221;all&#8221;
column_element_direction_desktop=&#8221;default&#8221;
column_element_spacing=&#8221;10px&#8221;
desktop_text_alignment=&#8221;default&#8221;&#8230;
featuredImage: >- featuredImage: >-
/uploads/2024/12/large-rolls-of-wires-against-the-blue-sky-at-sunse-2023-11-27-05-20-33-utc-Large.webp /uploads/2024/12/large-rolls-of-wires-against-the-blue-sky-at-sunse-2023-11-27-05-20-33-utc-Large.webp
locale: en locale: en

View File

@@ -1,14 +1,6 @@
--- ---
title: Climate neutral by 2050? What we need to do to achieve this goal title: Climate neutral by 2050? What we need to do to achieve this goal
date: '2025-01-20T12:30:17' date: '2025-01-20T12:30:17'
excerpt: >-
[vc_column column_padding=&#8221;no-extra-padding&#8221;
column_padding_tablet=&#8221;inherit&#8221;
column_padding_phone=&#8221;inherit&#8221;
column_padding_position=&#8221;all&#8221;
column_element_direction_desktop=&#8221;default&#8221;
column_element_spacing=&#8221;10px&#8221;
desktop_text_alignment=&#8221;default&#8221;&#8230;
featuredImage: >- featuredImage: >-
/uploads/2025/01/business-planning-hand-using-laptop-for-working-te-2024-11-01-21-25-44-utc-scaled.webp /uploads/2025/01/business-planning-hand-using-laptop-for-working-te-2024-11-01-21-25-44-utc-scaled.webp
locale: en locale: en

View File

@@ -3,15 +3,6 @@ title: >-
Copper or aluminum cable? Cost comparison for underground cable and grid Copper or aluminum cable? Cost comparison for underground cable and grid
connection connection
date: '2025-02-24T08:30:23' date: '2025-02-24T08:30:23'
excerpt: >-
[vc_column column_padding=&#8221;no-extra-padding&#8221;
column_padding_tablet=&#8221;inherit&#8221;
column_padding_phone=&#8221;inherit&#8221;
column_padding_position=&#8221;all&#8221;
column_element_direction_desktop=&#8221;default&#8221;
column_element_spacing=&#8221;10px&#8221;
desktop_text_alignment=&#8221;default&#8221;
tablet_text_alignment=&#8221;default&#8221;&#8230;
featuredImage: /uploads/2024/11/medium-voltage-category.webp featuredImage: /uploads/2024/11/medium-voltage-category.webp
locale: en locale: en
--- ---

View File

@@ -3,15 +3,6 @@ title: >-
Expanding the grid by 2025: Building the foundation for a successful energy Expanding the grid by 2025: Building the foundation for a successful energy
transition transition
date: '2025-02-10T13:00:36' date: '2025-02-10T13:00:36'
excerpt: >-
[vc_column column_padding=&#8221;no-extra-padding&#8221;
column_padding_tablet=&#8221;inherit&#8221;
column_padding_phone=&#8221;inherit&#8221;
column_padding_position=&#8221;all&#8221;
column_element_direction_desktop=&#8221;default&#8221;
column_element_spacing=&#8221;10px&#8221;
desktop_text_alignment=&#8221;default&#8221;
tablet_text_alignment=&#8221;default&#8221;&#8230;
featuredImage: >- featuredImage: >-
/uploads/2025/01/power-grid-station-electrical-distribution-statio-2023-11-27-05-25-36-utc-scaled.webp /uploads/2025/01/power-grid-station-electrical-distribution-statio-2023-11-27-05-25-36-utc-scaled.webp
locale: en locale: en

View File

@@ -1,15 +1,6 @@
--- ---
title: Eye-opening realities of green energy transformation title: Eye-opening realities of green energy transformation
date: '2024-12-30T10:55:32' date: '2024-12-30T10:55:32'
excerpt: >-
[vc_column column_padding=&#8221;no-extra-padding&#8221;
column_padding_tablet=&#8221;inherit&#8221;
column_padding_phone=&#8221;inherit&#8221;
column_padding_position=&#8221;all&#8221;
column_element_direction_desktop=&#8221;default&#8221;
column_element_spacing=&#8221;10px&#8221;
desktop_text_alignment=&#8221;default&#8221;
tablet_text_alignment=&#8221;default&#8221;&#8230;
featuredImage: >- featuredImage: >-
/uploads/2024/12/green-electric-plug-concept-2023-11-27-05-30-00-utc-scaled.webp /uploads/2024/12/green-electric-plug-concept-2023-11-27-05-30-00-utc-scaled.webp
locale: en locale: en
@@ -53,14 +44,14 @@ locale: en
<h4>Fact 1: Over 10% of solar power is lost through bad cables</h4> <h4>Fact 1: Over 10% of solar power is lost through bad cables</h4>
<p>There is an often overlooked problem with solar power systems: energy loss due to bad cables. Imagine you have a system that generates power from solar energy, but some of that power is simply lost before it even reaches you. This happens due to the resistance in the cables that carry the electricity from the solar panels to the appliances or to the grid. If the cables are not of good quality, this resistance increases and more energy is lost &#8211; and this can account for over <strong>10% of the total solar power generated</strong>.</p> <p>There is an often overlooked problem with solar power systems: energy loss due to bad cables. Imagine you have a system that generates power from solar energy, but some of that power is simply lost before it even reaches you. This happens due to the resistance in the cables that carry the electricity from the solar panels to the appliances or to the grid. If the cables are not of good quality, this resistance increases and more energy is lost &#8211; and this can account for over <strong>10% of the total solar power generated</strong>.</p>
<p>But why does this happen? Every cable has a resistance that slows down the flow of electricity. The poorer the quality of the cable, the more energy is lost in the form of heat. This means that less of the electricity produced by the solar system actually reaches you and can be used. And that is obviously a problem, especially when you consider how much is invested in the installation of a solar system. <p>But why does this happen? Every cable has a resistance that slows down the flow of electricity. The poorer the quality of the cable, the more energy is lost in the form of heat. This means that less of the electricity produced by the solar system actually reaches you and can be used. And that is obviously a problem, especially when you consider how much is invested in the installation of a solar system.
<h3 style="text-align: left;">Green energy is a central component of our future today &#8230; But it is not enough to simply rely on these energy sources. The infrastructure that brings this energy to us efficiently plays an equally crucial role.</h3> <h3 style={{"textAlign":"left"}}>Green energy is a central component of our future today &#8230; But it is not enough to simply rely on these energy sources. The infrastructure that brings this energy to us efficiently plays an equally crucial role.</h3>
High-quality cables, on the other hand, have better conductivity and lower resistance. This ensures that the <strong>electricity flows more efficiently and less is lost</strong>. This leaves more of the generated energy for you to use &#8211; which is not only good for your electricity bill, but also helps to maximize the sustainability of your solar system. So it&#8217;s worth paying attention to quality when choosing cables in order to exploit the full potential of green energy.</p> High-quality cables, on the other hand, have better conductivity and lower resistance. This ensures that the <strong>electricity flows more efficiently and less is lost</strong>. This leaves more of the generated energy for you to use &#8211; which is not only good for your electricity bill, but also helps to maximize the sustainability of your solar system. So it&#8217;s worth paying attention to quality when choosing cables in order to exploit the full potential of green energy.</p>
<div class="vlp-link-container vlp-layout-basic"><a href="https://ratedpower.com/blog/utility-scale-pv-losses/" class="vlp-link" title="Ultimate guide to utility-scale PV system losses — RatedPower" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="https://assets.ratedpower.com/1694509274-aerial-view-solar-panels-top-building-eco-building-factory-solar-photovoltaic-cell.jpg?auto=format&amp;fit=crop&amp;h=630&amp;w=1200" style="max-width: 150px; max-height: 150px" /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Ultimate guide to utility-scale PV system losses — RatedPower</div><div class="vlp-block-1 vlp-link-summary">What are solar PV system losses and how can you avoid them to maximize the electrical output from your utility-scale plant project?</div></div></div> <div class="vlp-link-container vlp-layout-basic"><a href="https://ratedpower.com/blog/utility-scale-pv-losses/" class="vlp-link" title="Ultimate guide to utility-scale PV system losses — RatedPower" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="https://assets.ratedpower.com/1694509274-aerial-view-solar-panels-top-building-eco-building-factory-solar-photovoltaic-cell.jpg?auto=format&amp;fit=crop&amp;h=630&amp;w=1200" style={{"maxWidth":"150px","maxHeight":"150px"}} /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Ultimate guide to utility-scale PV system losses — RatedPower</div><div class="vlp-block-1 vlp-link-summary">What are solar PV system losses and how can you avoid them to maximize the electrical output from your utility-scale plant project?</div></div></div>
<h4>Fact 2: Wind farms without energy storage are not that efficient</h4> <h4>Fact 2: Wind farms without energy storage are not that efficient</h4>
<p>Wind farms have a similar problem to solar plants: energy losses due to fluctuating power generation. Imagine a wind farm produces electricity, but the wind does not blow constantly. This means that at certain times the wind turbines generate more electricity than is actually needed, while at other times, when the wind drops, they can supply almost no electricity at all. In both cases, a lot of energy is lost or not used. Without a way to <strong>store surplus energy</strong>, there is a gap between the energy generated and the actual use, which significantly reduces the efficiency of the entire system.The solution to this problem lies in<strong> energy storage systems</strong> such as batteries or pumped storage power plants. These technologies make it possible to store surplus energy when the wind is blowing strongly and therefore more electricity is produced than is required at the moment. This stored energy can then be used on demand when the wind dies down or demand is particularly high. This ensures that all the electricity generated is used efficiently instead of being lost unused. Without these storage technologies, the full potential of wind energy remains untapped and the efficiency of wind farms remains far below their actual value.</p> <p>Wind farms have a similar problem to solar plants: energy losses due to fluctuating power generation. Imagine a wind farm produces electricity, but the wind does not blow constantly. This means that at certain times the wind turbines generate more electricity than is actually needed, while at other times, when the wind drops, they can supply almost no electricity at all. In both cases, a lot of energy is lost or not used. Without a way to <strong>store surplus energy</strong>, there is a gap between the energy generated and the actual use, which significantly reduces the efficiency of the entire system.The solution to this problem lies in<strong> energy storage systems</strong> such as batteries or pumped storage power plants. These technologies make it possible to store surplus energy when the wind is blowing strongly and therefore more electricity is produced than is required at the moment. This stored energy can then be used on demand when the wind dies down or demand is particularly high. This ensures that all the electricity generated is used efficiently instead of being lost unused. Without these storage technologies, the full potential of wind energy remains untapped and the efficiency of wind farms remains far below their actual value.</p>
<p>However, despite their importance, energy storage systems are associated with challenges. High costs and limited capacity continue to make the development and installation of these storage technologies a difficult endeavor. But technological progress has not stood still: New innovations in storage technologies and increasingly improved scalability are making it more and more realistic to equip wind farms with <strong>effective and cost-efficient storage systems</strong>. This is crucial for the future of wind energy, because only by overcoming these challenges can wind energy fully contribute to ensuring a stable and sustainable energy supply.</p> <p>However, despite their importance, energy storage systems are associated with challenges. High costs and limited capacity continue to make the development and installation of these storage technologies a difficult endeavor. But technological progress has not stood still: New innovations in storage technologies and increasingly improved scalability are making it more and more realistic to equip wind farms with <strong>effective and cost-efficient storage systems</strong>. This is crucial for the future of wind energy, because only by overcoming these challenges can wind energy fully contribute to ensuring a stable and sustainable energy supply.</p>
<div class="vlp-link-container vlp-layout-basic"><a href="https://www.solarenergie.de/stromspeicher/arten/stromspeicher-windkraft" class="vlp-link" title="Speicher für Windenergie: Welche Möglichkeiten gibt es?" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="https://assets.solarwatt.de/Resources/Persistent/e084aa09af5f0cdef386088bc558a52d81509cc0/Regenerative%20Energie-1200x628.jpg" style="max-width: 150px; max-height: 150px" /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Speicher für Windenergie: Welche Möglichkeiten gibt es?</div><div class="vlp-block-1 vlp-link-summary">Speicher für Windenergie: Welche Möglichkeiten gibt es? Windkraftanlagen mit Speicher im privaten und im öffentlichen Bereich ✓ Wie kann man Windenergie speichern? Lernen Sie hier bereits existente und sich derzeit in der Forschung befindende Verfahren der Zukunft kennen!</div></div></div> <div class="vlp-link-container vlp-layout-basic"><a href="https://www.solarenergie.de/stromspeicher/arten/stromspeicher-windkraft" class="vlp-link" title="Speicher für Windenergie: Welche Möglichkeiten gibt es?" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="https://assets.solarwatt.de/Resources/Persistent/e084aa09af5f0cdef386088bc558a52d81509cc0/Regenerative%20Energie-1200x628.jpg" style={{"maxWidth":"150px","maxHeight":"150px"}} /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Speicher für Windenergie: Welche Möglichkeiten gibt es?</div><div class="vlp-block-1 vlp-link-summary">Speicher für Windenergie: Welche Möglichkeiten gibt es? Windkraftanlagen mit Speicher im privaten und im öffentlichen Bereich ✓ Wie kann man Windenergie speichern? Lernen Sie hier bereits existente und sich derzeit in der Forschung befindende Verfahren der Zukunft kennen!</div></div></div>
<h4>Fact 3: Power lines can be used as habitats for biodiversity</h4> <h4>Fact 3: Power lines can be used as habitats for biodiversity</h4>
<p>Did you know that power lines &#8211; the high-voltage lines that transport electricity from power plants to our homes and businesses &#8211; can also be used as<strong> habitats for animals and plants</strong>? These areas, which often need to be kept clear to make room for the power lines, provide a valuable opportunity to actively promote biodiversity and contribute to environmental stewardship at the same time.Traditionally, the areas along power lines have often been regarded as “wasteland” with no particular significance. However, innovative approaches to green infrastructure are increasingly creating valuable habitats here. Today, wildflower meadows, bee pastures and shrubs are planted along power lines, providing habitats for many endangered species. These meadows are not only a source of food for bees, butterflies and other pollinators, but also a refuge for birds and small animals that are finding less and less habitat in other parts of the landscape.</p> <p>Did you know that power lines &#8211; the high-voltage lines that transport electricity from power plants to our homes and businesses &#8211; can also be used as<strong> habitats for animals and plants</strong>? These areas, which often need to be kept clear to make room for the power lines, provide a valuable opportunity to actively promote biodiversity and contribute to environmental stewardship at the same time.Traditionally, the areas along power lines have often been regarded as “wasteland” with no particular significance. However, innovative approaches to green infrastructure are increasingly creating valuable habitats here. Today, wildflower meadows, bee pastures and shrubs are planted along power lines, providing habitats for many endangered species. These meadows are not only a source of food for bees, butterflies and other pollinators, but also a refuge for birds and small animals that are finding less and less habitat in other parts of the landscape.</p>

View File

@@ -1,15 +1,6 @@
--- ---
title: 'Focus on wind farm construction: three typical cable challenges' title: 'Focus on wind farm construction: three typical cable challenges'
date: '2025-11-05T10:16:15' date: '2025-11-05T10:16:15'
excerpt: >-
[vc_column column_padding=&#8221;no-extra-padding&#8221;
column_padding_tablet=&#8221;inherit&#8221;
column_padding_phone=&#8221;inherit&#8221;
column_padding_position=&#8221;all&#8221;
column_element_direction_desktop=&#8221;default&#8221;
column_element_spacing=&#8221;10px&#8221;
desktop_text_alignment=&#8221;default&#8221;
tablet_text_alignment=&#8221;default&#8221;&#8230;
featuredImage: /uploads/2025/04/image_fx_-2025-02-20T193520.620.webp featuredImage: /uploads/2025/04/image_fx_-2025-02-20T193520.620.webp
locale: en locale: en
--- ---
@@ -20,7 +11,7 @@ locale: en
<p data-start="836" data-end="1129">Add to this the logistical challenges: <strong data-start="880" data-end="903">large cable drums</strong>, different <a href="https://www.conrad.de/de/ratgeber/handwerk/kabelquerschnitt-berechnen.html" target="_blank" rel="noopener noreferrer nofollow"><strong data-start="922" data-end="944">conductor cross sections</strong></a>, special <strong data-start="956" data-end="972">packaging</strong>, and ever-changing construction site conditions. Without forward planning, you risk bottlenecks and that can delay the entire <a href="https://www.enargus.de/pub/bscw.cgi/d7842-2/*/*/Netzanschluss%20einer%20Windkraftanlage?op=Wiki.getwiki&amp;search=Windpark" target="_blank" rel="noopener noreferrer nofollow"><strong data-start="1085" data-end="1116">grid connection of the wind farm</strong></a>.</p> <p data-start="836" data-end="1129">Add to this the logistical challenges: <strong data-start="880" data-end="903">large cable drums</strong>, different <a href="https://www.conrad.de/de/ratgeber/handwerk/kabelquerschnitt-berechnen.html" target="_blank" rel="noopener noreferrer nofollow"><strong data-start="922" data-end="944">conductor cross sections</strong></a>, special <strong data-start="956" data-end="972">packaging</strong>, and ever-changing construction site conditions. Without forward planning, you risk bottlenecks and that can delay the entire <a href="https://www.enargus.de/pub/bscw.cgi/d7842-2/*/*/Netzanschluss%20einer%20Windkraftanlage?op=Wiki.getwiki&amp;search=Windpark" target="_blank" rel="noopener noreferrer nofollow"><strong data-start="1085" data-end="1116">grid connection of the wind farm</strong></a>.</p>
<p data-start="1131" data-end="1351" data-is-last-node="" data-is-only-node="">In this article, we look at the<strong data-start="1168" data-end="1215"> 3 biggest challenges in wind farm construction</strong> and show how proactive logistics and the right cable strategy can help you stay on schedule and maximize efficiency.</p> <p data-start="1131" data-end="1351" data-is-last-node="" data-is-only-node="">In this article, we look at the<strong data-start="1168" data-end="1215"> 3 biggest challenges in wind farm construction</strong> and show how proactive logistics and the right cable strategy can help you stay on schedule and maximize efficiency.</p>
<p data-start="1131" data-end="1351" data-is-last-node="" data-is-only-node="">Find out why onshore wind farms are a crucial pillar of the energy transition here:</p> <p data-start="1131" data-end="1351" data-is-last-node="" data-is-only-node="">Find out why onshore wind farms are a crucial pillar of the energy transition here:</p>
<div class="vlp-link-container vlp-layout-basic"><a href="https://www.enbw.com/unternehmen/themen/windkraft/onshore-wind-pfeiler-der-energiewende.html" class="vlp-link" title="Onshore-Windenergie als Pfeiler der Energiewende | EnBW" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="https://www.enbw.com/media/image-proxy/1600x914,q70,focus50x49,zoom1.0/https://www.enbw.com/media/presse/images/newsroom/onshore-windpark-langenburg-7zu4_1701415033580.jpg" style="max-width: 150px; max-height: 150px" /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Onshore-Windenergie als Pfeiler der Energiewende | EnBW</div><div class="vlp-block-1 vlp-link-summary">Viele Faktoren haben den Bau von Windenergieanlagen in den letzten Jahren gebremst. Lesen Sie hier die Gründe!</div></div></div> <div class="vlp-link-container vlp-layout-basic"><a href="https://www.enbw.com/unternehmen/themen/windkraft/onshore-wind-pfeiler-der-energiewende.html" class="vlp-link" title="Onshore-Windenergie als Pfeiler der Energiewende | EnBW" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="https://www.enbw.com/media/image-proxy/1600x914,q70,focus50x49,zoom1.0/https://www.enbw.com/media/presse/images/newsroom/onshore-windpark-langenburg-7zu4_1701415033580.jpg" style={{"maxWidth":"150px","maxHeight":"150px"}} /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Onshore-Windenergie als Pfeiler der Energiewende | EnBW</div><div class="vlp-block-1 vlp-link-summary">Viele Faktoren haben den Bau von Windenergieanlagen in den letzten Jahren gebremst. Lesen Sie hier die Gründe!</div></div></div>
<h2 data-start="975" data-end="1032">Challenge 1: Tight construction timelines and fixed deadlines</h2> <h2 data-start="975" data-end="1032">Challenge 1: Tight construction timelines and fixed deadlines</h2>
<p data-start="40" data-end="405">In <strong data-start="43" data-end="58">wind farm construction</strong>, schedules are rarely flexible. Any delay in <a href="https://www.eef.de/news/die-infrastruktur-hinter-windparks" target="_blank" rel="noopener noreferrer nofollow"><strong data-start="116" data-end="134">cable laying</strong></a> directly impacts the entire build process from foundation and tower installation to commissioning. Since <strong data-start="257" data-end="281">grid connection deadlines</strong> are usually contractually binding, a missing <a href="/de/stromkabel/mittelspannungskabel/"><strong data-start="336" data-end="360">medium-voltage cable</strong></a> can quickly lead to costly site downtime.</p> <p data-start="40" data-end="405">In <strong data-start="43" data-end="58">wind farm construction</strong>, schedules are rarely flexible. Any delay in <a href="https://www.eef.de/news/die-infrastruktur-hinter-windparks" target="_blank" rel="noopener noreferrer nofollow"><strong data-start="116" data-end="134">cable laying</strong></a> directly impacts the entire build process from foundation and tower installation to commissioning. Since <strong data-start="257" data-end="281">grid connection deadlines</strong> are usually contractually binding, a missing <a href="/de/stromkabel/mittelspannungskabel/"><strong data-start="336" data-end="360">medium-voltage cable</strong></a> can quickly lead to costly site downtime.</p>
@@ -69,7 +60,7 @@ locale: en
</table> </table>
<p data-start="1455" data-end="1694">With precise <a href="https://www.a-eberle.de/infobrief/infobrief-20/" target="_blank" rel="noopener noreferrer nofollow"><strong data-start="1486" data-end="1506">cable capacity</strong></a> planning and responsive logistics, even high-pressure timelines can be handled efficiently. This ensures the <strong data-start="1615" data-end="1646">wind farms grid connection</strong> stays on schedule and energy flows reliably.</p> <p data-start="1455" data-end="1694">With precise <a href="https://www.a-eberle.de/infobrief/infobrief-20/" target="_blank" rel="noopener noreferrer nofollow"><strong data-start="1486" data-end="1506">cable capacity</strong></a> planning and responsive logistics, even high-pressure timelines can be handled efficiently. This ensures the <strong data-start="1615" data-end="1646">wind farms grid connection</strong> stays on schedule and energy flows reliably.</p>
<p data-start="1455" data-end="1694">Want to know which cable types are used in wind farms? Check out this article:</p> <p data-start="1455" data-end="1694">Want to know which cable types are used in wind farms? Check out this article:</p>
<div class="vlp-link-container vlp-layout-basic"><a href="https://wind-turbine.com/magazin/ratgeber/250713/welche-arten-von-kabeln-benoetigt-man-fuer-den-bau-eines-windparks.html" class="vlp-link" title="Welche Arten von Kabeln benötigt man für den Bau eines Windparks?" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="https://wind-turbine.com/i/53689/68738caa5e58ffdf06031cf2/2/1200/630/68738c85497af_KabelfreinenWindparkpng.png" style="max-width: 150px; max-height: 150px" /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Welche Arten von Kabeln benötigt man für den Bau eines Windparks?</div><div class="vlp-block-1 vlp-link-summary">Die Verkabelung ist ein zentrales Element jeder Windkraftanlage und beeinflusst maßgeblich die Effizienz, Sicherheit und Wirtschaftlichkeit eines Windparks.…</div></div></div> <div class="vlp-link-container vlp-layout-basic"><a href="https://wind-turbine.com/magazin/ratgeber/250713/welche-arten-von-kabeln-benoetigt-man-fuer-den-bau-eines-windparks.html" class="vlp-link" title="Welche Arten von Kabeln benötigt man für den Bau eines Windparks?" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="https://wind-turbine.com/i/53689/68738caa5e58ffdf06031cf2/2/1200/630/68738c85497af_KabelfreinenWindparkpng.png" style={{"maxWidth":"150px","maxHeight":"150px"}} /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Welche Arten von Kabeln benötigt man für den Bau eines Windparks?</div><div class="vlp-block-1 vlp-link-summary">Die Verkabelung ist ein zentrales Element jeder Windkraftanlage und beeinflusst maßgeblich die Effizienz, Sicherheit und Wirtschaftlichkeit eines Windparks.…</div></div></div>
<h2 data-start="2103" data-end="2157">Challenge 2: Large delivery volumes and specialized packaging</h2> <h2 data-start="2103" data-end="2157">Challenge 2: Large delivery volumes and specialized packaging</h2>
<p data-start="54" data-end="355">A modern <strong data-start="67" data-end="87">onshore wind farm</strong> requires several kilometers of <strong data-start="115" data-end="139">medium-voltage cables</strong> often of the type <a href="/de/produkte/stromkabel/mittelspannungskabel/na2xsf2y-2/"><strong data-start="157" data-end="171">NA2XS(F)2Y</strong></a>, <a href="/de/produkte/stromkabel/mittelspannungskabel/n2xsy-2/"><strong data-start="173" data-end="182">N2XSY</strong></a> or <a href="/de/produkte/stromkabel/niederspannungskabel/nayy-2/"><strong data-start="188" data-end="196">NAYY</strong></a>. These cables weigh several tons per drum and require smart logistics to avoid damage, confusion and costly delays.</p> <p data-start="54" data-end="355">A modern <strong data-start="67" data-end="87">onshore wind farm</strong> requires several kilometers of <strong data-start="115" data-end="139">medium-voltage cables</strong> often of the type <a href="/de/produkte/stromkabel/mittelspannungskabel/na2xsf2y-2/"><strong data-start="157" data-end="171">NA2XS(F)2Y</strong></a>, <a href="/de/produkte/stromkabel/mittelspannungskabel/n2xsy-2/"><strong data-start="173" data-end="182">N2XSY</strong></a> or <a href="/de/produkte/stromkabel/niederspannungskabel/nayy-2/"><strong data-start="188" data-end="196">NAYY</strong></a>. These cables weigh several tons per drum and require smart logistics to avoid damage, confusion and costly delays.</p>
@@ -148,7 +139,7 @@ locale: en
</ul> </ul>
<p data-start="1203" data-end="1546">Short-term changes arent the exception theyre part of everyday life in <strong data-start="1278" data-end="1293">wind farm construction</strong>. What matters is being prepared. A well-designed <a href="https://bwo-offshorewind.de/pressemitteilung-roadmap-ist-wichtiger-schritt-fuer-resiliente-lieferketten/" target="_blank" rel="noopener noreferrer nofollow"><strong data-start="1358" data-end="1373">supply chain</strong></a>, clear communication, and agile warehousing structures ensure the project stays on schedule and the wind farm connects to the grid on time.</p> <p data-start="1203" data-end="1546">Short-term changes arent the exception theyre part of everyday life in <strong data-start="1278" data-end="1293">wind farm construction</strong>. What matters is being prepared. A well-designed <a href="https://bwo-offshorewind.de/pressemitteilung-roadmap-ist-wichtiger-schritt-fuer-resiliente-lieferketten/" target="_blank" rel="noopener noreferrer nofollow"><strong data-start="1358" data-end="1373">supply chain</strong></a>, clear communication, and agile warehousing structures ensure the project stays on schedule and the wind farm connects to the grid on time.</p>
<p data-start="1203" data-end="1546">Avoid delays or issues during your wind power project by understanding early on why NABU may file objections to certain sites:</p> <p data-start="1203" data-end="1546">Avoid delays or issues during your wind power project by understanding early on why NABU may file objections to certain sites:</p>
<div class="vlp-link-container vlp-layout-basic"><a href="https://www.nabu.de/umwelt-und-ressourcen/energie/erneuerbare-energien-energiewende/windenergie/26913.html" class="vlp-link" title="Wann klagt der NABU gegen Windkraftprojekte?" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="https://www.nabu.de/imperia/md/nabu/images/umwelt/energie/energietraeger/windkraft/161125-nabu-windrad-allgaeu-heidrun-burchard.jpeg" style="max-width: 150px; max-height: 150px" /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Wann klagt der NABU gegen Windkraftprojekte?</div><div class="vlp-block-1 vlp-link-summary">45 Klagen wurden wegen Fehlplanungen bei Windenergie zwischen 2010 und 2019 vom NABU auf den Weg gebracht. Nicht weil der Windenergieausbau aufgehalten werden soll, sondern weil immer wieder Vorhaben und Planungen eklatant gegen Naturschutzrecht verstoßen.</div></div></div> <div class="vlp-link-container vlp-layout-basic"><a href="https://www.nabu.de/umwelt-und-ressourcen/energie/erneuerbare-energien-energiewende/windenergie/26913.html" class="vlp-link" title="Wann klagt der NABU gegen Windkraftprojekte?" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="https://www.nabu.de/imperia/md/nabu/images/umwelt/energie/energietraeger/windkraft/161125-nabu-windrad-allgaeu-heidrun-burchard.jpeg" style={{"maxWidth":"150px","maxHeight":"150px"}} /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Wann klagt der NABU gegen Windkraftprojekte?</div><div class="vlp-block-1 vlp-link-summary">45 Klagen wurden wegen Fehlplanungen bei Windenergie zwischen 2010 und 2019 vom NABU auf den Weg gebracht. Nicht weil der Windenergieausbau aufgehalten werden soll, sondern weil immer wieder Vorhaben und Planungen eklatant gegen Naturschutzrecht verstoßen.</div></div></div>
<h2 data-start="4835" data-end="4892">Quality and sustainability as success factors</h2> <h2 data-start="4835" data-end="4892">Quality and sustainability as success factors</h2>
<p data-start="56" data-end="396">In addition to time and logistics, <a href="https://www.windkraft-journal.de/2025/07/14/planungsempfehlung-bei-der-verkabelung-von-windparks-durch-wind-turbine-com/" target="_blank" rel="noopener noreferrer nofollow"><strong data-start="96" data-end="113">cable quality</strong></a> plays a decisive role in the long-term performance of a <strong data-start="178" data-end="191">wind farm</strong>. After all, the installed <strong data-start="230" data-end="273"><a href="/de/stromkabel/mittelspannungskabel/">medium-voltage</a> and <a href="/de/stromkabel/hochspannungskabel/">high-voltage cables</a></strong> are expected to transmit energy reliably for decades even under extreme weather and changing load conditions.</p> <p data-start="56" data-end="396">In addition to time and logistics, <a href="https://www.windkraft-journal.de/2025/07/14/planungsempfehlung-bei-der-verkabelung-von-windparks-durch-wind-turbine-com/" target="_blank" rel="noopener noreferrer nofollow"><strong data-start="96" data-end="113">cable quality</strong></a> plays a decisive role in the long-term performance of a <strong data-start="178" data-end="191">wind farm</strong>. After all, the installed <strong data-start="230" data-end="273"><a href="/de/stromkabel/mittelspannungskabel/">medium-voltage</a> and <a href="/de/stromkabel/hochspannungskabel/">high-voltage cables</a></strong> are expected to transmit energy reliably for decades even under extreme weather and changing load conditions.</p>

View File

@@ -3,15 +3,6 @@ title: >-
From smart to sustainable: this is what the energy industry will look like in From smart to sustainable: this is what the energy industry will look like in
the near future the near future
date: '2025-03-24T11:00:44' date: '2025-03-24T11:00:44'
excerpt: >-
[vc_column column_padding=&#8221;no-extra-padding&#8221;
column_padding_tablet=&#8221;inherit&#8221;
column_padding_phone=&#8221;inherit&#8221;
column_padding_position=&#8221;all&#8221;
column_element_direction_desktop=&#8221;default&#8221;
column_element_spacing=&#8221;10px&#8221;
desktop_text_alignment=&#8221;default&#8221;
tablet_text_alignment=&#8221;default&#8221;&#8230;
featuredImage: /uploads/2025/02/image_fx_-7.webp featuredImage: /uploads/2025/02/image_fx_-7.webp
locale: en locale: en
--- ---

View File

@@ -1,15 +1,6 @@
--- ---
title: Green energy starts underground &#8211; and with a plan title: Green energy starts underground &#8211; and with a plan
date: '2025-05-22T09:20:07' date: '2025-05-22T09:20:07'
excerpt: >-
[vc_column column_padding=&#8221;no-extra-padding&#8221;
column_padding_tablet=&#8221;inherit&#8221;
column_padding_phone=&#8221;inherit&#8221;
column_padding_position=&#8221;all&#8221;
column_element_direction_desktop=&#8221;default&#8221;
column_element_spacing=&#8221;10px&#8221;
desktop_text_alignment=&#8221;default&#8221;
tablet_text_alignment=&#8221;default&#8221;&#8230;
featuredImage: /uploads/2025/02/image_fx_-9.webp featuredImage: /uploads/2025/02/image_fx_-9.webp
locale: en locale: en
--- ---
@@ -78,7 +69,7 @@ locale: en
</div> </div>
<p class="" data-start="2502" data-end="2671">Professional planning not only ensures security of supply, but also reduces operating costs in the long term and enables flexible responses to grid requirements.</p> <p class="" data-start="2502" data-end="2671">Professional planning not only ensures security of supply, but also reduces operating costs in the long term and enables flexible responses to grid requirements.</p>
<p data-start="2502" data-end="2671">You can find more information here on how wind energy basically works:</p> <p data-start="2502" data-end="2671">You can find more information here on how wind energy basically works:</p>
<div class="vlp-link-container vlp-layout-basic"><a href="https://www.e-werk-mittelbaden.de/wie-funktioniert-windenergie" class="vlp-link" title="Wie funktioniert Windenergie? - Einfach erklärt | E-Werk Mittelbaden" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="https://www.e-werk-mittelbaden.de/sites/default/files/media_image/2024-12/DJI_20231105012629_0029_D-HDR.jpg" style="max-width: 150px; max-height: 150px" /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Wie funktioniert Windenergie? - Einfach erklärt | E-Werk Mittelbaden</div><div class="vlp-block-1 vlp-link-summary">Erfahren Sie, wie Windenergie funktioniert und wie sie zur nachhaltigen Energieversorgung beiträgt. Jetzt informieren!</div></div></div></div> <div class="vlp-link-container vlp-layout-basic"><a href="https://www.e-werk-mittelbaden.de/wie-funktioniert-windenergie" class="vlp-link" title="Wie funktioniert Windenergie? - Einfach erklärt | E-Werk Mittelbaden" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="https://www.e-werk-mittelbaden.de/sites/default/files/media_image/2024-12/DJI_20231105012629_0029_D-HDR.jpg" style={{"maxWidth":"150px","maxHeight":"150px"}} /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Wie funktioniert Windenergie? - Einfach erklärt | E-Werk Mittelbaden</div><div class="vlp-block-1 vlp-link-summary">Erfahren Sie, wie Windenergie funktioniert und wie sie zur nachhaltigen Energieversorgung beiträgt. Jetzt informieren!</div></div></div></div>
</div> </div>
</div> </div>
</div> </div>
@@ -124,7 +115,7 @@ locale: en
<p class="" data-start="1111" data-end="1404">This is not only about <strong data-start="1138" data-end="1161">ecological aspects</strong> a planned dismantling also makes sense <strong data-start="1169" data-end="1183">economically</strong>. Projects that are <strong data-start="1232" data-end="1261">systematically designed for dismantling</strong> avoid high <strong data-start="1293" data-end="1314">disposal costs</strong> and meet future <strong data-start="1339" data-end="1371">regulatory requirements</strong> much more easily.</p> <p class="" data-start="1111" data-end="1404">This is not only about <strong data-start="1138" data-end="1161">ecological aspects</strong> a planned dismantling also makes sense <strong data-start="1169" data-end="1183">economically</strong>. Projects that are <strong data-start="1232" data-end="1261">systematically designed for dismantling</strong> avoid high <strong data-start="1293" data-end="1314">disposal costs</strong> and meet future <strong data-start="1339" data-end="1371">regulatory requirements</strong> much more easily.</p>
<p class="" data-start="1406" data-end="1639">Overall, it becomes clear: <strong data-start="1428" data-end="1478">Sustainability does not end at the grid connection.</strong> It covers the <strong data-start="1495" data-end="1520">entire life cycle</strong> right up to the <strong data-start="1535" data-end="1565">last recycled cable</strong>. Those who think about <strong data-start="1571" data-end="1601">infrastructure holistically</strong> think it through <strong data-start="1619" data-end="1638">to the end</strong>.</p> <p class="" data-start="1406" data-end="1639">Overall, it becomes clear: <strong data-start="1428" data-end="1478">Sustainability does not end at the grid connection.</strong> It covers the <strong data-start="1495" data-end="1520">entire life cycle</strong> right up to the <strong data-start="1535" data-end="1565">last recycled cable</strong>. Those who think about <strong data-start="1571" data-end="1601">infrastructure holistically</strong> think it through <strong data-start="1619" data-end="1638">to the end</strong>.</p>
<p data-start="1406" data-end="1639">In the following article, you can find out how, for example, wind turbines are recycled:</p> <p data-start="1406" data-end="1639">In the following article, you can find out how, for example, wind turbines are recycled:</p>
<div class="vlp-link-container vlp-layout-basic"><a href="https://www.enbw.com/unternehmen/themen/windkraft/windrad-recycling.html" class="vlp-link" title="Recycling von Windrädern | EnBW" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="https://www.enbw.com/media/image-proxy/1600x914,q70,focus60x67,zoom1.45/https://www.enbw.com/media/presse/images/newsroom/windenergie/rueckbau-windpark-hemme-3_1743678993586.jpg" style="max-width: 150px; max-height: 150px" /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Recycling von Windrädern | EnBW</div><div class="vlp-block-1 vlp-link-summary">Wie funktioniert das Recycling von Windrädern? Erfahren Sie mehr über Herausforderungen und die neuesten Methoden.</div></div></div> <div class="vlp-link-container vlp-layout-basic"><a href="https://www.enbw.com/unternehmen/themen/windkraft/windrad-recycling.html" class="vlp-link" title="Recycling von Windrädern | EnBW" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="https://www.enbw.com/media/image-proxy/1600x914,q70,focus60x67,zoom1.45/https://www.enbw.com/media/presse/images/newsroom/windenergie/rueckbau-windpark-hemme-3_1743678993586.jpg" style={{"maxWidth":"150px","maxHeight":"150px"}} /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Recycling von Windrädern | EnBW</div><div class="vlp-block-1 vlp-link-summary">Wie funktioniert das Recycling von Windrädern? Erfahren Sie mehr über Herausforderungen und die neuesten Methoden.</div></div></div>
<div class="flex-shrink-0 flex flex-col relative items-end"> <div class="flex-shrink-0 flex flex-col relative items-end">
<div class="pt-0"> <div class="pt-0">

View File

@@ -3,15 +3,6 @@ title: >-
How the cable industry is driving sustainability and renewable energies How the cable industry is driving sustainability and renewable energies
forward forward
date: '2025-04-14T10:00:49' date: '2025-04-14T10:00:49'
excerpt: >-
[vc_column column_padding=&#8221;no-extra-padding&#8221;
column_padding_tablet=&#8221;inherit&#8221;
column_padding_phone=&#8221;inherit&#8221;
column_padding_position=&#8221;all&#8221;
column_element_direction_desktop=&#8221;default&#8221;
column_element_spacing=&#8221;10px&#8221;
desktop_text_alignment=&#8221;default&#8221;
tablet_text_alignment=&#8221;default&#8221;&#8230;
featuredImage: /uploads/2025/02/image_fx_-2.webp featuredImage: /uploads/2025/02/image_fx_-2.webp
locale: en locale: en
--- ---
@@ -86,4 +77,4 @@ locale: en
<p class="" data-start="5590" data-end="5821">Cables are no side note they are the nervous system of the energy transition. They connect <strong data-start="5678" data-end="5752">ideas with reality, sources with consumers, visions with feasibility</strong>. And they do so discreetly, reliably, and for decades to come.</p> <p class="" data-start="5590" data-end="5821">Cables are no side note they are the nervous system of the energy transition. They connect <strong data-start="5678" data-end="5752">ideas with reality, sources with consumers, visions with feasibility</strong>. And they do so discreetly, reliably, and for decades to come.</p>
<p class="" data-start="5823" data-end="6094">Anyone thinking about <strong data-start="5833" data-end="5857">renewable energy</strong> today should also consider what keeps that energy moving: <strong data-start="5940" data-end="5963">the cable industry.</strong> It doesnt just deliver copper and insulation it provides solutions that make our <strong data-start="6056" data-end="6073">green future</strong> possible in the first place.</p> <p class="" data-start="5823" data-end="6094">Anyone thinking about <strong data-start="5833" data-end="5857">renewable energy</strong> today should also consider what keeps that energy moving: <strong data-start="5940" data-end="5963">the cable industry.</strong> It doesnt just deliver copper and insulation it provides solutions that make our <strong data-start="6056" data-end="6073">green future</strong> possible in the first place.</p>
<p class="" data-start="5823" data-end="6094">Find out how you can contribute to a sustainable energy supply in the following article.</p> <p class="" data-start="5823" data-end="6094">Find out how you can contribute to a sustainable energy supply in the following article.</p>
<div class="vlp-link-container vlp-layout-basic"><a href="https://money-for-future.com/nachhaltige-energieversorgung-erneuerbare-energie" class="vlp-link" title="Nachhaltige Energieversor­gung und erneuerbare Energie erklärt" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="https://money-for-future.com/wp-content/uploads/2022/01/Image-153-1.jpg" style="max-width: 150px; max-height: 150px" /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Nachhaltige Energieversor­gung und erneuerbare Energie erklärt</div><div class="vlp-block-1 vlp-link-summary">Nachhaltige Energieversor­gung. Was kann ich tun, um die Energiewende voranzubringen? 7 Schritte zu einer nachhaltigen Lebensweise.</div></div></div> <div class="vlp-link-container vlp-layout-basic"><a href="https://money-for-future.com/nachhaltige-energieversorgung-erneuerbare-energie" class="vlp-link" title="Nachhaltige Energieversor­gung und erneuerbare Energie erklärt" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="https://money-for-future.com/wp-content/uploads/2022/01/Image-153-1.jpg" style={{"maxWidth":"150px","maxHeight":"150px"}} /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Nachhaltige Energieversor­gung und erneuerbare Energie erklärt</div><div class="vlp-block-1 vlp-link-summary">Nachhaltige Energieversor­gung. Was kann ich tun, um die Energiewende voranzubringen? 7 Schritte zu einer nachhaltigen Lebensweise.</div></div></div>

View File

@@ -1,15 +1,6 @@
--- ---
title: How the right cables quietly power the green energy revolution title: How the right cables quietly power the green energy revolution
date: '2025-01-27T11:30:17' date: '2025-01-27T11:30:17'
excerpt: >-
[vc_column column_padding=&#8221;no-extra-padding&#8221;
column_padding_tablet=&#8221;inherit&#8221;
column_padding_phone=&#8221;inherit&#8221;
column_padding_position=&#8221;all&#8221;
column_element_direction_desktop=&#8221;default&#8221;
column_element_spacing=&#8221;10px&#8221;
desktop_text_alignment=&#8221;default&#8221;
tablet_text_alignment=&#8221;default&#8221;&#8230;
featuredImage: >- featuredImage: >-
/uploads/2025/01/technicians-inspecting-wind-turbines-in-a-green-en-2024-12-09-01-25-20-utc-scaled.webp /uploads/2025/01/technicians-inspecting-wind-turbines-in-a-green-en-2024-12-09-01-25-20-utc-scaled.webp
locale: en locale: en

View File

@@ -1,14 +1,6 @@
--- ---
title: How to choose the right cable for your next project title: How to choose the right cable for your next project
date: '2019-09-17T17:40:09' date: '2019-09-17T17:40:09'
excerpt: >-
[vc_column column_padding=&#8221;no-extra-padding&#8221;
column_padding_tablet=&#8221;inherit&#8221;
column_padding_phone=&#8221;inherit&#8221;
column_padding_position=&#8221;all&#8221;
column_element_direction_desktop=&#8221;default&#8221;
column_element_spacing=&#8221;10px&#8221;
desktop_text_alignment=&#8221;default&#8221;&#8230;
featuredImage: /uploads/2024/11/low-voltage-category.webp featuredImage: /uploads/2024/11/low-voltage-category.webp
locale: en locale: en
--- ---

View File

@@ -1,14 +1,6 @@
--- ---
title: Is wind energy really enough? A deeper dive behind the headlines title: Is wind energy really enough? A deeper dive behind the headlines
date: '2025-02-03T11:30:36' date: '2025-02-03T11:30:36'
excerpt: >-
[vc_column column_padding=&#8221;no-extra-padding&#8221;
column_padding_tablet=&#8221;inherit&#8221;
column_padding_phone=&#8221;inherit&#8221;
column_padding_position=&#8221;all&#8221;
column_element_direction_desktop=&#8221;default&#8221;
column_element_spacing=&#8221;10px&#8221;
desktop_text_alignment=&#8221;default&#8221;&#8230;
featuredImage: >- featuredImage: >-
/uploads/2025/01/offshore-wind-power-and-energy-farm-with-many-wind-2023-11-27-04-51-29-utc-scaled.webp /uploads/2025/01/offshore-wind-power-and-energy-farm-with-many-wind-2023-11-27-04-51-29-utc-scaled.webp
locale: en locale: en

View File

@@ -1,14 +1,6 @@
--- ---
title: KLZ in the Directory of Wind Energy 2025 title: KLZ in the Directory of Wind Energy 2025
date: '2025-01-01T10:54:11' date: '2025-01-01T10:54:11'
excerpt: >-
[vc_column column_padding=&#8221;no-extra-padding&#8221;
column_padding_tablet=&#8221;inherit&#8221;
column_padding_phone=&#8221;inherit&#8221;
column_padding_position=&#8221;all&#8221;
column_element_direction_desktop=&#8221;default&#8221;
column_element_spacing=&#8221;10px&#8221;
desktop_text_alignment=&#8221;default&#8221;&#8230;
featuredImage: /uploads/2025/01/klz-directory-2-scaled.webp featuredImage: /uploads/2025/01/klz-directory-2-scaled.webp
locale: en locale: en
--- ---
@@ -17,7 +9,7 @@ locale: en
<h3>Whats the Directory of Wind Energy?</h3> <h3>Whats the Directory of Wind Energy?</h3>
<p>The <em>Directory of Wind Energy 2025</em> is the ultimate reference guide for the wind energy industry. With over 200 pages of insights, company listings, and industry contacts, its the resource planners, developers, and decision-makers use to connect with trusted suppliers and service providers. Covering everything from turbine manufacturers to certification companies, its a compact treasure trove of knowledge, both in print and online.</p> <p>The <em>Directory of Wind Energy 2025</em> is the ultimate reference guide for the wind energy industry. With over 200 pages of insights, company listings, and industry contacts, its the resource planners, developers, and decision-makers use to connect with trusted suppliers and service providers. Covering everything from turbine manufacturers to certification companies, its a compact treasure trove of knowledge, both in print and online.</p>
<p>Now, KLZ is part of this trusted network, making it even easier for industry professionals to find us.</p> <p>Now, KLZ is part of this trusted network, making it even easier for industry professionals to find us.</p>
<div class="vlp-link-container vlp-layout-basic"><a href="https://www.erneuerbareenergien.de/" class="vlp-link" title="Erneuerbare Energien - Das Magazin für die Energiewende mit Wind-, Solar- und Bioenergie" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="https://www.erneuerbareenergien.de/sites/default/files/styles/teaser_standard__xs/public/aurora/2024/12/414535.jpeg?itok=WJmtgX-q" style="max-width: 150px; max-height: 150px" /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Erneuerbare Energien - Das Magazin für die Energiewende mit Wind-, Solar- und Bioenergie</div><div class="vlp-block-1 vlp-link-summary">Heft 01-2025</div></div></div> <div class="vlp-link-container vlp-layout-basic"><a href="https://www.erneuerbareenergien.de/" class="vlp-link" title="Erneuerbare Energien - Das Magazin für die Energiewende mit Wind-, Solar- und Bioenergie" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="https://www.erneuerbareenergien.de/sites/default/files/styles/teaser_standard__xs/public/aurora/2024/12/414535.jpeg?itok=WJmtgX-q" style={{"maxWidth":"150px","maxHeight":"150px"}} /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Erneuerbare Energien - Das Magazin für die Energiewende mit Wind-, Solar- und Bioenergie</div><div class="vlp-block-1 vlp-link-summary">Heft 01-2025</div></div></div>
<h3>Why were included</h3> <h3>Why were included</h3>
<p>Our medium voltage cables, like the <strong>NA2XS(F)2Y</strong>, have become essential in wind parks throughout Germany and the Netherlands. These cables play a critical role in transmitting electricity from wind turbines to substations, ensuring safe and reliable energy flow under the most demanding conditions.</p> <p>Our medium voltage cables, like the <strong>NA2XS(F)2Y</strong>, have become essential in wind parks throughout Germany and the Netherlands. These cables play a critical role in transmitting electricity from wind turbines to substations, ensuring safe and reliable energy flow under the most demanding conditions.</p>

View File

@@ -1,15 +1,6 @@
--- ---
title: Shortage of NA2XSF2Y? We have the three-core medium-voltage cable title: Shortage of NA2XSF2Y? We have the three-core medium-voltage cable
date: '2025-08-14T08:46:52' date: '2025-08-14T08:46:52'
excerpt: >-
[vc_column column_padding=&#8221;no-extra-padding&#8221;
column_padding_tablet=&#8221;inherit&#8221;
column_padding_phone=&#8221;inherit&#8221;
column_padding_position=&#8221;all&#8221;
column_element_direction_desktop=&#8221;default&#8221;
column_element_spacing=&#8221;10px&#8221;
desktop_text_alignment=&#8221;default&#8221;
tablet_text_alignment=&#8221;default&#8221;&#8230;
featuredImage: /uploads/2025/08/NA2XSF2X_3x1x300_RM-25_12-20kV-3.webp featuredImage: /uploads/2025/08/NA2XSF2X_3x1x300_RM-25_12-20kV-3.webp
locale: en locale: en
--- ---
@@ -53,7 +44,7 @@ locale: en
</ul> </ul>
<p>Thats why the <strong>NA2XSF2Y 3x1x</strong> is the safe choice for long-lasting underground energy infrastructure.</p> <p>Thats why the <strong>NA2XSF2Y 3x1x</strong> is the safe choice for long-lasting underground energy infrastructure.</p>
<p>More info on overhead lines vs. underground cables can be found here:</p> <p>More info on overhead lines vs. underground cables can be found here:</p>
<div class="vlp-link-container vlp-layout-basic"><a href="https://www.hochspannungsblog.at/wissenswertes/netzaufbau/vergleich-freileitung-erdkabel" class="vlp-link" title="Freileitung und Erdkabel sind „Stand der Technik“" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="https://www.hochspannungsblog.at/201210-netzbau-110kv-wegscheid-mast-kabelanschluss-1723.jpg?ch=dhsowxyq&amp;:hp=9;1;de" style="max-width: 150px; max-height: 150px" /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Freileitung und Erdkabel sind „Stand der Technik“</div><div class="vlp-block-1 vlp-link-summary">Freileitung oder Erdkabel? Wir erklären Ihnen die Unterschiede und Möglichkeiten, aber auch warum was möglich ist und warum was nicht.</div></div></div> <div class="vlp-link-container vlp-layout-basic"><a href="https://www.hochspannungsblog.at/wissenswertes/netzaufbau/vergleich-freileitung-erdkabel" class="vlp-link" title="Freileitung und Erdkabel sind „Stand der Technik“" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="https://www.hochspannungsblog.at/201210-netzbau-110kv-wegscheid-mast-kabelanschluss-1723.jpg?ch=dhsowxyq&amp;:hp=9;1;de" style={{"maxWidth":"150px","maxHeight":"150px"}} /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Freileitung und Erdkabel sind „Stand der Technik“</div><div class="vlp-block-1 vlp-link-summary">Freileitung oder Erdkabel? Wir erklären Ihnen die Unterschiede und Möglichkeiten, aber auch warum was möglich ist und warum was nicht.</div></div></div>
<h2>Typical applications for the NA2XSF2Y</h2> <h2>Typical applications for the NA2XSF2Y</h2>
<h3>Grid connection in wind power plants</h3> <h3>Grid connection in wind power plants</h3>
@@ -107,7 +98,7 @@ locale: en
<p>While many only reorder once the market is already sold out, we focus on proactive stockpiling. We secured key types such as the popular three-core medium-voltage cable <strong><a href="/products/power-cables/medium-voltage-cables/na2xsf2y/">NA2XSF2Y</a> 3x1x</strong> in relevant quantities early on because we know how critical these are for grid expansion.</p> <p>While many only reorder once the market is already sold out, we focus on proactive stockpiling. We secured key types such as the popular three-core medium-voltage cable <strong><a href="/products/power-cables/medium-voltage-cables/na2xsf2y/">NA2XSF2Y</a> 3x1x</strong> in relevant quantities early on because we know how critical these are for grid expansion.</p>
<p><strong>And thats exactly what makes the difference now: we have these cables as a supplier and they are available with us.</strong></p> <p><strong>And thats exactly what makes the difference now: we have these cables as a supplier and they are available with us.</strong></p>
<p>All details and technical data can be found here:</p> <p>All details and technical data can be found here:</p>
<div class="vlp-link-container vlp-layout-basic"><a href="/products/power-cables/medium-voltage-cables/na2xsf2y/" class="vlp-link" title="NA2XS(F)2Y Cables 12kV | KLZ" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="/uploads/2025/01/NA2XSF2Y-3-scaled.webp" style="max-width: 150px; max-height: 150px" /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">NA2XS(F)2Y Cables 12kV | KLZ</div><div class="vlp-block-1 vlp-link-summary">NA2XS(F)2Y cables, 6-30 kV, Al conductor, XLPE insulation, IEC compliant, ideal for renewable energy, industrial use. High durability.</div></div></div> <div class="vlp-link-container vlp-layout-basic"><a href="/products/power-cables/medium-voltage-cables/na2xsf2y/" class="vlp-link" title="NA2XS(F)2Y Cables 12kV | KLZ" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="/uploads/2025/01/NA2XSF2Y-3-scaled.webp" style={{"maxWidth":"150px","maxHeight":"150px"}} /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">NA2XS(F)2Y Cables 12kV | KLZ</div><div class="vlp-block-1 vlp-link-summary">NA2XS(F)2Y cables, 6-30 kV, Al conductor, XLPE insulation, IEC compliant, ideal for renewable energy, industrial use. High durability.</div></div></div>
<h3>Logistics that think ahead</h3> <h3>Logistics that think ahead</h3>
<p>Our logistics processes are designed for speed and flexibility. With our warehouse directly connected to Germany and the Netherlands, we can supply construction sites in the shortest possible time.</p> <p>Our logistics processes are designed for speed and flexibility. With our warehouse directly connected to Germany and the Netherlands, we can supply construction sites in the shortest possible time.</p>
<ul> <ul>
@@ -120,9 +111,9 @@ locale: en
<p>We rely on multiple supply chains and have deliberately built up warehouse capacities. This ensures that even during industry-wide shortages, we can still deliver without improvisation. Even types such as the sought-after three-core cable <strong><a href="/de/produkte/stromkabel/mittelspannungskabel/na2xsf2y-2/">NA2XS(F)2Y</a> 3x1x300 RM/25 12/20kV</strong> are available from us.</p> <p>We rely on multiple supply chains and have deliberately built up warehouse capacities. This ensures that even during industry-wide shortages, we can still deliver without improvisation. Even types such as the sought-after three-core cable <strong><a href="/de/produkte/stromkabel/mittelspannungskabel/na2xsf2y-2/">NA2XS(F)2Y</a> 3x1x300 RM/25 12/20kV</strong> are available from us.</p>
<p><strong>No excuses we deliver what others only offer.</strong></p> <p><strong>No excuses we deliver what others only offer.</strong></p>
<p><!-- Call to Action --></p> <p><!-- Call to Action --></p>
<div style="margin-top: 20px; padding: 15px; background-color: #f5f5f5; border-left: 5px solid #0073aa;"> <div style={{"marginTop":"20px","padding":"15px","backgroundColor":"#f5f5f5","borderLeft":"5px solid #0073aa"}}>
<p><strong>We deliver the cables you need!</strong><br /> <p><strong>We deliver the cables you need!</strong><br />
<a style="color: #0073aa; text-decoration: underline;" href="/contact/" target="_blank" rel="noopener">Contact us for a specific request.</a></p> <a style={{"color":"#0073aa","textDecoration":"underline"}} href="/contact/" target="_blank" rel="noopener">Contact us for a specific request.</a></p>
</div> </div>
<h2>FAQs about the NA2XSF2Y</h2> <h2>FAQs about the NA2XSF2Y</h2>

View File

@@ -1,15 +1,6 @@
--- ---
title: 'Recycling of cable drums: sustainability in wind power projects' title: 'Recycling of cable drums: sustainability in wind power projects'
date: '2025-03-03T09:30:09' date: '2025-03-03T09:30:09'
excerpt: >-
[vc_column column_padding=&#8221;no-extra-padding&#8221;
column_padding_tablet=&#8221;inherit&#8221;
column_padding_phone=&#8221;inherit&#8221;
column_padding_position=&#8221;all&#8221;
column_element_direction_desktop=&#8221;default&#8221;
column_element_spacing=&#8221;10px&#8221;
desktop_text_alignment=&#8221;default&#8221;
tablet_text_alignment=&#8221;default&#8221;&#8230;
featuredImage: /uploads/2025/02/5.webp featuredImage: /uploads/2025/02/5.webp
locale: en locale: en
--- ---

View File

@@ -1,22 +1,13 @@
--- ---
title: 'Securing the future with H1Z2Z2-K: Our solar cable for Intersolar 2025' title: 'Securing the future with H1Z2Z2-K: Our solar cable for Intersolar 2025'
date: '2025-05-01T09:40:37' date: '2025-05-01T09:40:37'
excerpt: >-
[vc_column column_padding=&#8221;no-extra-padding&#8221;
column_padding_tablet=&#8221;inherit&#8221;
column_padding_phone=&#8221;inherit&#8221;
column_padding_position=&#8221;all&#8221;
column_element_direction_desktop=&#8221;default&#8221;
column_element_spacing=&#8221;10px&#8221;
desktop_text_alignment=&#8221;default&#8221;
tablet_text_alignment=&#8221;default&#8221;&#8230;
featuredImage: /uploads/2025/04/inter-solar.webp featuredImage: /uploads/2025/04/inter-solar.webp
locale: en locale: en
--- ---
# Securing the future with H1Z2Z2-K: Our solar cable for Intersolar 2025 # Securing the future with H1Z2Z2-K: Our solar cable for Intersolar 2025
<p class="" data-start="114" data-end="386">Around <a href="https://www.intersolar.de/start" target="_blank" rel="noopener noreferrer nofollow">Intersolar Europe</a>, the topic of photovoltaics is once again moving into the spotlight. A great reason to take a closer look at a special solar cable developed specifically for use in PV systems robust, weather-resistant, and compliant with current standards.</p> <p class="" data-start="114" data-end="386">Around <a href="https://www.intersolar.de/start" target="_blank" rel="noopener noreferrer nofollow">Intersolar Europe</a>, the topic of photovoltaics is once again moving into the spotlight. A great reason to take a closer look at a special solar cable developed specifically for use in PV systems robust, weather-resistant, and compliant with current standards.</p>
<div class="vlp-link-container vlp-layout-basic"><a href="https://youtu.be/YbtdyvQFoVM" class="vlp-link" title="Intersolar Europe 2025 | Save The Date | May 79, 2025" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="https://i.ytimg.com/vi/YbtdyvQFoVM/maxresdefault.jpg?sqp=-oaymwEmCIAKENAF8quKqQMa8AEB-AH-CYAC0AWKAgwIABABGEQgSyhyMA8=&amp;rs=AOn4CLBx90qdBxgYcyMttgdOGs3-m0udZQ" style="max-width: 150px; max-height: 150px" /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Intersolar Europe 2025 | Save The Date | May 79, 2025</div><div class="vlp-block-1 vlp-link-summary">As the worlds leading exhibition for the solar industry, Intersolar Europe demonstrates the enormous vitality of the solar market. For more than 30 years, i…</div></div></div> <div class="vlp-link-container vlp-layout-basic"><a href="https://youtu.be/YbtdyvQFoVM" class="vlp-link" title="Intersolar Europe 2025 | Save The Date | May 79, 2025" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="https://i.ytimg.com/vi/YbtdyvQFoVM/maxresdefault.jpg?sqp=-oaymwEmCIAKENAF8quKqQMa8AEB-AH-CYAC0AWKAgwIABABGEQgSyhyMA8=&amp;rs=AOn4CLBx90qdBxgYcyMttgdOGs3-m0udZQ" style={{"maxWidth":"150px","maxHeight":"150px"}} /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Intersolar Europe 2025 | Save The Date | May 79, 2025</div><div class="vlp-block-1 vlp-link-summary">As the worlds leading exhibition for the solar industry, Intersolar Europe demonstrates the enormous vitality of the solar market. For more than 30 years, i…</div></div></div>
<p class="" data-start="388" data-end="575">What lies behind the design, which selection criteria matter for solar cables, and why every detail counts in photovoltaic projects thats exactly what this article is about.</p> <p class="" data-start="388" data-end="575">What lies behind the design, which selection criteria matter for solar cables, and why every detail counts in photovoltaic projects thats exactly what this article is about.</p>
<h2 class="" data-start="189" data-end="243">What is the H1Z2Z2-K 6mm² solar cable?</h2> <h2 class="" data-start="189" data-end="243">What is the H1Z2Z2-K 6mm² solar cable?</h2>
@@ -211,4 +202,4 @@ locale: en
<p class="" data-start="548" data-end="837">What really stands out is its versatility: whether on rooftops, in underground installations, or in large-scale PV plants the H1Z2Z2-K delivers reliability and an impressive service life. It makes a direct contribution to the economic efficiency and sustainability of solar systems.</p> <p class="" data-start="548" data-end="837">What really stands out is its versatility: whether on rooftops, in underground installations, or in large-scale PV plants the H1Z2Z2-K delivers reliability and an impressive service life. It makes a direct contribution to the economic efficiency and sustainability of solar systems.</p>
<p class="" data-start="839" data-end="932">Further information, technical details, and ordering options can be found on the product page: 👉 <a class="" href="/products/solar-cables/h1z2z2-k/" target="_new" rel="noopener" data-start="937" data-end="1023">To the H1Z2Z2-K at KLZ</a></p> <p class="" data-start="839" data-end="932">Further information, technical details, and ordering options can be found on the product page: 👉 <a class="" href="/products/solar-cables/h1z2z2-k/" target="_new" rel="noopener" data-start="937" data-end="1023">To the H1Z2Z2-K at KLZ</a></p>
<p class="" data-start="839" data-end="932">All the key details about Intersolar Europe can be found here:</p> <p class="" data-start="839" data-end="932">All the key details about Intersolar Europe can be found here:</p>
<div class="vlp-link-container vlp-layout-basic"><a href="https://www.intersolar.de/messe-kompakt?ref=m5f53a666f3a2cb2fee160554-s65eec4739108db093b003a02-t1746004197-cf3c592e7" class="vlp-link" title="Intersolar Europe at a Glance" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="https://www.intersolar.de/media/image/6311c9ee98bbc414b66305e2/750" style="max-width: 150px; max-height: 150px" /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Intersolar Europe at a Glance</div><div class="vlp-block-1 vlp-link-summary">Intersolar Europe | Exhibition Quick Facts | Date, Venue, Opening Hours, Exhibitors</div></div></div> <div class="vlp-link-container vlp-layout-basic"><a href="https://www.intersolar.de/messe-kompakt?ref=m5f53a666f3a2cb2fee160554-s65eec4739108db093b003a02-t1746004197-cf3c592e7" class="vlp-link" title="Intersolar Europe at a Glance" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="https://www.intersolar.de/media/image/6311c9ee98bbc414b66305e2/750" style={{"maxWidth":"150px","maxHeight":"150px"}} /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Intersolar Europe at a Glance</div><div class="vlp-block-1 vlp-link-summary">Intersolar Europe | Exhibition Quick Facts | Date, Venue, Opening Hours, Exhibitors</div></div></div>

View File

@@ -1,14 +1,6 @@
--- ---
title: 'The art of cable logistics: moving the backbone of modern energy networks' title: 'The art of cable logistics: moving the backbone of modern energy networks'
date: '2025-01-14T12:56:55' date: '2025-01-14T12:56:55'
excerpt: >-
[vc_column column_padding=&#8221;no-extra-padding&#8221;
column_padding_tablet=&#8221;inherit&#8221;
column_padding_phone=&#8221;inherit&#8221;
column_padding_position=&#8221;all&#8221;
column_element_direction_desktop=&#8221;default&#8221;
column_element_spacing=&#8221;10px&#8221;
desktop_text_alignment=&#8221;default&#8221;&#8230;
featuredImage: >- featuredImage: >-
/uploads/2025/01/transportation-and-logistics-trucking-2023-11-27-04-54-40-utc-scaled.webp /uploads/2025/01/transportation-and-logistics-trucking-2023-11-27-04-54-40-utc-scaled.webp
locale: en locale: en

View File

@@ -1,15 +1,6 @@
--- ---
title: The best underground cables for wind power and solar &#8211; order from us now title: The best underground cables for wind power and solar &#8211; order from us now
date: '2025-05-26T10:18:16' date: '2025-05-26T10:18:16'
excerpt: >-
[vc_column column_padding=&#8221;no-extra-padding&#8221;
column_padding_tablet=&#8221;inherit&#8221;
column_padding_phone=&#8221;inherit&#8221;
column_padding_position=&#8221;all&#8221;
column_element_direction_desktop=&#8221;default&#8221;
column_element_spacing=&#8221;10px&#8221;
desktop_text_alignment=&#8221;default&#8221;
tablet_text_alignment=&#8221;default&#8221;&#8230;
featuredImage: /uploads/2025/04/image_fx_-2025-02-20T191245.537.webp featuredImage: /uploads/2025/04/image_fx_-2025-02-20T191245.537.webp
locale: en locale: en
--- ---

View File

@@ -1,15 +1,6 @@
--- ---
title: 'The perfect cable inquiry: How to save yourself unnecessary queries' title: 'The perfect cable inquiry: How to save yourself unnecessary queries'
date: '2025-02-17T08:15:52' date: '2025-02-17T08:15:52'
excerpt: >-
[vc_column column_padding=&#8221;no-extra-padding&#8221;
column_padding_tablet=&#8221;inherit&#8221;
column_padding_phone=&#8221;inherit&#8221;
column_padding_position=&#8221;all&#8221;
column_element_direction_desktop=&#8221;default&#8221;
column_element_spacing=&#8221;10px&#8221;
desktop_text_alignment=&#8221;default&#8221;
tablet_text_alignment=&#8221;default&#8221;&#8230;
featuredImage: /uploads/2025/02/1.webp featuredImage: /uploads/2025/02/1.webp
locale: en locale: en
--- ---

View File

@@ -1,14 +1,6 @@
--- ---
title: This what you need to know about renewable energies in 2025 title: This what you need to know about renewable energies in 2025
date: '2024-11-09T12:12:37' date: '2024-11-09T12:12:37'
excerpt: >-
[vc_column column_padding=&#8221;no-extra-padding&#8221;
column_padding_tablet=&#8221;inherit&#8221;
column_padding_phone=&#8221;inherit&#8221;
column_padding_position=&#8221;all&#8221;
column_element_direction_desktop=&#8221;default&#8221;
column_element_spacing=&#8221;10px&#8221;
desktop_text_alignment=&#8221;default&#8221;&#8230;
featuredImage: >- featuredImage: >-
/uploads/2024/11/aerial-view-of-electricity-station-surrounded-with-2023-11-27-05-33-40-utc-scaled.jpg /uploads/2024/11/aerial-view-of-electricity-station-surrounded-with-2023-11-27-05-33-40-utc-scaled.jpg
locale: en locale: en

View File

@@ -1,15 +1,6 @@
--- ---
title: 'Welcome to the future of KLZ: our new website is live!' title: 'Welcome to the future of KLZ: our new website is live!'
date: '2024-12-30T15:39:16' date: '2024-12-30T15:39:16'
excerpt: >-
[vc_column column_padding=&#8221;no-extra-padding&#8221;
column_padding_tablet=&#8221;inherit&#8221;
column_padding_phone=&#8221;inherit&#8221;
column_padding_position=&#8221;all&#8221;
column_element_direction_desktop=&#8221;default&#8221;
column_element_spacing=&#8221;10px&#8221;
desktop_text_alignment=&#8221;default&#8221;
tablet_text_alignment=&#8221;default&#8221;&#8230;
featuredImage: /uploads/2024/12/mockup_03-copy-scaled.webp featuredImage: /uploads/2024/12/mockup_03-copy-scaled.webp
locale: en locale: en
--- ---

View File

@@ -1,14 +1,6 @@
--- ---
title: What makes a first-class cable? Find out here! title: What makes a first-class cable? Find out here!
date: '2024-12-31T11:55:33' date: '2024-12-31T11:55:33'
excerpt: >-
[vc_column column_padding=&#8221;no-extra-padding&#8221;
column_padding_tablet=&#8221;inherit&#8221;
column_padding_phone=&#8221;inherit&#8221;
column_padding_position=&#8221;all&#8221;
column_element_direction_desktop=&#8221;default&#8221;
column_element_spacing=&#8221;10px&#8221;
desktop_text_alignment=&#8221;default&#8221;&#8230;
featuredImage: >- featuredImage: >-
/uploads/2024/12/production-of-cable-wire-at-cable-factory-2023-11-27-05-18-33-utc-Large.webp /uploads/2024/12/production-of-cable-wire-at-cable-factory-2023-11-27-05-18-33-utc-Large.webp
locale: en locale: en
@@ -44,7 +36,7 @@ Choosing the right cable is a long-term investment that pays off in safety, cost
<h4>The relevance of high-quality cables for a sustainable future</h4> <h4>The relevance of high-quality cables for a sustainable future</h4>
<p>In a world that is increasingly moving towards a carbon-neutral energy supply, first-class cables are helping to achieve these goals. Sustainable cables are made from recyclable materials that minimize environmental impact. They also support the integration of renewable energies into the power grid by ensuring that the electricity generated is transported efficiently and without losses.</p> <p>In a world that is increasingly moving towards a carbon-neutral energy supply, first-class cables are helping to achieve these goals. Sustainable cables are made from recyclable materials that minimize environmental impact. They also support the integration of renewable energies into the power grid by ensuring that the electricity generated is transported efficiently and without losses.</p>
<p>The right choice of cable is therefore not just a technical decision &#8211; it is a contribution to a more sustainable future. By using high-quality cables, the carbon footprint of infrastructure projects can be significantly reduced. This is an important step towards an environmentally friendly and energy-efficient society.A first-class cable is therefore more than just a technical component &#8211; it is a key to a more stable, greener and more efficient energy supply.</p> <p>The right choice of cable is therefore not just a technical decision &#8211; it is a contribution to a more sustainable future. By using high-quality cables, the carbon footprint of infrastructure projects can be significantly reduced. This is an important step towards an environmentally friendly and energy-efficient society.A first-class cable is therefore more than just a technical component &#8211; it is a key to a more stable, greener and more efficient energy supply.</p>
<div class="vlp-link-container vlp-layout-basic"><a href="https://www.konnworld.com/why-cable-quality-matters-the-impact-on-energy-efficiency-and-longevity" class="vlp-link" title="Why Cable Quality Matters: The Impact on Energy Efficiency and Longevity" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="https://www.konnworld.com/wp-content/uploads/2018/08/konn-b-logo.png" style="max-width: 150px; max-height: 150px" /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Why Cable Quality Matters: The Impact on Energy Efficiency and Longevity</div><div class="vlp-block-1 vlp-link-summary">In the electrical systems that we have today, theres no denying that cable quality is important in ensuring optimal performance and safety.</div></div></div> <div class="vlp-link-container vlp-layout-basic"><a href="https://www.konnworld.com/why-cable-quality-matters-the-impact-on-energy-efficiency-and-longevity" class="vlp-link" title="Why Cable Quality Matters: The Impact on Energy Efficiency and Longevity" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="https://www.konnworld.com/wp-content/uploads/2018/08/konn-b-logo.png" style={{"maxWidth":"150px","maxHeight":"150px"}} /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Why Cable Quality Matters: The Impact on Energy Efficiency and Longevity</div><div class="vlp-block-1 vlp-link-summary">In the electrical systems that we have today, theres no denying that cable quality is important in ensuring optimal performance and safety.</div></div></div>
<h4>Materials: What makes a cable durable and efficient?</h4> <h4>Materials: What makes a cable durable and efficient?</h4>
<p>Choosing the right materials is crucial to making cables both durable and efficient. Two of the most common and important materials used in cables are copper and aluminum. They play a central role in the electrical conductivity and durability of cables.</p> <p>Choosing the right materials is crucial to making cables both durable and efficient. Two of the most common and important materials used in cables are copper and aluminum. They play a central role in the electrical conductivity and durability of cables.</p>
@@ -58,7 +50,7 @@ The demand for environmentally friendly materials is growing as more and more co
<li>Aluminum recycling: Aluminum is also a highly recyclable material. The aluminum recycling process requires only about 5% of the energy needed to produce new aluminum. Many manufacturers are turning to recycled aluminum to improve their environmental footprint while increasing the efficiency of their cable products.</li> <li>Aluminum recycling: Aluminum is also a highly recyclable material. The aluminum recycling process requires only about 5% of the energy needed to produce new aluminum. Many manufacturers are turning to recycled aluminum to improve their environmental footprint while increasing the efficiency of their cable products.</li>
<li>Biodegradable insulation: Another trend is the development of biodegradable or more environmentally friendly insulation materials. These materials not only reduce the use of toxic substances, but also help to minimize waste after the cable&#8217;s lifetime.In summary, choosing the right materials for cables is not only a factor in their longevity and efficiency, but also crucial for a sustainable future. Copper and aluminum offer excellent performance, but the focus on recycling and the search for more environmentally friendly alternatives is making the cable industry increasingly greener and more resource-efficient. So not only can a cable work efficiently today, it can also leave a smaller environmental footprint in the future.</li> <li>Biodegradable insulation: Another trend is the development of biodegradable or more environmentally friendly insulation materials. These materials not only reduce the use of toxic substances, but also help to minimize waste after the cable&#8217;s lifetime.In summary, choosing the right materials for cables is not only a factor in their longevity and efficiency, but also crucial for a sustainable future. Copper and aluminum offer excellent performance, but the focus on recycling and the search for more environmentally friendly alternatives is making the cable industry increasingly greener and more resource-efficient. So not only can a cable work efficiently today, it can also leave a smaller environmental footprint in the future.</li>
</ul> </ul>
<div class="vlp-link-container vlp-layout-basic"><a href="https://insights.regencysupply.com/pros-and-cons-of-copper-and-aluminum-wire" class="vlp-link" title="Pros and Cons of Copper and Aluminum Wire" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="https://insights.regencysupply.com/hubfs/copper%20wire.jpg" style="max-width: 150px; max-height: 150px" /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Pros and Cons of Copper and Aluminum Wire</div><div class="vlp-block-1 vlp-link-summary">Copper wire and aluminum wire — which option is better? We weight the pros and cons.</div></div></div> <div class="vlp-link-container vlp-layout-basic"><a href="https://insights.regencysupply.com/pros-and-cons-of-copper-and-aluminum-wire" class="vlp-link" title="Pros and Cons of Copper and Aluminum Wire" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="https://insights.regencysupply.com/hubfs/copper%20wire.jpg" style={{"maxWidth":"150px","maxHeight":"150px"}} /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Pros and Cons of Copper and Aluminum Wire</div><div class="vlp-block-1 vlp-link-summary">Copper wire and aluminum wire — which option is better? We weight the pros and cons.</div></div></div>
<h4>Technology: Advanced designs for optimal performance</h4> <h4>Technology: Advanced designs for optimal performance</h4>
<p>Advanced cable technologies are critical to maximize the performance and safety of electrical systems, especially with regard to renewable energy sources. Two key technologies are insulation and sheathing, and specialized cables for renewable energy.</p> <p>Advanced cable technologies are critical to maximize the performance and safety of electrical systems, especially with regard to renewable energy sources. Two key technologies are insulation and sheathing, and specialized cables for renewable energy.</p>
@@ -66,7 +58,7 @@ The demand for environmentally friendly materials is growing as more and more co
The insulation of a cable protects against short circuits and external influences such as moisture or mechanical damage. Materials such as PVC, PE and XLPE offer excellent protection and guarantee safe power transmission. The protective sheath protects the cable from UV radiation and extreme temperatures, which significantly extends its service life and increases safety.<strong>Cables for renewable energy sources</strong><br /> The insulation of a cable protects against short circuits and external influences such as moisture or mechanical damage. Materials such as PVC, PE and XLPE offer excellent protection and guarantee safe power transmission. The protective sheath protects the cable from UV radiation and extreme temperatures, which significantly extends its service life and increases safety.<strong>Cables for renewable energy sources</strong><br />
Solar and wind energy require specialized cables that can withstand extreme weather conditions and high loads. Solar cables must be UV resistant and suitable for DC systems, while wind power cables must be flexible and corrosion resistant to withstand the constant movement of rotor blades. These advanced cables enable the efficient and safe transportation of energy, which is crucial for the sustainability and economic viability of renewable energy.</p> Solar and wind energy require specialized cables that can withstand extreme weather conditions and high loads. Solar cables must be UV resistant and suitable for DC systems, while wind power cables must be flexible and corrosion resistant to withstand the constant movement of rotor blades. These advanced cables enable the efficient and safe transportation of energy, which is crucial for the sustainability and economic viability of renewable energy.</p>
<p>Overall, these technologies help maximize the efficiency and safety of cables and support a sustainable energy future.</p> <p>Overall, these technologies help maximize the efficiency and safety of cables and support a sustainable energy future.</p>
<div class="vlp-link-container vlp-layout-basic"><a href="https://www.cables-unlimited.com/renewable-energy-cable-assemblies-weve-got-you-covered/" class="vlp-link" title="Renewable Energy Cable Assemblies — Weve Got You Covered - Cables Unlimited Inc." rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="http://www.cables-unlimited.com/wp-content/uploads/2023/02/Cables-Unlimited_Featured-Renewable-Energy-Cable-Assemblies-%E2%80%94-Weve-Got-You-Covered.jpg" style="max-width: 150px; max-height: 150px" /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Renewable Energy Cable Assemblies — Weve Got You Covered - Cables Unlimited Inc.</div><div class="vlp-block-1 vlp-link-summary">Cable assemblies used in renewable energy installations, what they are, their benefits and cable systems for renewable energy design factors.</div></div></div> <div class="vlp-link-container vlp-layout-basic"><a href="https://www.cables-unlimited.com/renewable-energy-cable-assemblies-weve-got-you-covered/" class="vlp-link" title="Renewable Energy Cable Assemblies — Weve Got You Covered - Cables Unlimited Inc." rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="http://www.cables-unlimited.com/wp-content/uploads/2023/02/Cables-Unlimited_Featured-Renewable-Energy-Cable-Assemblies-%E2%80%94-Weve-Got-You-Covered.jpg" style={{"maxWidth":"150px","maxHeight":"150px"}} /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Renewable Energy Cable Assemblies — Weve Got You Covered - Cables Unlimited Inc.</div><div class="vlp-block-1 vlp-link-summary">Cable assemblies used in renewable energy installations, what they are, their benefits and cable systems for renewable energy design factors.</div></div></div>
<h4>Certifications and standards: a guarantee of quality</h4> <h4>Certifications and standards: a guarantee of quality</h4>
<p>The quality of cables is not only determined by their materials and technologies, but also by compliance with certifications and standards. These guarantee that cables are safe, efficient and durable. They play a decisive role in ensuring product quality and are an important criterion when selecting cables for various applications, particularly with regard to sustainability and environmental protection.<strong>Important standards and seals for first-class cables</strong></p> <p>The quality of cables is not only determined by their materials and technologies, but also by compliance with certifications and standards. These guarantee that cables are safe, efficient and durable. They play a decisive role in ensuring product quality and are an important criterion when selecting cables for various applications, particularly with regard to sustainability and environmental protection.<strong>Important standards and seals for first-class cables</strong></p>
@@ -102,11 +94,11 @@ Solar and wind energy require specialized cables that can withstand extreme weat
<li>Environmentally friendly production: Certificates such as ISO 14001 prove that manufacturers use environmentally friendly production processes that minimize energy consumption and waste.</li> <li>Environmentally friendly production: Certificates such as ISO 14001 prove that manufacturers use environmentally friendly production processes that minimize energy consumption and waste.</li>
</ul> </ul>
<p>The increasing importance of sustainability certificates is not only a response to legal requirements, but also a response to the growing awareness of consumers and companies who are looking for environmentally friendly products. In an industry increasingly dominated by green technologies, such certificates provide companies with a competitive advantage and consumers with the assurance that they are choosing responsibly produced products.</p> <p>The increasing importance of sustainability certificates is not only a response to legal requirements, but also a response to the growing awareness of consumers and companies who are looking for environmentally friendly products. In an industry increasingly dominated by green technologies, such certificates provide companies with a competitive advantage and consumers with the assurance that they are choosing responsibly produced products.</p>
<div class="vlp-link-container vlp-layout-basic"><a href="https://www.flukenetworks.com/blog/cabling-chronicles/cabling-certification" class="vlp-link" title="Three Reasons Cabling Certification Is More Important Than Ever" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="https://www.flukenetworks.com/sites/default/files/blog/fn-dsx-8000_14a_w.jpg" style="max-width: 150px; max-height: 150px" /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Three Reasons Cabling Certification Is More Important Than Ever</div><div class="vlp-block-1 vlp-link-summary">Every time you complete the installation of a structured cabling system, you can choose whether to certify it. All links in the system should be tested in some way to make sure that theyre connected properly, but is it necessary to measure and document the performance of every link?</div></div></div> <div class="vlp-link-container vlp-layout-basic"><a href="https://www.flukenetworks.com/blog/cabling-chronicles/cabling-certification" class="vlp-link" title="Three Reasons Cabling Certification Is More Important Than Ever" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="https://www.flukenetworks.com/sites/default/files/blog/fn-dsx-8000_14a_w.jpg" style={{"maxWidth":"150px","maxHeight":"150px"}} /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Three Reasons Cabling Certification Is More Important Than Ever</div><div class="vlp-block-1 vlp-link-summary">Every time you complete the installation of a structured cabling system, you can choose whether to certify it. All links in the system should be tested in some way to make sure that theyre connected properly, but is it necessary to measure and document the performance of every link?</div></div></div>
<h4>Conclusion: What really makes a first-class cable</h4> <h4>Conclusion: What really makes a first-class cable</h4>
<p>A first-class cable is characterized by a perfect balance between quality, efficiency and sustainability. Choosing the right cable is not just a question of technical requirements, but also an important step towards a more sustainable future. A high-quality cable ensures reliable performance and maximum efficiency, reduces energy loss and at the same time offers a high standard of safety.<strong>Quality and efficiency</strong><br /> <p>A first-class cable is characterized by a perfect balance between quality, efficiency and sustainability. Choosing the right cable is not just a question of technical requirements, but also an important step towards a more sustainable future. A high-quality cable ensures reliable performance and maximum efficiency, reduces energy loss and at the same time offers a high standard of safety.<strong>Quality and efficiency</strong><br />
A good cable is designed to work efficiently over the long term. Materials such as copper and aluminum ensure excellent conductivity, while modern insulation materials and protective layers extend the cable&#8217;s service life and protect it against external influences such as moisture and corrosion. This is particularly important in applications such as power transmission and the use of renewable energy, where efficiency and reliability are top priorities.</p> A good cable is designed to work efficiently over the long term. Materials such as copper and aluminum ensure excellent conductivity, while modern insulation materials and protective layers extend the cable&#8217;s service life and protect it against external influences such as moisture and corrosion. This is particularly important in applications such as power transmission and the use of renewable energy, where efficiency and reliability are top priorities.</p>
<p><strong>Sustainability</strong><br /> <p><strong>Sustainability</strong><br />
In a world that is increasingly focusing on sustainability, environmental protection is playing an ever greater role when choosing a cable. Recyclability, sustainable production processes and certifications such as RoHS or recycling seals are decisive factors that determine the ecological footprint of a cable. Integrating these elements into cable production helps to minimize resource consumption and reduce waste, which contributes to a more environmentally friendly and resource-efficient future.</p> In a world that is increasingly focusing on sustainability, environmental protection is playing an ever greater role when choosing a cable. Recyclability, sustainable production processes and certifications such as RoHS or recycling seals are decisive factors that determine the ecological footprint of a cable. Integrating these elements into cable production helps to minimize resource consumption and reduce waste, which contributes to a more environmentally friendly and resource-efficient future.</p>
<div class="vlp-link-container vlp-layout-basic"><a href="https://sustainablebrands.com/read/evolving-infrastructure-wire-cable-prioritize-sustainability" class="vlp-link" title="Evolving Our Infrastructure Means the Wire and Cable Industry Must Prioritize Sustainability | Sustainable Brands" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="https://sb-web-assets.s3.amazonaws.com/production/46426/conversions/keyart-fbimg.jpg" style="max-width: 150px; max-height: 150px" /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Evolving Our Infrastructure Means the Wire and Cable Industry Must Prioritize Sustainability | Sustainable Brands</div><div class="vlp-block-1 vlp-link-summary">To sustainably support the tremendous global demand for connectivity, collaboration is needed across the value chain to create solutions that enable more inf…</div></div></div> <div class="vlp-link-container vlp-layout-basic"><a href="https://sustainablebrands.com/read/evolving-infrastructure-wire-cable-prioritize-sustainability" class="vlp-link" title="Evolving Our Infrastructure Means the Wire and Cable Industry Must Prioritize Sustainability | Sustainable Brands" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="https://sb-web-assets.s3.amazonaws.com/production/46426/conversions/keyart-fbimg.jpg" style={{"maxWidth":"150px","maxHeight":"150px"}} /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Evolving Our Infrastructure Means the Wire and Cable Industry Must Prioritize Sustainability | Sustainable Brands</div><div class="vlp-block-1 vlp-link-summary">To sustainably support the tremendous global demand for connectivity, collaboration is needed across the value chain to create solutions that enable more inf…</div></div></div>

View File

@@ -3,15 +3,6 @@ title: >-
Which cables for wind power? Differences from low to extra-high voltage Which cables for wind power? Differences from low to extra-high voltage
explained explained
date: '2025-06-10T10:35:53' date: '2025-06-10T10:35:53'
excerpt: >-
[vc_column column_padding=&#8221;no-extra-padding&#8221;
column_padding_tablet=&#8221;inherit&#8221;
column_padding_phone=&#8221;inherit&#8221;
column_padding_position=&#8221;all&#8221;
column_element_direction_desktop=&#8221;default&#8221;
column_element_spacing=&#8221;10px&#8221;
desktop_text_alignment=&#8221;default&#8221;
tablet_text_alignment=&#8221;default&#8221;&#8230;
featuredImage: /uploads/2025/04/image_fx_-2025-02-20T185502.688.webp featuredImage: /uploads/2025/04/image_fx_-2025-02-20T185502.688.webp
locale: en locale: en
--- ---
@@ -20,7 +11,7 @@ locale: en
<h2 data-start="88" data-end="144">Cables: The Nervous System of the Energy Transition</h2> <h2 data-start="88" data-end="144">Cables: The Nervous System of the Energy Transition</h2>
<p data-start="146" data-end="608">No cables, no power. And without the right cable type, no functioning wind farm either. In modern <strong data-start="246" data-end="276">onshore wind energy projects</strong>, the choice of the correct voltage class plays a central role not only for efficiency but also for the safety and longevity of the entire installation.</p> <p data-start="146" data-end="608">No cables, no power. And without the right cable type, no functioning wind farm either. In modern <strong data-start="246" data-end="276">onshore wind energy projects</strong>, the choice of the correct voltage class plays a central role not only for efficiency but also for the safety and longevity of the entire installation.</p>
<p data-start="146" data-end="608">The European Court of Auditors also calls for increased investments in the expansion of power grids to successfully advance the energy transition. Because only with modern cables and efficient infrastructure can renewable energies be reliably integrated and a sustainable energy future be secured. Here you can find more information on this topic.</p> <p data-start="146" data-end="608">The European Court of Auditors also calls for increased investments in the expansion of power grids to successfully advance the energy transition. Because only with modern cables and efficient infrastructure can renewable energies be reliably integrated and a sustainable energy future be secured. Here you can find more information on this topic.</p>
<div class="vlp-link-container vlp-layout-basic"><a href="https://www.klimareporter.de/strom/stromnetze-fuer-die-energiewende" class="vlp-link" title="Stromnetze für die Energiewende" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="https://www.klimareporter.de/images/karo3imgmanager/resized/standard-1/power-line-at-sunset-1100-733-80-ccb.webp" style="max-width: 150px; max-height: 150px" /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Stromnetze für die Energiewende</div><div class="vlp-block-1 vlp-link-summary">Der Europäische Rechnungshof dringt auf mehr Investitionen, um die Elektrizitätsnetze in der EU fit für erneuerbare Energien zu machen. Eine dezentrale und flex</div></div></div> <div class="vlp-link-container vlp-layout-basic"><a href="https://www.klimareporter.de/strom/stromnetze-fuer-die-energiewende" class="vlp-link" title="Stromnetze für die Energiewende" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="https://www.klimareporter.de/images/karo3imgmanager/resized/standard-1/power-line-at-sunset-1100-733-80-ccb.webp" style={{"maxWidth":"150px","maxHeight":"150px"}} /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Stromnetze für die Energiewende</div><div class="vlp-block-1 vlp-link-summary">Der Europäische Rechnungshof dringt auf mehr Investitionen, um die Elektrizitätsnetze in der EU fit für erneuerbare Energien zu machen. Eine dezentrale und flex</div></div></div>
<p data-start="610" data-end="968">In the following article, we take a close look at the different voltage classes from low voltage through medium and high voltage up to extra-high voltage and show where they are specifically used in the wind farm. Because those who know the differences can plan projects not only more efficiently but also more cost-effectively and reliably.</p> <p data-start="610" data-end="968">In the following article, we take a close look at the different voltage classes from low voltage through medium and high voltage up to extra-high voltage and show where they are specifically used in the wind farm. Because those who know the differences can plan projects not only more efficiently but also more cost-effectively and reliably.</p>
<h2 data-start="975" data-end="1032">Low Voltage Cables Simple, Affordable, Indispensable</h2> <h2 data-start="975" data-end="1032">Low Voltage Cables Simple, Affordable, Indispensable</h2>
@@ -123,7 +114,7 @@ locale: en
</ul> </ul>
<p data-start="3411" data-end="3649">Those who choose <strong data-start="3415" data-end="3436">NA2XS(F)2Y</strong> rely on a proven solution for the medium-voltage level. These cables are not only powerful, but also durable and economical a reliable choice for energy distribution in wind farms.</p> <p data-start="3411" data-end="3649">Those who choose <strong data-start="3415" data-end="3436">NA2XS(F)2Y</strong> rely on a proven solution for the medium-voltage level. These cables are not only powerful, but also durable and economical a reliable choice for energy distribution in wind farms.</p>
<p data-start="3411" data-end="3649">You can also obtain this cable directly from us (KLZ). More information and <a href="/de/kontakt/">ordering options</a> can be found here:</p> <p data-start="3411" data-end="3649">You can also obtain this cable directly from us (KLZ). More information and <a href="/de/kontakt/">ordering options</a> can be found here:</p>
<div class="vlp-link-container vlp-layout-basic"><a href="/contact/" class="vlp-link" title="Contact Lets Move Your Energy Projects Forward" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="/uploads/2025/02/og-2.webp" style="max-width: 150px; max-height: 150px" /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Contact Lets Move Your Energy Projects Forward</div><div class="vlp-block-1 vlp-link-summary">Fast, reliable, and straightforward get in touch for customized cable and energy solutions. Were here to help.</div></div></div> <div class="vlp-link-container vlp-layout-basic"><a href="/contact/" class="vlp-link" title="Contact Lets Move Your Energy Projects Forward" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="/uploads/2025/02/og-2.webp" style={{"maxWidth":"150px","maxHeight":"150px"}} /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Contact Lets Move Your Energy Projects Forward</div><div class="vlp-block-1 vlp-link-summary">Fast, reliable, and straightforward get in touch for customized cable and energy solutions. Were here to help.</div></div></div>
<h2 data-start="3656" data-end="3710">High Voltage Cables When Power Travels Long Distances</h2> <h2 data-start="3656" data-end="3710">High Voltage Cables When Power Travels Long Distances</h2>
<p data-start="3712" data-end="4014">High voltage begins at 45 kV and extends up to 230 kV. This voltage level is crucial for connecting larger wind farms to regional or supraregional grids. The cables must transport enormous amounts of electricity safely and with minimal loss often over many kilometers.</p> <p data-start="3712" data-end="4014">High voltage begins at 45 kV and extends up to 230 kV. This voltage level is crucial for connecting larger wind farms to regional or supraregional grids. The cables must transport enormous amounts of electricity safely and with minimal loss often over many kilometers.</p>
@@ -225,7 +216,7 @@ locale: en
</table> </table>
<p data-start="6841" data-end="7000">The table shows: the higher the voltage, the more specialized the cable. At the same time, the demands on planning, installation, and monitoring increase.</p> <p data-start="6841" data-end="7000">The table shows: the higher the voltage, the more specialized the cable. At the same time, the demands on planning, installation, and monitoring increase.</p>
<p data-start="6841" data-end="7000">You can read in this article how our energy can be distributed smartly and sustainably.</p> <p data-start="6841" data-end="7000">You can read in this article how our energy can be distributed smartly and sustainably.</p>
<div class="vlp-link-container vlp-layout-basic"><a href="https://www.enercity.de/magazin/unsere-welt/bedeutung-von-smart-grids-fuer-die-energiewende" class="vlp-link" title="Stromversorgung: Wie das Smart Grid die Energiewende ermöglicht" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="https://www.enercity.de/assets/cms/enercity-de/magazin/bedeutung-von-smart-grids-fuer-die-energiewende/306_460751759_1944x822_header.jpg" style="max-width: 150px; max-height: 150px" /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Stromversorgung: Wie das Smart Grid die Energiewende ermöglicht</div><div class="vlp-block-1 vlp-link-summary">Abertausende Klein- und Kleinstkraftwerke, eine sicherzustellende Versorgung, hoher Bedarf: Das Stromnetz der Zukunft muss intelligent sein.</div></div></div> <div class="vlp-link-container vlp-layout-basic"><a href="https://www.enercity.de/magazin/unsere-welt/bedeutung-von-smart-grids-fuer-die-energiewende" class="vlp-link" title="Stromversorgung: Wie das Smart Grid die Energiewende ermöglicht" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="https://www.enercity.de/assets/cms/enercity-de/magazin/bedeutung-von-smart-grids-fuer-die-energiewende/306_460751759_1944x822_header.jpg" style={{"maxWidth":"150px","maxHeight":"150px"}} /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Stromversorgung: Wie das Smart Grid die Energiewende ermöglicht</div><div class="vlp-block-1 vlp-link-summary">Abertausende Klein- und Kleinstkraftwerke, eine sicherzustellende Versorgung, hoher Bedarf: Das Stromnetz der Zukunft muss intelligent sein.</div></div></div>
<h2 data-start="7007" data-end="7055">Conclusion &#8211; electricity is only as strong as its cable</h2> <h2 data-start="7007" data-end="7055">Conclusion &#8211; electricity is only as strong as its cable</h2>
<p data-start="7057" data-end="7406">In a modern wind farm, it is not only the turbine that determines efficiency and reliability &#8211; the right choice of cable is also crucial. The requirements for voltage, insulation, load capacity and environmental conditions are varied and complex. Those who take a planned approach here can not only reduce costs, but also create long-term security.</p> <p data-start="7057" data-end="7406">In a modern wind farm, it is not only the turbine that determines efficiency and reliability &#8211; the right choice of cable is also crucial. The requirements for voltage, insulation, load capacity and environmental conditions are varied and complex. Those who take a planned approach here can not only reduce costs, but also create long-term security.</p>

View File

@@ -1,15 +1,6 @@
--- ---
title: Why the N2XS(F)2Y is the ideal cable for your energy project title: Why the N2XS(F)2Y is the ideal cable for your energy project
date: '2025-09-29T12:33:30' date: '2025-09-29T12:33:30'
excerpt: >-
[vc_column column_padding=&#8221;no-extra-padding&#8221;
column_padding_tablet=&#8221;inherit&#8221;
column_padding_phone=&#8221;inherit&#8221;
column_padding_position=&#8221;all&#8221;
column_element_direction_desktop=&#8221;default&#8221;
column_element_spacing=&#8221;10px&#8221;
desktop_text_alignment=&#8221;default&#8221;
tablet_text_alignment=&#8221;default&#8221;&#8230;
featuredImage: /uploads/2025/04/image_fx_-2025-02-22T132138.470.webp featuredImage: /uploads/2025/04/image_fx_-2025-02-22T132138.470.webp
locale: en locale: en
--- ---
@@ -80,7 +71,7 @@ locale: en
</div> </div>
<p data-start="2817" data-end="2996">In other words: with the <a href="/de/produkte/stromkabel/mittelspannungskabel/na2xsf2y-2/">NA2XS(F)2Y</a>, you can build networks that not only work on paper but also perform reliably in practice long-term, low-maintenance, and safe.</p> <p data-start="2817" data-end="2996">In other words: with the <a href="/de/produkte/stromkabel/mittelspannungskabel/na2xsf2y-2/">NA2XS(F)2Y</a>, you can build networks that not only work on paper but also perform reliably in practice long-term, low-maintenance, and safe.</p>
<p data-start="2817" data-end="2996">Learn more about why grid expansion is so important here:</p> <p data-start="2817" data-end="2996">Learn more about why grid expansion is so important here:</p>
<div class="vlp-link-container vlp-layout-basic"><a href="https://www.netze-bw.de/unsernetz/netzausbau" class="vlp-link" title="Netzausbau - Netze BW GmbH" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="https://www.netze-bw.de/logo-seo.png" style="max-width: 150px; max-height: 150px" /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Netzausbau - Netze BW GmbH</div><div class="vlp-block-1 vlp-link-summary">Die Netze BW ist daran interessiert und dazu verpflichtet, ihr Netz im Sinne einer effizienten und sicheren Stromversorgung stetig zu optimieren.</div></div></div> <div class="vlp-link-container vlp-layout-basic"><a href="https://www.netze-bw.de/unsernetz/netzausbau" class="vlp-link" title="Netzausbau - Netze BW GmbH" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="https://www.netze-bw.de/logo-seo.png" style={{"maxWidth":"150px","maxHeight":"150px"}} /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Netzausbau - Netze BW GmbH</div><div class="vlp-block-1 vlp-link-summary">Die Netze BW ist daran interessiert und dazu verpflichtet, ihr Netz im Sinne einer effizienten und sicheren Stromversorgung stetig zu optimieren.</div></div></div>
<h3 data-start="212" data-end="261">Technology you can rely on</h3> <h3 data-start="212" data-end="261">Technology you can rely on</h3>
<p data-start="263" data-end="515">When medium voltage becomes part of critical infrastructure, you need cables whose technical properties can be trusted not only under ideal conditions, but especially when environmental factors, load, and system complexity increase.</p> <p data-start="263" data-end="515">When medium voltage becomes part of critical infrastructure, you need cables whose technical properties can be trusted not only under ideal conditions, but especially when environmental factors, load, and system complexity increase.</p>
@@ -168,7 +159,7 @@ locale: en
</li> </li>
</ul> </ul>
<p>Already convinced? Then order your medium-voltage cable directly from us:</p> <p>Already convinced? Then order your medium-voltage cable directly from us:</p>
<div class="vlp-link-container vlp-layout-basic"><a href="/de/kontakt/" class="vlp-link" title="Kontakt Lassen Sie uns Ihre Energieprojekte voranbringen" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="/uploads/2025/02/og-2.webp" style="max-width: 150px; max-height: 150px" /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Kontakt Lassen Sie uns Ihre Energieprojekte voranbringen</div><div class="vlp-block-1 vlp-link-summary">Schnell, verlässlich und unkompliziert nehmen Sie Kontakt auf für individuelle Kabel- und Energielösungen. Wir sind für Sie da.</div></div></div> <div class="vlp-link-container vlp-layout-basic"><a href="/de/kontakt/" class="vlp-link" title="Kontakt Lassen Sie uns Ihre Energieprojekte voranbringen" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="/uploads/2025/02/og-2.webp" style={{"maxWidth":"150px","maxHeight":"150px"}} /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Kontakt Lassen Sie uns Ihre Energieprojekte voranbringen</div><div class="vlp-block-1 vlp-link-summary">Schnell, verlässlich und unkompliziert nehmen Sie Kontakt auf für individuelle Kabel- und Energielösungen. Wir sind für Sie da.</div></div></div>
<h3 data-start="158" data-end="191">Practical application areas</h3> <h3 data-start="158" data-end="191">Practical application areas</h3>
<p data-start="193" data-end="508">The NA2XS(F)2Y is not designed for special cases but for everyday use in projects where <strong data-start="292" data-end="325">every meter of cable counts</strong>. Whether in industry, power distribution, or infrastructure wherever performance, safety, and planning reliability are required, this medium-voltage cable shows its strengths.</p> <p data-start="193" data-end="508">The NA2XS(F)2Y is not designed for special cases but for everyday use in projects where <strong data-start="292" data-end="325">every meter of cable counts</strong>. Whether in industry, power distribution, or infrastructure wherever performance, safety, and planning reliability are required, this medium-voltage cable shows its strengths.</p>
@@ -244,7 +235,7 @@ locale: en
<p data-start="1890" data-end="2062">Anyone who <strong data-start="1906" data-end="1936">buys a medium-voltage cable</strong> from KLZ receives not just a product but a solution that is <strong data-start="2000" data-end="2057">technically sound, compliant with standards, and ready to use</strong>.</p> <p data-start="1890" data-end="2062">Anyone who <strong data-start="1906" data-end="1936">buys a medium-voltage cable</strong> from KLZ receives not just a product but a solution that is <strong data-start="2000" data-end="2057">technically sound, compliant with standards, and ready to use</strong>.</p>
<p data-start="2064" data-end="2278">Especially in energy projects that need to be completed under time pressure or during ongoing operations, the NA2XS(F)2Y makes the decisive difference: <strong data-start="2216" data-end="2277">no discussions, no rework, no compromises</strong>.</p> <p data-start="2064" data-end="2278">Especially in energy projects that need to be completed under time pressure or during ongoing operations, the NA2XS(F)2Y makes the decisive difference: <strong data-start="2216" data-end="2277">no discussions, no rework, no compromises</strong>.</p>
<p data-start="2064" data-end="2278">Want to learn more about underground installation and buried cables? This article offers valuable insights into cable protection during underground installation.</p> <p data-start="2064" data-end="2278">Want to learn more about underground installation and buried cables? This article offers valuable insights into cable protection during underground installation.</p>
<div class="vlp-link-container vlp-layout-basic"><a href="https://www.richterbaustoffe.de/article/kabelschutz-bei-erdverlegung" class="vlp-link" title="Kabelschutz bei Erdverlegung" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="https://images.ctfassets.net/74nz86copyef/1CDlYm1yT02sRPwG1piRUo/dc25523b67f1efc4fae65cc978f900db/hagebau_Ostendorf_Kabelschutz_Headerbild.webp" style="max-width: 150px; max-height: 150px" /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Kabelschutz bei Erdverlegung</div><div class="vlp-block-1 vlp-link-summary">Beim Um- und Ausbau der Stromnetze für die Energiewende werden ein Großteil der Leitungen und Kabel unterirdisch verlegt um den äußeren Einflüssen unter der Erde standzuhalten und sie sicher zu isolieren, kommen…</div></div></div> <div class="vlp-link-container vlp-layout-basic"><a href="https://www.richterbaustoffe.de/article/kabelschutz-bei-erdverlegung" class="vlp-link" title="Kabelschutz bei Erdverlegung" rel="nofollow" target="_blank"></a><div class="vlp-layout-zone-side"><div class="vlp-block-2 vlp-link-image"><img decoding="async" src="https://images.ctfassets.net/74nz86copyef/1CDlYm1yT02sRPwG1piRUo/dc25523b67f1efc4fae65cc978f900db/hagebau_Ostendorf_Kabelschutz_Headerbild.webp" style={{"maxWidth":"150px","maxHeight":"150px"}} /></div></div><div class="vlp-layout-zone-main"><div class="vlp-block-0 vlp-link-title">Kabelschutz bei Erdverlegung</div><div class="vlp-block-1 vlp-link-summary">Beim Um- und Ausbau der Stromnetze für die Energiewende werden ein Großteil der Leitungen und Kabel unterirdisch verlegt um den äußeren Einflüssen unter der Erde standzuhalten und sie sicher zu isolieren, kommen…</div></div></div>
<h3 data-start="212" data-end="294">Conclusion:</h3> <h3 data-start="212" data-end="294">Conclusion:</h3>
<p data-start="212" data-end="294">If you need a medium-voltage cable that performs reliably even under real operating conditions the NA2XS(F)2Y is the right choice.</p> <p data-start="212" data-end="294">If you need a medium-voltage cable that performs reliably even under real operating conditions the NA2XS(F)2Y is the right choice.</p>

View File

@@ -1,14 +1,6 @@
--- ---
title: Why wind farm grid connection cables must withstand extreme loads title: Why wind farm grid connection cables must withstand extreme loads
date: '2025-03-10T09:30:49' date: '2025-03-10T09:30:49'
excerpt: >-
[vc_column column_padding=&#8221;no-extra-padding&#8221;
column_padding_tablet=&#8221;inherit&#8221;
column_padding_phone=&#8221;inherit&#8221;
column_padding_position=&#8221;all&#8221;
column_element_direction_desktop=&#8221;default&#8221;
column_element_spacing=&#8221;10px&#8221;
desktop_text_alignment=&#8221;default&#8221;&#8230;
featuredImage: /uploads/2025/02/image_fx_-9.webp featuredImage: /uploads/2025/02/image_fx_-9.webp
locale: en locale: en
--- ---

View File

@@ -10,5 +10,5 @@ export default createMiddleware({
export const config = { export const config = {
// Match only internationalized pathnames // Match only internationalized pathnames
matcher: ['/', '/(de|en)/:path*'] matcher: ['/((?!api|_next|_vercel|.*\\..*).*)', '/', '/(de|en)/:path*']
}; };

367
public/logo-blue.svg Normal file

File diff suppressed because one or more lines are too long

40
public/logo-white.svg Normal file
View File

@@ -0,0 +1,40 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:serif="http://www.serif.com/" width="100%" height="100%" viewBox="0 0 295 99" version="1.1" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;">
<g transform="matrix(1,0,0,1,0.000798697,0)">
<path d="M83.219,92.879C83.219,93.629 82.973,94.043 81.992,94.043C81.008,94.043 80.82,93.629 80.82,92.91L80.82,89.969C80.82,89.25 81.008,88.836 81.992,88.836C83.043,88.836 83.219,89.25 83.219,89.988L84.578,89.988C84.578,88.305 83.82,87.637 81.992,87.637C80.16,87.637 79.461,88.297 79.461,89.898L79.461,92.98C79.461,94.543 80.191,95.242 81.992,95.242C83.793,95.242 84.578,94.543 84.578,92.879L83.219,92.879Z" style="fill:white;fill-rule:nonzero;"></path>
<path d="M90.543,87.656L89.195,87.656L87.102,95.223L88.496,95.223L88.891,93.883L90.828,93.883L91.211,95.223L92.609,95.223L90.543,87.656ZM89.227,92.555L89.855,89.754L90.484,92.555L89.227,92.555Z" style="fill:white;fill-rule:nonzero;"></path>
<path d="M95.336,95.223L97.836,95.223C99.668,95.223 100.523,94.574 100.523,92.871C100.523,91.828 99.922,91.148 99.137,90.98C99.734,90.578 99.824,90.117 99.824,89.652C99.824,88.473 98.957,87.648 97.59,87.648L95.336,87.648L95.336,95.223ZM96.688,91.809L97.836,91.809C98.82,91.809 99.066,92.152 99.066,92.898C99.066,93.617 98.91,93.992 97.855,93.992L96.688,93.992L96.688,91.809ZM97.59,88.809C98.258,88.809 98.426,89.289 98.426,89.672C98.426,90.156 98.16,90.559 97.602,90.559L96.695,90.559L96.695,88.809L97.59,88.809Z" style="fill:white;fill-rule:nonzero;"></path>
<path d="M107.906,93.98L104.98,93.98L104.98,87.648L103.613,87.648L103.613,95.223L107.906,95.223L107.906,93.98Z" style="fill:white;fill-rule:nonzero;"></path>
<path d="M110.879,87.648L110.879,95.23L115.375,95.23L115.375,93.992L112.238,93.992L112.238,91.996L114.793,91.996L114.793,90.773L112.238,90.773L112.238,88.828L115.238,88.828L115.238,87.648L110.879,87.648Z" style="fill:white;fill-rule:nonzero;"></path>
<path d="M121.684,89.625L123.051,89.625C122.926,88.109 122.02,87.605 120.652,87.605C119.098,87.605 118.23,88.344 118.23,89.762C118.23,91.324 119.137,91.75 119.992,91.855C120.797,91.965 121.863,91.965 121.863,92.859C121.863,93.715 121.488,94.062 120.672,94.062C119.805,94.062 119.551,93.746 119.52,93.164L118.152,93.164C118.152,94.387 118.754,95.301 120.641,95.301C122.461,95.301 123.219,94.562 123.219,92.812C123.219,91.297 122.383,90.941 121.508,90.805C120.355,90.629 119.598,90.707 119.598,89.754C119.598,89.035 119.902,88.797 120.652,88.797C121.309,88.797 121.645,88.984 121.684,89.625Z" style="fill:white;fill-rule:nonzero;"></path>
<path d="M135.348,87.648L130.91,87.648L130.91,95.23L132.258,95.23L132.258,92.004L134.875,92.004L134.875,90.773L132.258,90.773L132.258,88.887L135.348,88.887L135.348,87.648Z" style="fill:white;fill-rule:nonzero;"></path>
<path d="M140.82,95.289C142.621,95.289 143.406,94.594 143.406,93.027L143.406,89.82C143.406,88.219 142.648,87.559 140.82,87.559C138.988,87.559 138.289,88.219 138.289,89.82L138.289,93.027C138.289,94.594 139.02,95.289 140.82,95.289ZM140.82,94.09C139.836,94.09 139.648,93.676 139.648,92.961L139.648,89.891C139.648,89.199 139.836,88.758 140.82,88.758C141.871,88.758 142.051,89.199 142.051,89.891L142.051,92.961C142.051,93.676 141.805,94.09 140.82,94.09Z" style="fill:white;fill-rule:nonzero;"></path>
<path d="M151.703,95.223L150.039,92.34C150.957,92.043 151.348,91.434 151.348,90.312L151.348,89.918C151.348,88.316 150.492,87.648 148.664,87.648L146.754,87.648L146.754,95.223L148.113,95.223L148.113,92.555L148.613,92.555L150.121,95.223L151.703,95.223ZM148.102,91.305L148.102,88.895L148.684,88.895C149.734,88.895 149.922,89.27 149.922,89.988L149.922,90.242C149.922,90.961 149.648,91.305 148.664,91.305L148.102,91.305Z" style="fill:white;fill-rule:nonzero;"></path>
<path d="M161.707,87.656L160.359,87.656L158.262,95.223L159.66,95.223L160.055,93.883L161.992,93.883L162.375,95.223L163.773,95.223L161.707,87.656ZM160.387,92.555L161.016,89.754L161.648,92.555L160.387,92.555Z" style="fill:white;fill-rule:nonzero;"></path>
<path d="M173.254,92.145L174.543,92.145L174.543,92.879C174.543,93.629 174.195,94.043 173.215,94.043C172.23,94.043 172.043,93.629 172.043,92.91L172.043,89.938C172.043,89.25 172.23,88.809 173.215,88.809C174.266,88.809 174.441,89.16 174.441,89.871L175.801,89.871C175.801,88.246 175.043,87.605 173.215,87.605C171.383,87.605 170.684,88.324 170.684,89.871L170.684,92.91C170.684,94.543 171.414,95.262 173.215,95.262C175.012,95.262 175.801,94.543 175.801,92.879L175.801,90.914L173.254,90.914L173.254,92.145Z" style="fill:white;fill-rule:nonzero;"></path>
<path d="M184.02,95.223L182.355,92.34C183.27,92.043 183.664,91.434 183.664,90.312L183.664,89.918C183.664,88.316 182.809,87.648 180.98,87.648L179.07,87.648L179.07,95.223L180.426,95.223L180.426,92.555L180.93,92.555L182.434,95.223L184.02,95.223ZM180.418,91.305L180.418,88.895L181,88.895C182.051,88.895 182.238,89.27 182.238,89.988L182.238,90.242C182.238,90.961 181.961,91.305 180.98,91.305L180.418,91.305Z" style="fill:white;fill-rule:nonzero;"></path>
<path d="M186.965,87.648L186.965,95.23L191.461,95.23L191.461,93.992L188.32,93.992L188.32,91.996L190.879,91.996L190.879,90.773L188.32,90.773L188.32,88.828L191.32,88.828L191.32,87.648L186.965,87.648Z" style="fill:white;fill-rule:nonzero;"></path>
<path d="M194.562,87.648L194.562,95.23L199.059,95.23L199.059,93.992L195.918,93.992L195.918,91.996L198.477,91.996L198.477,90.773L195.918,90.773L195.918,88.828L198.922,88.828L198.922,87.648L194.562,87.648Z" style="fill:white;fill-rule:nonzero;"></path>
<path d="M206.922,87.656L205.574,87.656L205.574,89.445L205.723,92.645L203.496,87.656L202.148,87.656L202.148,95.223L203.496,95.223L203.496,93.293L203.379,90.422L205.602,95.223L206.922,95.223L206.922,87.656Z" style="fill:white;fill-rule:nonzero;"></path>
<path d="M210.34,87.648L210.34,95.23L214.836,95.23L214.836,93.992L211.695,93.992L211.695,91.996L214.254,91.996L214.254,90.773L211.695,90.773L211.695,88.828L214.695,88.828L214.695,87.648L210.34,87.648Z" style="fill:white;fill-rule:nonzero;"></path>
<path d="M222.887,95.223L221.223,92.34C222.137,92.043 222.531,91.434 222.531,90.312L222.531,89.918C222.531,88.316 221.676,87.648 219.848,87.648L217.938,87.648L217.938,95.223L219.293,95.223L219.293,92.555L219.797,92.555L221.301,95.223L222.887,95.223ZM219.285,91.305L219.285,88.895L219.867,88.895C220.918,88.895 221.105,89.27 221.105,89.988L221.105,90.242C221.105,90.961 220.828,91.305 219.844,91.305L219.285,91.305Z" style="fill:white;fill-rule:nonzero;"></path>
<path d="M233.93,87.676L229.445,87.676L229.445,88.887L231.02,88.887L231.02,95.223L232.367,95.223L232.367,88.887L233.93,88.887L233.93,87.676Z" style="fill:white;fill-rule:nonzero;"></path>
<path d="M238.922,95.289C240.723,95.289 241.508,94.594 241.508,93.027L241.508,89.82C241.508,88.219 240.75,87.559 238.922,87.559C237.094,87.559 236.395,88.219 236.395,89.82L236.395,93.027C236.395,94.594 237.121,95.289 238.922,95.289ZM238.922,94.09C237.938,94.09 237.75,93.676 237.75,92.961L237.75,89.891C237.75,89.199 237.938,88.758 238.922,88.758C239.973,88.758 240.152,89.199 240.152,89.891L240.152,92.961C240.152,93.676 239.906,94.09 238.922,94.09Z" style="fill:white;fill-rule:nonzero;"></path>
<path d="M247.867,93.43L249.375,90.383L249.215,92.547L249.215,95.223L250.574,95.223L250.574,87.648L249.266,87.648L247.711,91L246.164,87.648L244.859,87.648L244.859,95.223L246.215,95.223L246.215,92.547L246.059,90.383L247.562,93.43L247.867,93.43Z" style="fill:white;fill-rule:nonzero;"></path>
<path d="M256.41,95.289C258.211,95.289 259,94.594 259,93.027L259,89.82C259,88.219 258.242,87.559 256.41,87.559C254.582,87.559 253.883,88.219 253.883,89.82L253.883,93.027C253.883,94.594 254.609,95.289 256.41,95.289ZM256.41,94.09C255.426,94.09 255.238,93.676 255.238,92.961L255.238,89.891C255.238,89.199 255.426,88.758 256.41,88.758C257.465,88.758 257.64,89.199 257.64,89.891L257.64,92.961C257.64,93.676 257.394,94.09 256.41,94.09Z" style="fill:white;fill-rule:nonzero;"></path>
<path d="M267.297,95.223L265.633,92.34C266.547,92.043 266.941,91.434 266.941,90.312L266.941,89.918C266.941,88.316 266.086,87.648 264.254,87.648L262.348,87.648L262.348,95.223L263.703,95.223L263.703,92.555L264.207,92.555L265.711,95.223L267.297,95.223ZM263.695,91.305L263.695,88.895L264.273,88.895C265.328,88.895 265.516,89.27 265.516,89.988L265.516,90.242C265.516,90.961 265.238,91.305 264.254,91.305L263.695,91.305Z" style="fill:white;fill-rule:nonzero;"></path>
<path d="M275.188,95.223L273.527,92.34C274.441,92.043 274.836,91.434 274.836,90.312L274.836,89.918C274.836,88.316 273.977,87.648 272.148,87.648L270.238,87.648L270.238,95.223L271.598,95.223L271.598,92.555L272.098,92.555L273.605,95.223L275.188,95.223ZM271.586,91.305L271.586,88.895L272.168,88.895C273.223,88.895 273.406,89.27 273.406,89.988L273.406,90.242C273.406,90.961 273.133,91.305 272.148,91.305L271.586,91.305Z" style="fill:white;fill-rule:nonzero;"></path>
<path d="M280.555,95.289C282.355,95.289 283.141,94.594 283.141,93.027L283.141,89.82C283.141,88.219 282.383,87.559 280.555,87.559C278.723,87.559 278.023,88.219 278.023,89.82L278.023,93.027C278.023,94.594 278.754,95.289 280.555,95.289ZM280.555,94.09C279.57,94.09 279.383,93.676 279.383,92.961L279.383,89.891C279.383,89.199 279.57,88.758 280.555,88.758C281.605,88.758 281.785,89.199 281.785,89.891L281.785,92.961C281.785,93.676 281.539,94.09 280.555,94.09Z" style="fill:white;fill-rule:nonzero;"></path>
<path d="M290.141,91.141L291.25,95.23L292.688,95.23L294.586,87.648L293.188,87.648L292.441,90.262L292,93.352L290.66,87.895L289.617,87.895L288.379,93.352L287.836,90.262L287.09,87.648L285.691,87.648L287.699,95.23L289.125,95.23L290.141,91.141Z" style="fill:white;fill-rule:nonzero;"></path>
<path d="M90.383,76.133C90.336,76.137 90.293,76.141 90.25,76.141L80.816,76.141C80.773,76.141 80.73,76.137 80.684,76.133C80.641,76.129 80.598,76.121 80.555,76.113C80.508,76.105 80.465,76.094 80.426,76.082C80.383,76.066 80.34,76.055 80.297,76.035C80.258,76.02 80.219,76 80.18,75.98C80.141,75.957 80.102,75.934 80.066,75.91C80.027,75.887 79.992,75.859 79.957,75.832C79.922,75.805 79.891,75.773 79.859,75.742C79.828,75.711 79.797,75.68 79.77,75.645C79.742,75.609 79.715,75.574 79.691,75.535C79.668,75.5 79.645,75.461 79.621,75.422C79.602,75.383 79.582,75.344 79.566,75.301C79.547,75.262 79.535,75.219 79.52,75.176C79.508,75.137 79.496,75.094 79.488,75.047C79.48,75.004 79.473,74.961 79.469,74.918C79.465,74.871 79.461,74.828 79.461,74.785L79.461,17.875C79.461,17.828 79.465,17.785 79.469,17.742C79.473,17.695 79.48,17.652 79.488,17.609C79.496,17.566 79.508,17.523 79.52,17.48C79.535,17.438 79.547,17.395 79.566,17.355C79.582,17.312 79.602,17.273 79.621,17.234C79.645,17.195 79.668,17.156 79.691,17.121C79.715,17.082 79.742,17.047 79.77,17.012C79.797,16.98 79.828,16.945 79.859,16.914C79.891,16.883 79.922,16.855 79.957,16.824C79.992,16.797 80.027,16.77 80.066,16.746C80.102,16.723 80.141,16.699 80.18,16.68C80.219,16.656 80.258,16.637 80.297,16.621C80.34,16.605 80.383,16.59 80.426,16.578C80.465,16.562 80.508,16.555 80.555,16.543C80.598,16.535 80.641,16.527 80.684,16.523C80.73,16.52 80.773,16.52 80.816,16.52L90.25,16.52C90.293,16.52 90.336,16.52 90.383,16.523C90.426,16.527 90.469,16.535 90.512,16.543C90.555,16.555 90.598,16.562 90.641,16.578C90.684,16.59 90.727,16.605 90.766,16.621C90.809,16.637 90.848,16.656 90.887,16.68C90.926,16.699 90.965,16.723 91,16.746C91.039,16.77 91.074,16.797 91.109,16.824C91.141,16.855 91.176,16.883 91.207,16.914C91.238,16.945 91.27,16.98 91.297,17.012C91.324,17.047 91.352,17.082 91.375,17.121C91.398,17.156 91.422,17.195 91.441,17.234C91.465,17.273 91.484,17.312 91.5,17.355C91.516,17.395 91.531,17.438 91.547,17.48C91.559,17.523 91.57,17.566 91.578,17.609C91.586,17.652 91.594,17.695 91.598,17.742C91.602,17.785 91.602,17.828 91.602,17.875L91.602,44.699L129.363,16.785C129.477,16.695 129.604,16.633 129.742,16.586C129.882,16.539 130.022,16.52 130.168,16.52L143.746,16.52C143.852,16.52 143.953,16.531 144.059,16.555C144.16,16.578 144.258,16.613 144.355,16.664C144.449,16.711 144.535,16.77 144.617,16.836C144.699,16.906 144.77,16.98 144.832,17.066C144.859,17.102 144.883,17.137 144.906,17.176C144.93,17.215 144.949,17.254 144.969,17.293C144.988,17.332 145.004,17.375 145.02,17.418C145.035,17.457 145.047,17.5 145.059,17.543C145.07,17.586 145.078,17.629 145.086,17.676C145.09,17.719 145.098,17.762 145.098,17.805C145.102,17.852 145.102,17.895 145.098,17.941C145.098,17.984 145.09,18.027 145.086,18.07C145.078,18.117 145.07,18.16 145.059,18.203C145.047,18.246 145.035,18.289 145.02,18.328C145.004,18.371 144.988,18.414 144.969,18.453C144.949,18.492 144.93,18.531 144.906,18.57C144.883,18.609 144.859,18.645 144.832,18.68C144.805,18.715 144.777,18.75 144.75,18.781C144.719,18.816 144.688,18.848 144.656,18.879C144.621,18.906 144.586,18.934 144.551,18.961L91.602,58.23L91.602,74.785C91.602,74.828 91.602,74.871 91.598,74.918C91.594,74.961 91.586,75.004 91.578,75.047C91.57,75.094 91.559,75.137 91.547,75.176C91.531,75.219 91.516,75.262 91.5,75.301C91.484,75.344 91.465,75.383 91.441,75.422C91.422,75.461 91.398,75.5 91.375,75.535C91.352,75.574 91.324,75.609 91.297,75.645C91.27,75.68 91.238,75.711 91.207,75.742C91.176,75.773 91.141,75.805 91.109,75.832C91.074,75.859 91.039,75.887 91,75.91C90.965,75.934 90.926,75.957 90.887,75.98C90.848,76 90.809,76.02 90.766,76.035C90.727,76.055 90.684,76.066 90.641,76.082C90.598,76.094 90.555,76.105 90.512,76.113C90.469,76.121 90.426,76.129 90.383,76.133ZM88.93,57.234C88.906,57.34 88.895,57.441 88.895,57.547L88.895,73.43L82.172,73.43L82.172,19.227L88.895,19.227L88.895,47.387C88.895,47.531 88.914,47.672 88.961,47.809C89.008,47.949 89.074,48.074 89.16,48.191C89.211,48.262 89.27,48.328 89.336,48.387C89.402,48.449 89.473,48.5 89.551,48.547C89.625,48.594 89.707,48.629 89.789,48.66C89.875,48.691 89.961,48.711 90.047,48.727C90.137,48.738 90.223,48.742 90.312,48.738C90.402,48.734 90.488,48.723 90.574,48.699C90.66,48.68 90.746,48.648 90.824,48.613C90.906,48.574 90.98,48.527 91.055,48.477L130.613,19.227L139.645,19.227L89.441,56.461C89.355,56.523 89.281,56.594 89.211,56.676C89.145,56.758 89.086,56.844 89.039,56.938C88.992,57.035 88.953,57.133 88.93,57.234Z" style="fill:white;"></path>
<path d="M148.246,74.535C148.262,74.617 148.27,74.699 148.27,74.785C148.27,74.828 148.27,74.871 148.262,74.918C148.258,74.961 148.254,75.004 148.246,75.047C148.234,75.094 148.227,75.137 148.211,75.176C148.199,75.219 148.184,75.262 148.168,75.301C148.148,75.344 148.133,75.383 148.109,75.422C148.09,75.461 148.066,75.5 148.043,75.535C148.016,75.574 147.992,75.609 147.961,75.645C147.934,75.68 147.906,75.711 147.875,75.742C147.844,75.773 147.809,75.805 147.773,75.832C147.742,75.859 147.707,75.887 147.668,75.91C147.633,75.934 147.594,75.957 147.555,75.98C147.516,76 147.477,76.02 147.434,76.035C147.395,76.055 147.352,76.066 147.309,76.082C147.266,76.094 147.223,76.105 147.18,76.113C147.137,76.121 147.094,76.129 147.047,76.133C147.004,76.137 146.961,76.141 146.914,76.141L134.719,76.141C134.625,76.141 134.531,76.129 134.441,76.109C134.348,76.09 134.258,76.062 134.172,76.023C134.086,75.984 134.004,75.938 133.926,75.883C133.852,75.828 133.781,75.766 133.719,75.695L110.465,50.086C110.438,50.055 110.41,50.02 110.383,49.988C110.355,49.953 110.332,49.914 110.309,49.879C110.285,49.84 110.266,49.801 110.246,49.762C110.227,49.719 110.211,49.68 110.195,49.637C110.18,49.598 110.168,49.555 110.156,49.512C110.145,49.469 110.137,49.426 110.129,49.379C110.121,49.336 110.117,49.293 110.113,49.246L110.113,49.113C110.117,49.07 110.121,49.027 110.125,48.984C110.133,48.938 110.141,48.895 110.152,48.852C110.164,48.809 110.176,48.766 110.191,48.723C110.203,48.684 110.223,48.641 110.238,48.602C110.258,48.562 110.281,48.523 110.301,48.484C110.324,48.445 110.348,48.41 110.375,48.371C110.402,48.336 110.43,48.301 110.461,48.27C110.488,48.238 110.52,48.203 110.551,48.176C110.586,48.145 110.621,48.117 110.656,48.09L117.809,42.723C117.844,42.699 117.879,42.676 117.914,42.652C117.949,42.633 117.984,42.613 118.023,42.594C118.059,42.574 118.098,42.559 118.137,42.543C118.176,42.527 118.215,42.516 118.254,42.504C118.293,42.492 118.336,42.484 118.375,42.477C118.418,42.469 118.457,42.461 118.5,42.457C118.543,42.457 118.582,42.453 118.625,42.453C118.668,42.453 118.707,42.457 118.75,42.461C118.789,42.465 118.832,42.469 118.871,42.477C118.914,42.484 118.953,42.492 118.992,42.504C119.035,42.516 119.074,42.531 119.113,42.547C119.152,42.559 119.188,42.578 119.227,42.594C119.266,42.613 119.301,42.633 119.336,42.656C119.371,42.68 119.406,42.703 119.438,42.727C119.473,42.75 119.504,42.777 119.535,42.805C119.566,42.836 119.594,42.863 119.621,42.895L147.918,73.871C147.973,73.934 148.023,74 148.066,74.07C148.109,74.141 148.148,74.215 148.18,74.293C148.211,74.371 148.23,74.453 148.246,74.535ZM135.32,73.43L113.473,49.363L118.453,45.629L143.844,73.43L135.32,73.43Z" style="fill:white;"></path>
<path d="M171.984,16.52C171.938,16.52 171.895,16.52 171.852,16.523C171.805,16.527 171.762,16.535 171.719,16.543C171.676,16.555 171.633,16.562 171.59,16.578C171.547,16.59 171.504,16.605 171.465,16.621C171.426,16.637 171.383,16.656 171.344,16.68C171.305,16.699 171.27,16.723 171.23,16.746C171.195,16.77 171.156,16.797 171.125,16.824C171.09,16.855 171.055,16.883 171.023,16.914C170.992,16.945 170.965,16.98 170.938,17.012C170.906,17.047 170.883,17.082 170.855,17.121C170.832,17.156 170.809,17.195 170.789,17.234C170.766,17.273 170.75,17.312 170.73,17.355C170.715,17.395 170.699,17.438 170.688,17.48C170.676,17.523 170.664,17.566 170.652,17.609C170.645,17.652 170.641,17.695 170.637,17.742C170.629,17.785 170.629,17.828 170.629,17.875L170.629,74.785C170.629,74.828 170.629,74.871 170.637,74.918C170.641,74.961 170.645,75.004 170.652,75.047C170.664,75.094 170.676,75.137 170.688,75.176C170.699,75.219 170.715,75.262 170.73,75.301C170.75,75.344 170.766,75.383 170.789,75.422C170.809,75.461 170.832,75.5 170.855,75.535C170.883,75.574 170.906,75.609 170.938,75.645C170.965,75.68 170.992,75.711 171.023,75.742C171.055,75.773 171.09,75.805 171.125,75.832C171.156,75.859 171.195,75.887 171.23,75.91C171.27,75.934 171.305,75.957 171.344,75.98C171.383,76 171.426,76.02 171.465,76.035C171.504,76.055 171.547,76.066 171.59,76.082C171.633,76.094 171.676,76.105 171.719,76.113C171.762,76.121 171.805,76.129 171.852,76.133C171.895,76.137 171.938,76.141 171.984,76.141L212.391,76.141C212.434,76.141 212.48,76.137 212.523,76.133C212.566,76.129 212.609,76.121 212.656,76.113C212.699,76.105 212.742,76.094 212.785,76.082C212.828,76.066 212.867,76.055 212.91,76.035C212.949,76.02 212.988,76 213.027,75.98C213.066,75.957 213.105,75.934 213.145,75.91C213.18,75.887 213.215,75.859 213.25,75.832C213.285,75.805 213.316,75.773 213.348,75.742C213.379,75.711 213.41,75.68 213.438,75.645C213.465,75.609 213.492,75.574 213.516,75.535C213.543,75.5 213.566,75.461 213.586,75.422C213.605,75.383 213.625,75.344 213.641,75.301C213.66,75.262 213.672,75.219 213.688,75.176C213.699,75.137 213.711,75.094 213.719,75.047C213.727,75.004 213.734,74.961 213.738,74.918C213.742,74.871 213.746,74.828 213.746,74.785L213.746,66.328C213.746,66.285 213.742,66.238 213.738,66.195C213.734,66.152 213.727,66.109 213.719,66.062C213.711,66.02 213.699,65.977 213.688,65.934C213.672,65.895 213.66,65.852 213.641,65.809C213.625,65.77 213.605,65.73 213.586,65.691C213.566,65.652 213.543,65.613 213.516,65.574C213.492,65.539 213.465,65.504 213.438,65.469C213.41,65.434 213.379,65.402 213.348,65.372C213.316,65.34 213.285,65.309 213.25,65.281C213.215,65.254 213.18,65.227 213.145,65.204C213.105,65.177 213.066,65.156 213.027,65.134C212.988,65.113 212.949,65.094 212.91,65.079C212.867,65.059 212.828,65.047 212.785,65.031C212.742,65.02 212.699,65.009 212.656,65C212.609,64.992 212.566,64.984 212.523,64.981C212.48,64.977 212.434,64.973 212.391,64.973L182.77,64.973L182.77,17.875C182.77,17.828 182.766,17.785 182.762,17.742C182.758,17.695 182.754,17.652 182.742,17.609C182.734,17.566 182.723,17.523 182.711,17.48C182.699,17.438 182.684,17.395 182.668,17.355C182.648,17.312 182.629,17.273 182.609,17.234C182.59,17.195 182.566,17.156 182.543,17.121C182.516,17.082 182.488,17.047 182.461,17.012C182.434,16.98 182.402,16.945 182.371,16.914C182.34,16.883 182.309,16.855 182.273,16.824C182.238,16.797 182.203,16.77 182.168,16.746C182.129,16.723 182.094,16.699 182.055,16.68C182.016,16.656 181.973,16.637 181.934,16.621C181.891,16.605 181.852,16.59 181.809,16.578C181.766,16.562 181.723,16.555 181.68,16.543C181.637,16.535 181.59,16.527 181.547,16.523C181.504,16.52 181.457,16.52 181.414,16.52L171.984,16.52ZM173.34,19.227L173.34,73.43L211.035,73.43L211.035,67.684L181.414,67.684C181.371,67.684 181.324,67.68 181.281,67.676C181.238,67.672 181.195,67.668 181.148,67.656C181.105,67.648 181.062,67.637 181.02,67.625C180.977,67.613 180.938,67.598 180.895,67.582C180.855,67.562 180.816,67.543 180.777,67.523C180.738,67.504 180.699,67.48 180.66,67.457C180.625,67.43 180.59,67.406 180.555,67.375C180.52,67.348 180.488,67.316 180.457,67.285C180.426,67.254 180.395,67.223 180.367,67.188C180.34,67.152 180.312,67.117 180.289,67.082C180.262,67.043 180.238,67.008 180.219,66.969C180.199,66.93 180.18,66.887 180.164,66.848C180.145,66.805 180.129,66.766 180.117,66.723C180.105,66.68 180.094,66.637 180.086,66.594C180.078,66.551 180.07,66.504 180.066,66.461C180.062,66.418 180.059,66.375 180.059,66.328L180.059,19.227L173.34,19.227Z" style="fill:white;"></path>
<path d="M294.578,66.195C294.582,66.238 294.586,66.285 294.586,66.328L294.586,74.785C294.586,74.828 294.582,74.871 294.578,74.918C294.574,74.961 294.57,75.004 294.559,75.047C294.551,75.094 294.539,75.137 294.527,75.176C294.516,75.219 294.5,75.262 294.484,75.301C294.465,75.344 294.445,75.383 294.426,75.422C294.406,75.461 294.383,75.5 294.359,75.535C294.332,75.574 294.305,75.609 294.277,75.645C294.25,75.68 294.219,75.711 294.188,75.742C294.156,75.773 294.125,75.805 294.09,75.832C294.055,75.859 294.02,75.887 293.984,75.91C293.945,75.934 293.91,75.957 293.871,75.98C293.832,76 293.789,76.02 293.75,76.035C293.707,76.055 293.668,76.066 293.625,76.082C293.582,76.094 293.539,76.105 293.496,76.113C293.453,76.121 293.406,76.129 293.363,76.133C293.32,76.137 293.273,76.141 293.23,76.141L237.457,76.141C237.414,76.141 237.371,76.137 237.324,76.133C237.281,76.129 237.238,76.121 237.195,76.113C237.148,76.105 237.105,76.094 237.062,76.082C237.023,76.066 236.98,76.055 236.941,76.035C236.898,76.02 236.859,76 236.82,75.98C236.781,75.957 236.742,75.934 236.707,75.91C236.668,75.887 236.633,75.859 236.598,75.832C236.562,75.805 236.531,75.773 236.5,75.742C236.469,75.711 236.438,75.68 236.41,75.645C236.383,75.609 236.355,75.574 236.332,75.535C236.305,75.5 236.285,75.461 236.262,75.422C236.242,75.383 236.223,75.344 236.207,75.301C236.188,75.262 236.176,75.219 236.16,75.176C236.148,75.137 236.137,75.094 236.129,75.047C236.121,75.004 236.113,74.961 236.109,74.918C236.105,74.871 236.102,74.828 236.102,74.785L236.102,66.328C236.102,66.23 236.113,66.137 236.133,66.043C236.156,65.945 236.184,65.855 236.227,65.766C236.266,65.68 236.312,65.594 236.371,65.52C236.43,65.441 236.496,65.372 236.57,65.305L292.344,16.852C292.402,16.797 292.469,16.75 292.539,16.707C292.609,16.668 292.68,16.633 292.758,16.605C292.832,16.574 292.91,16.555 292.988,16.539C293.07,16.523 293.148,16.52 293.23,16.52C293.273,16.52 293.32,16.52 293.363,16.523C293.406,16.527 293.453,16.535 293.496,16.543C293.539,16.555 293.582,16.562 293.625,16.578C293.668,16.59 293.707,16.605 293.75,16.621C293.789,16.637 293.832,16.656 293.871,16.68C293.91,16.699 293.945,16.723 293.984,16.746C294.02,16.77 294.055,16.797 294.09,16.824C294.125,16.855 294.156,16.883 294.188,16.914C294.219,16.945 294.25,16.98 294.277,17.012C294.305,17.047 294.332,17.082 294.359,17.121C294.383,17.156 294.406,17.195 294.426,17.234C294.445,17.273 294.465,17.312 294.484,17.355C294.5,17.395 294.516,17.438 294.527,17.48C294.539,17.523 294.551,17.566 294.559,17.609C294.57,17.652 294.574,17.695 294.578,17.742C294.582,17.785 294.586,17.828 294.586,17.875L294.586,28.766C294.586,28.863 294.574,28.961 294.555,29.055C294.535,29.148 294.504,29.238 294.465,29.328C294.426,29.418 294.375,29.5 294.316,29.578C294.262,29.652 294.195,29.727 294.121,29.789L253.906,64.899L293.234,64.973C293.277,64.973 293.324,64.977 293.367,64.981C293.41,64.984 293.453,64.992 293.496,65C293.543,65.009 293.582,65.02 293.625,65.031C293.668,65.047 293.711,65.062 293.75,65.079C293.793,65.094 293.832,65.113 293.871,65.134C293.91,65.156 293.949,65.18 293.984,65.204C294.023,65.227 294.059,65.254 294.09,65.281C294.125,65.309 294.16,65.34 294.191,65.372C294.223,65.402 294.25,65.439 294.277,65.469C294.309,65.504 294.332,65.539 294.359,65.578C294.383,65.613 294.406,65.652 294.426,65.691C294.445,65.73 294.465,65.77 294.484,65.812C294.5,65.852 294.516,65.895 294.527,65.938C294.539,65.977 294.551,66.02 294.559,66.066C294.57,66.109 294.574,66.152 294.578,66.195ZM250.301,67.602L291.875,67.68L291.875,73.43L238.812,73.43L238.812,66.945L291.875,20.844L291.875,28.152L249.414,65.227C249.34,65.289 249.273,65.359 249.219,65.439C249.16,65.516 249.109,65.598 249.07,65.688C249.031,65.773 249,65.863 248.98,65.957C248.957,66.055 248.949,66.148 248.949,66.246C248.949,66.289 248.949,66.332 248.953,66.379C248.961,66.422 248.965,66.465 248.973,66.508C248.984,66.555 248.992,66.598 249.008,66.637C249.02,66.68 249.035,66.723 249.051,66.762C249.066,66.805 249.086,66.844 249.105,66.883C249.129,66.922 249.152,66.961 249.176,67C249.199,67.035 249.227,67.07 249.254,67.105C249.281,67.141 249.312,67.172 249.344,67.203C249.375,67.234 249.406,67.266 249.441,67.293C249.477,67.32 249.512,67.348 249.551,67.371C249.586,67.398 249.625,67.422 249.664,67.441C249.703,67.461 249.742,67.48 249.781,67.5C249.824,67.516 249.867,67.531 249.906,67.543C249.949,67.555 249.992,67.566 250.035,67.574C250.082,67.586 250.125,67.59 250.168,67.594C250.211,67.602 250.258,67.602 250.301,67.602Z" style="fill:white;"></path>
<path d="M238.059,16.523C238.102,16.52 238.145,16.52 238.191,16.52L281.281,16.52C281.383,16.52 281.484,16.531 281.582,16.551C281.684,16.574 281.781,16.609 281.871,16.656C281.965,16.699 282.051,16.754 282.133,16.82C282.211,16.883 282.281,16.957 282.348,17.039C282.375,17.074 282.398,17.109 282.422,17.145C282.445,17.184 282.469,17.223 282.488,17.262C282.508,17.301 282.527,17.34 282.543,17.383C282.559,17.426 282.574,17.465 282.586,17.508C282.598,17.551 282.605,17.594 282.613,17.641C282.621,17.684 282.629,17.727 282.629,17.77C282.633,17.816 282.637,17.859 282.633,17.902C282.633,17.949 282.629,17.992 282.625,18.035C282.621,18.082 282.613,18.125 282.602,18.168C282.594,18.211 282.582,18.254 282.566,18.297C282.555,18.336 282.539,18.379 282.52,18.418C282.5,18.461 282.48,18.5 282.461,18.539C282.438,18.578 282.414,18.613 282.387,18.652C282.363,18.688 282.336,18.723 282.309,18.758C282.277,18.789 282.246,18.82 282.215,18.852C282.184,18.883 282.148,18.914 282.117,18.941L271.223,27.477C271.102,27.57 270.969,27.641 270.828,27.691C270.684,27.738 270.535,27.766 270.387,27.766L238.191,27.766C238.145,27.766 238.102,27.762 238.059,27.758C238.012,27.754 237.969,27.746 237.926,27.738C237.883,27.73 237.84,27.719 237.797,27.707C237.754,27.695 237.711,27.68 237.672,27.66C237.629,27.645 237.59,27.625 237.551,27.605C237.512,27.582 237.473,27.562 237.438,27.535C237.398,27.512 237.363,27.484 237.328,27.457C237.297,27.43 237.262,27.398 237.23,27.367C237.199,27.336 237.172,27.305 237.141,27.27C237.113,27.234 237.09,27.199 237.062,27.164C237.039,27.125 237.016,27.086 236.996,27.047C236.973,27.008 236.953,26.969 236.938,26.93C236.922,26.887 236.906,26.844 236.895,26.805C236.879,26.762 236.871,26.719 236.859,26.676C236.852,26.629 236.844,26.586 236.84,26.543C236.836,26.5 236.836,26.453 236.836,26.41L236.836,17.875C236.836,17.828 236.836,17.785 236.84,17.742C236.844,17.695 236.852,17.652 236.859,17.609C236.871,17.566 236.879,17.523 236.895,17.48C236.906,17.438 236.922,17.395 236.938,17.355C236.953,17.312 236.973,17.273 236.996,17.234C237.016,17.195 237.039,17.156 237.062,17.121C237.09,17.082 237.113,17.047 237.141,17.012C237.172,16.98 237.199,16.945 237.23,16.914C237.262,16.883 237.297,16.855 237.328,16.824C237.363,16.797 237.398,16.77 237.438,16.746C237.473,16.723 237.512,16.699 237.551,16.68C237.59,16.656 237.629,16.637 237.672,16.621C237.711,16.605 237.754,16.59 237.797,16.578C237.84,16.562 237.883,16.555 237.926,16.543C237.969,16.535 238.012,16.527 238.059,16.523ZM277.352,19.227L269.918,25.055L239.543,25.055L239.543,19.227L277.352,19.227Z" style="fill:white;"></path>
<path d="M24.406,28.266L16.988,0.547C16.988,0.328 16.77,0.109 16.441,0.109L15.023,0C14.586,0 14.258,0.328 14.367,0.762L19.059,27.5C19.059,27.719 19.277,27.828 19.496,27.938L21.57,28.59C21.789,28.59 21.898,28.699 22.008,28.918C22.66,28.484 23.426,28.266 24.188,28.266L24.406,28.266Z" style="fill:white;"></path>
<path d="M26.688,32.547C26.695,32.465 26.699,32.383 26.699,32.301C26.699,32.219 26.695,32.137 26.688,32.055C26.68,31.973 26.668,31.895 26.652,31.812C26.633,31.73 26.613,31.652 26.59,31.574C26.566,31.496 26.539,31.418 26.508,31.34C26.477,31.266 26.441,31.191 26.402,31.117C26.363,31.047 26.32,30.977 26.277,30.906C26.23,30.84 26.18,30.773 26.129,30.711C26.078,30.648 26.023,30.586 25.965,30.527C25.906,30.469 25.844,30.414 25.781,30.363C25.719,30.309 25.652,30.262 25.582,30.215C25.516,30.168 25.445,30.125 25.371,30.09C25.301,30.051 25.227,30.016 25.148,29.984C25.074,29.953 24.996,29.926 24.918,29.898C24.84,29.875 24.758,29.855 24.68,29.84C24.598,29.824 24.516,29.812 24.434,29.805C24.352,29.797 24.27,29.793 24.188,29.793C24.105,29.793 24.023,29.797 23.945,29.805C23.859,29.812 23.781,29.824 23.699,29.84C23.617,29.855 23.539,29.875 23.461,29.898C23.383,29.926 23.305,29.953 23.23,29.984C23.152,30.016 23.078,30.051 23.008,30.09C22.934,30.125 22.863,30.168 22.793,30.215C22.727,30.262 22.66,30.309 22.598,30.363C22.535,30.414 22.473,30.469 22.414,30.527C22.355,30.586 22.301,30.648 22.25,30.711C22.195,30.773 22.148,30.84 22.102,30.906C22.055,30.977 22.016,31.047 21.977,31.117C21.938,31.191 21.902,31.266 21.871,31.34C21.84,31.418 21.812,31.496 21.789,31.574C21.762,31.652 21.742,31.73 21.727,31.812C21.711,31.895 21.699,31.973 21.691,32.055C21.684,32.137 21.68,32.219 21.68,32.301C21.68,32.383 21.684,32.465 21.691,32.547C21.699,32.629 21.711,32.711 21.727,32.793C21.742,32.871 21.762,32.953 21.789,33.031C21.812,33.109 21.84,33.188 21.871,33.262C21.902,33.34 21.938,33.414 21.977,33.484C22.016,33.559 22.055,33.629 22.102,33.695C22.148,33.766 22.195,33.832 22.25,33.895C22.301,33.957 22.355,34.02 22.414,34.078C22.473,34.137 22.535,34.191 22.598,34.242C22.66,34.293 22.727,34.344 22.793,34.391C22.863,34.434 22.934,34.477 23.008,34.516C23.078,34.555 23.152,34.59 23.23,34.621C23.305,34.652 23.383,34.68 23.461,34.703C23.539,34.727 23.617,34.746 23.699,34.766C23.781,34.781 23.859,34.793 23.945,34.801C24.023,34.809 24.105,34.812 24.188,34.812C24.27,34.812 24.352,34.809 24.434,34.801C24.516,34.793 24.598,34.781 24.68,34.766C24.758,34.746 24.84,34.727 24.918,34.703C24.996,34.68 25.074,34.652 25.148,34.621C25.227,34.59 25.301,34.555 25.371,34.516C25.445,34.477 25.516,34.434 25.582,34.391C25.652,34.344 25.719,34.293 25.781,34.242C25.844,34.191 25.906,34.137 25.965,34.078C26.023,34.02 26.078,33.957 26.129,33.895C26.18,33.832 26.23,33.766 26.277,33.695C26.32,33.629 26.363,33.559 26.402,33.484C26.441,33.414 26.477,33.34 26.508,33.262C26.539,33.188 26.566,33.109 26.59,33.031C26.613,32.953 26.633,32.871 26.652,32.793C26.668,32.711 26.68,32.629 26.688,32.547Z" style="fill:white;"></path>
<path d="M55.945,41.688L56.711,40.488C56.926,40.16 56.816,39.723 56.383,39.504L30.957,30.23L30.738,30.23C30.52,30.23 30.41,30.336 30.301,30.445L28.664,31.977C28.555,32.082 28.336,32.191 28.227,32.191L28.117,32.191L28.117,32.41C28.117,33.176 27.898,33.938 27.465,34.594L55.289,42.016L55.398,42.016C55.617,42.016 55.836,41.906 55.945,41.688Z" style="fill:white;"></path>
<path d="M1.707,56.527L21.68,39.941L22.551,39.176C22.66,39.066 22.77,38.742 22.66,38.523L22.117,36.34C22.117,36.121 22.117,35.902 22.223,35.793C22.008,35.684 21.898,35.574 21.68,35.465C21.133,35.141 20.805,34.594 20.477,34.047L0.18,54.348C-0.038,54.562 -0.038,54.891 0.07,55.109L0.727,56.309C0.835,56.527 1.055,56.637 1.273,56.637C1.492,56.637 1.598,56.637 1.707,56.527Z" style="fill:white;"></path>
<path d="M25.824,35.902L28.008,98.215L20.371,98.215L22.332,41.25L23.535,40.27C24.188,39.723 24.406,38.957 24.188,38.195L23.754,36.449L23.973,36.23L24.188,36.23C24.844,36.23 25.391,36.121 25.824,35.902Z" style="fill:white;"></path>
</g>
</svg>

After

Width:  |  Height:  |  Size: 32 KiB

View File

@@ -19,22 +19,24 @@ module.exports = {
colors: { colors: {
// Brand Colors // Brand Colors
primary: { primary: {
DEFAULT: '#0056b3', DEFAULT: '#0117bf',
dark: '#003d82', dark: '#000e7a',
light: '#e6f0ff', light: '#3344cc',
}, },
secondary: { secondary: {
DEFAULT: '#003d82', DEFAULT: '#82ed20',
light: '#0056b3', light: '#9bf14d',
dark: '#6bc21a',
}, },
accent: { accent: {
DEFAULT: '#e6f0ff', DEFAULT: '#82ed20',
light: '#f0f7ff', light: '#9bf14d',
}, },
neutral: { neutral: {
DEFAULT: '#f8f9fa', DEFAULT: '#f8f9fa',
light: '#ffffff', light: '#ffffff',
dark: '#e9ecef', dark: '#263336',
black: '#0a0a0a',
}, },
// Text Colors // Text Colors
text: { text: {

1
tsconfig.tsbuildinfo Normal file

File diff suppressed because one or more lines are too long