wip
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
import { notFound } from 'next/navigation';
|
import { notFound } from 'next/navigation';
|
||||||
import { MDXRemote } from 'next-mdx-remote/rsc';
|
import { MDXRemote } from 'next-mdx-remote/rsc';
|
||||||
import { getPostBySlug } from '@/lib/blog';
|
import { getPostBySlug, getAdjacentPosts } from '@/lib/blog';
|
||||||
|
|
||||||
interface BlogPostProps {
|
interface BlogPostProps {
|
||||||
params: {
|
params: {
|
||||||
@@ -15,12 +15,21 @@ import VisualLinkPreview from '@/components/blog/VisualLinkPreview';
|
|||||||
import Callout from '@/components/blog/Callout';
|
import Callout from '@/components/blog/Callout';
|
||||||
import HighlightBox from '@/components/blog/HighlightBox';
|
import HighlightBox from '@/components/blog/HighlightBox';
|
||||||
import Stats from '@/components/blog/Stats';
|
import Stats from '@/components/blog/Stats';
|
||||||
|
import AnimatedImage from '@/components/blog/AnimatedImage';
|
||||||
|
import ChatBubble from '@/components/blog/ChatBubble';
|
||||||
|
import SplitHeading from '@/components/blog/SplitHeading';
|
||||||
|
import PostNavigation from '@/components/blog/PostNavigation';
|
||||||
|
import PowerCTA from '@/components/blog/PowerCTA';
|
||||||
|
|
||||||
const components = {
|
const components = {
|
||||||
VisualLinkPreview,
|
VisualLinkPreview,
|
||||||
Callout,
|
Callout,
|
||||||
HighlightBox,
|
HighlightBox,
|
||||||
Stats,
|
Stats,
|
||||||
|
AnimatedImage,
|
||||||
|
ChatBubble,
|
||||||
|
PowerCTA,
|
||||||
|
SplitHeading,
|
||||||
a: ({ href, children, ...props }: any) => {
|
a: ({ href, children, ...props }: any) => {
|
||||||
if (href?.startsWith('/')) {
|
if (href?.startsWith('/')) {
|
||||||
return (
|
return (
|
||||||
@@ -45,17 +54,12 @@ const components = {
|
|||||||
);
|
);
|
||||||
},
|
},
|
||||||
img: (props: any) => (
|
img: (props: any) => (
|
||||||
<div className="my-12">
|
<AnimatedImage src={props.src} alt={props.alt} />
|
||||||
<img {...props} className="rounded-xl shadow-lg max-w-full h-auto mx-auto" />
|
|
||||||
{props.alt && (
|
|
||||||
<p className="text-sm text-text-secondary text-center mt-3 italic">{props.alt}</p>
|
|
||||||
)}
|
|
||||||
</div>
|
|
||||||
),
|
),
|
||||||
h2: ({ children, ...props }: any) => (
|
h2: ({ children, ...props }: any) => (
|
||||||
<h2 {...props} className="text-3xl font-bold text-text-primary mt-16 mb-6 pb-3 border-b-2 border-primary/20">
|
<SplitHeading {...props} className="mt-16 mb-6 pb-3 border-b-2 border-primary/20">
|
||||||
{children}
|
{children}
|
||||||
</h2>
|
</SplitHeading>
|
||||||
),
|
),
|
||||||
h3: ({ children, ...props }: any) => (
|
h3: ({ children, ...props }: any) => (
|
||||||
<h3 {...props} className="text-2xl font-bold text-text-primary mt-12 mb-4">
|
<h3 {...props} className="text-2xl font-bold text-text-primary mt-12 mb-4">
|
||||||
@@ -109,10 +113,43 @@ const components = {
|
|||||||
{children}
|
{children}
|
||||||
</pre>
|
</pre>
|
||||||
),
|
),
|
||||||
|
table: ({ children, ...props }: any) => (
|
||||||
|
<div className="my-8 overflow-x-auto rounded-lg border border-neutral-200 shadow-sm">
|
||||||
|
<table {...props} className="w-full text-left text-sm text-text-secondary">
|
||||||
|
{children}
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
),
|
||||||
|
thead: ({ children, ...props }: any) => (
|
||||||
|
<thead {...props} className="bg-neutral-50 text-text-primary font-semibold border-b border-neutral-200">
|
||||||
|
{children}
|
||||||
|
</thead>
|
||||||
|
),
|
||||||
|
tbody: ({ children, ...props }: any) => (
|
||||||
|
<tbody {...props} className="divide-y divide-neutral-200 bg-white">
|
||||||
|
{children}
|
||||||
|
</tbody>
|
||||||
|
),
|
||||||
|
tr: ({ children, ...props }: any) => (
|
||||||
|
<tr {...props} className="hover:bg-neutral-50/50 transition-colors">
|
||||||
|
{children}
|
||||||
|
</tr>
|
||||||
|
),
|
||||||
|
th: ({ children, ...props }: any) => (
|
||||||
|
<th {...props} className="px-6 py-4 whitespace-nowrap">
|
||||||
|
{children}
|
||||||
|
</th>
|
||||||
|
),
|
||||||
|
td: ({ children, ...props }: any) => (
|
||||||
|
<td {...props} className="px-6 py-4">
|
||||||
|
{children}
|
||||||
|
</td>
|
||||||
|
),
|
||||||
};
|
};
|
||||||
|
|
||||||
export default async function BlogPost({ params: { locale, slug } }: BlogPostProps) {
|
export default async function BlogPost({ params: { locale, slug } }: BlogPostProps) {
|
||||||
const post = await getPostBySlug(slug, locale);
|
const post = await getPostBySlug(slug, locale);
|
||||||
|
const { prev, next } = await getAdjacentPosts(slug, locale);
|
||||||
|
|
||||||
if (!post) {
|
if (!post) {
|
||||||
notFound();
|
notFound();
|
||||||
@@ -194,29 +231,14 @@ export default async function BlogPost({ params: { locale, slug } }: BlogPostPro
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{/* Call to action section */}
|
{/* Power CTA */}
|
||||||
<div className="mt-12 p-8 bg-gradient-to-r from-primary/10 to-primary/5 rounded-xl border border-primary/20">
|
<PowerCTA locale={locale} />
|
||||||
<h3 className="text-2xl font-bold text-text-primary mb-4">
|
|
||||||
{locale === 'de' ? 'Haben Sie Fragen?' : 'Have questions?'}
|
{/* Post Navigation */}
|
||||||
</h3>
|
<PostNavigation prev={prev} next={next} locale={locale} />
|
||||||
<p className="text-text-secondary mb-6">
|
|
||||||
{locale === 'de'
|
|
||||||
? 'Unser Team steht Ihnen gerne zur Verfügung. Kontaktieren Sie uns für weitere Informationen zu unseren Kabellösungen.'
|
|
||||||
: 'Our team is happy to help. Contact us for more information about our cable solutions.'}
|
|
||||||
</p>
|
|
||||||
<Link
|
|
||||||
href={`/${locale}/contact`}
|
|
||||||
className="inline-flex items-center gap-2 px-6 py-3 bg-primary text-white font-medium rounded-lg hover:bg-primary/90 transition-colors"
|
|
||||||
>
|
|
||||||
{locale === 'de' ? 'Kontakt aufnehmen' : 'Get in touch'}
|
|
||||||
<svg className="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
|
||||||
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M17 8l4 4m0 0l-4 4m4-4H3" />
|
|
||||||
</svg>
|
|
||||||
</Link>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
{/* Back to blog link */}
|
{/* Back to blog link */}
|
||||||
<div className="mt-12 pt-8 border-t border-neutral-dark/20">
|
<div className="mt-12 pt-8 border-t border-neutral-dark/20 text-center">
|
||||||
<Link
|
<Link
|
||||||
href={`/${locale}/blog`}
|
href={`/${locale}/blog`}
|
||||||
className="inline-flex items-center gap-2 text-primary hover:underline font-medium text-lg group"
|
className="inline-flex items-center gap-2 text-primary hover:underline font-medium text-lg group"
|
||||||
@@ -224,7 +246,7 @@ export default async function BlogPost({ params: { locale, slug } }: BlogPostPro
|
|||||||
<svg className="w-5 h-5 transition-transform group-hover:-translate-x-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
<svg className="w-5 h-5 transition-transform group-hover:-translate-x-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||||
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M15 19l-7-7 7-7" />
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M15 19l-7-7 7-7" />
|
||||||
</svg>
|
</svg>
|
||||||
{locale === 'de' ? 'Zurück zum Blog' : 'Back to Blog'}
|
{locale === 'de' ? 'Zurück zur Übersicht' : 'Back to Overview'}
|
||||||
</Link>
|
</Link>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
71
components/blog/AnimatedImage.tsx
Normal file
71
components/blog/AnimatedImage.tsx
Normal file
@@ -0,0 +1,71 @@
|
|||||||
|
'use client';
|
||||||
|
|
||||||
|
import React, { useState, useEffect, useRef } from 'react';
|
||||||
|
import Image from 'next/image';
|
||||||
|
|
||||||
|
interface AnimatedImageProps {
|
||||||
|
src: string;
|
||||||
|
alt: string;
|
||||||
|
width?: number;
|
||||||
|
height?: number;
|
||||||
|
className?: string;
|
||||||
|
priority?: boolean;
|
||||||
|
}
|
||||||
|
|
||||||
|
export default function AnimatedImage({
|
||||||
|
src,
|
||||||
|
alt,
|
||||||
|
width = 800,
|
||||||
|
height = 600,
|
||||||
|
className = '',
|
||||||
|
priority = false,
|
||||||
|
}: AnimatedImageProps) {
|
||||||
|
const [isLoaded, setIsLoaded] = useState(false);
|
||||||
|
const [isInView, setIsInView] = useState(false);
|
||||||
|
const containerRef = useRef<HTMLDivElement>(null);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
const observer = new IntersectionObserver(
|
||||||
|
(entries) => {
|
||||||
|
entries.forEach((entry) => {
|
||||||
|
if (entry.isIntersecting) {
|
||||||
|
setIsInView(true);
|
||||||
|
observer.disconnect();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
|
{ threshold: 0.1 }
|
||||||
|
);
|
||||||
|
|
||||||
|
if (containerRef.current) {
|
||||||
|
observer.observe(containerRef.current);
|
||||||
|
}
|
||||||
|
|
||||||
|
return () => observer.disconnect();
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div
|
||||||
|
ref={containerRef}
|
||||||
|
className={`relative overflow-hidden rounded-xl shadow-lg my-12 ${className}`}
|
||||||
|
>
|
||||||
|
<Image
|
||||||
|
src={src}
|
||||||
|
alt={alt}
|
||||||
|
width={width}
|
||||||
|
height={height}
|
||||||
|
className={`
|
||||||
|
duration-1000 ease-out w-full h-auto
|
||||||
|
${isLoaded && isInView ? 'scale-100 blur-0 opacity-100' : 'scale-110 blur-xl opacity-0'}
|
||||||
|
`}
|
||||||
|
onLoad={() => setIsLoaded(true)}
|
||||||
|
priority={priority}
|
||||||
|
/>
|
||||||
|
{alt && (
|
||||||
|
<p className="text-sm text-text-secondary text-center mt-3 italic px-4 pb-4">
|
||||||
|
{alt}
|
||||||
|
</p>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
62
components/blog/ChatBubble.tsx
Normal file
62
components/blog/ChatBubble.tsx
Normal file
@@ -0,0 +1,62 @@
|
|||||||
|
import React from 'react';
|
||||||
|
import Image from 'next/image';
|
||||||
|
|
||||||
|
interface ChatBubbleProps {
|
||||||
|
author?: string;
|
||||||
|
avatar?: string;
|
||||||
|
role?: string;
|
||||||
|
children: React.ReactNode;
|
||||||
|
align?: 'left' | 'right';
|
||||||
|
}
|
||||||
|
|
||||||
|
export default function ChatBubble({
|
||||||
|
author = 'KLZ Team',
|
||||||
|
avatar = '/uploads/2024/11/cropped-favicon-3-192x192.png', // Default fallback
|
||||||
|
role = 'Assistant',
|
||||||
|
children,
|
||||||
|
align = 'left',
|
||||||
|
}: ChatBubbleProps) {
|
||||||
|
const isRight = align === 'right';
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className={`flex w-full gap-4 my-10 ${isRight ? 'flex-row-reverse' : 'flex-row'}`}>
|
||||||
|
{/* Avatar */}
|
||||||
|
<div className="flex-shrink-0 flex flex-col items-center gap-1">
|
||||||
|
<div className="w-10 h-10 rounded-full overflow-hidden border border-neutral-200 shadow-sm relative">
|
||||||
|
{/* Use a simple div placeholder if image fails or isn't provided, but here we assume a path */}
|
||||||
|
<div className="w-full h-full bg-neutral-100 flex items-center justify-center text-xs font-bold text-neutral-400">
|
||||||
|
{author.charAt(0)}
|
||||||
|
</div>
|
||||||
|
{avatar && (
|
||||||
|
<Image
|
||||||
|
src={avatar}
|
||||||
|
alt={author}
|
||||||
|
fill
|
||||||
|
className="object-cover"
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Message Bubble */}
|
||||||
|
<div className={`flex flex-col max-w-[85%] ${isRight ? 'items-end' : 'items-start'}`}>
|
||||||
|
<div className="flex items-baseline gap-2 mb-1">
|
||||||
|
<span className="text-sm font-bold text-text-primary">{author}</span>
|
||||||
|
{role && <span className="text-xs text-text-secondary">{role}</span>}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className={`
|
||||||
|
relative px-6 py-4 rounded-2xl shadow-sm border
|
||||||
|
${isRight
|
||||||
|
? 'bg-primary text-white rounded-tr-none border-primary'
|
||||||
|
: 'bg-white text-text-primary rounded-tl-none border-neutral-200'
|
||||||
|
}
|
||||||
|
`}>
|
||||||
|
<div className={`prose prose-sm max-w-none ${isRight ? 'prose-invert' : ''}`}>
|
||||||
|
{children}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
97
components/blog/PostNavigation.tsx
Normal file
97
components/blog/PostNavigation.tsx
Normal file
@@ -0,0 +1,97 @@
|
|||||||
|
import React from 'react';
|
||||||
|
import Link from 'next/link';
|
||||||
|
import { PostMdx } from '@/lib/blog';
|
||||||
|
|
||||||
|
interface PostNavigationProps {
|
||||||
|
prev: PostMdx | null;
|
||||||
|
next: PostMdx | null;
|
||||||
|
locale: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
export default function PostNavigation({ prev, next, locale }: PostNavigationProps) {
|
||||||
|
if (!prev && !next) return null;
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className="grid grid-cols-1 md:grid-cols-2 w-full mt-16">
|
||||||
|
{/* Previous Post (Older) */}
|
||||||
|
{prev ? (
|
||||||
|
<Link
|
||||||
|
href={`/${locale}/blog/${prev.slug}`}
|
||||||
|
className="group relative h-64 md:h-80 overflow-hidden block"
|
||||||
|
>
|
||||||
|
{/* Background Image */}
|
||||||
|
{prev.frontmatter.featuredImage ? (
|
||||||
|
<div
|
||||||
|
className="absolute inset-0 bg-cover bg-center transition-transform duration-700 group-hover:scale-110"
|
||||||
|
style={{ backgroundImage: `url(${prev.frontmatter.featuredImage})` }}
|
||||||
|
/>
|
||||||
|
) : (
|
||||||
|
<div className="absolute inset-0 bg-neutral-100" />
|
||||||
|
)}
|
||||||
|
|
||||||
|
{/* Overlay */}
|
||||||
|
<div className="absolute inset-0 bg-black/60 group-hover:bg-black/50 transition-colors duration-300" />
|
||||||
|
|
||||||
|
{/* Content */}
|
||||||
|
<div className="absolute inset-0 flex flex-col justify-center p-8 md:p-12 text-white z-10">
|
||||||
|
<span className="text-sm font-bold uppercase tracking-wider mb-2 opacity-70">
|
||||||
|
{locale === 'de' ? 'Vorheriger Beitrag' : 'Previous Post'}
|
||||||
|
</span>
|
||||||
|
<h3 className="text-xl md:text-2xl font-bold leading-tight group-hover:underline decoration-2 underline-offset-4">
|
||||||
|
{prev.frontmatter.title}
|
||||||
|
</h3>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Arrow Icon */}
|
||||||
|
<div className="absolute left-4 top-1/2 -translate-y-1/2 text-white/30 group-hover:text-white group-hover:-translate-x-2 transition-all duration-300">
|
||||||
|
<svg className="w-8 h-8" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||||
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M15 19l-7-7 7-7" />
|
||||||
|
</svg>
|
||||||
|
</div>
|
||||||
|
</Link>
|
||||||
|
) : (
|
||||||
|
<div className="hidden md:block bg-neutral-50" />
|
||||||
|
)}
|
||||||
|
|
||||||
|
{/* Next Post (Newer) */}
|
||||||
|
{next ? (
|
||||||
|
<Link
|
||||||
|
href={`/${locale}/blog/${next.slug}`}
|
||||||
|
className="group relative h-64 md:h-80 overflow-hidden block"
|
||||||
|
>
|
||||||
|
{/* Background Image */}
|
||||||
|
{next.frontmatter.featuredImage ? (
|
||||||
|
<div
|
||||||
|
className="absolute inset-0 bg-cover bg-center transition-transform duration-700 group-hover:scale-110"
|
||||||
|
style={{ backgroundImage: `url(${next.frontmatter.featuredImage})` }}
|
||||||
|
/>
|
||||||
|
) : (
|
||||||
|
<div className="absolute inset-0 bg-neutral-100" />
|
||||||
|
)}
|
||||||
|
|
||||||
|
{/* Overlay */}
|
||||||
|
<div className="absolute inset-0 bg-black/60 group-hover:bg-black/50 transition-colors duration-300" />
|
||||||
|
|
||||||
|
{/* Content */}
|
||||||
|
<div className="absolute inset-0 flex flex-col justify-center items-end text-right p-8 md:p-12 text-white z-10">
|
||||||
|
<span className="text-sm font-bold uppercase tracking-wider mb-2 opacity-70">
|
||||||
|
{locale === 'de' ? 'Nächster Beitrag' : 'Next Post'}
|
||||||
|
</span>
|
||||||
|
<h3 className="text-xl md:text-2xl font-bold leading-tight group-hover:underline decoration-2 underline-offset-4">
|
||||||
|
{next.frontmatter.title}
|
||||||
|
</h3>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Arrow Icon */}
|
||||||
|
<div className="absolute right-4 top-1/2 -translate-y-1/2 text-white/30 group-hover:text-white group-hover:translate-x-2 transition-all duration-300">
|
||||||
|
<svg className="w-8 h-8" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||||
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M9 5l7 7-7 7" />
|
||||||
|
</svg>
|
||||||
|
</div>
|
||||||
|
</Link>
|
||||||
|
) : (
|
||||||
|
<div className="hidden md:block bg-neutral-50" />
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
57
components/blog/PowerCTA.tsx
Normal file
57
components/blog/PowerCTA.tsx
Normal file
@@ -0,0 +1,57 @@
|
|||||||
|
import React from 'react';
|
||||||
|
import Link from 'next/link';
|
||||||
|
|
||||||
|
interface PowerCTAProps {
|
||||||
|
locale: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
export default function PowerCTA({ locale }: PowerCTAProps) {
|
||||||
|
const isDe = locale === 'de';
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className="my-12 p-8 md:p-10 bg-white rounded-xl shadow-lg border border-neutral-100 relative overflow-hidden">
|
||||||
|
{/* Decorative background element */}
|
||||||
|
<div className="absolute top-0 right-0 w-32 h-32 bg-primary/5 rounded-bl-full -mr-10 -mt-10" />
|
||||||
|
|
||||||
|
<div className="relative z-10">
|
||||||
|
<h3 className="text-2xl font-bold text-text-primary mb-4 flex items-center gap-3">
|
||||||
|
<span className="text-3xl">💡</span>
|
||||||
|
{isDe ? 'Benötigen Sie Strom?' : 'Need power?'}
|
||||||
|
<span className="text-primary">{isDe ? 'Wir sind für Sie da!' : "We've got you covered!"}</span>
|
||||||
|
</h3>
|
||||||
|
|
||||||
|
<p className="text-lg text-text-secondary mb-6 leading-relaxed">
|
||||||
|
{isDe
|
||||||
|
? 'Von der Planung von Wind- und Solarparks bis zur Lieferung hochwertiger Energiekabel wie NA2XS(F)2Y, NAYY und NA2XY erwecken wir Energienetze zum Leben.'
|
||||||
|
: 'From wind and solar park planning to delivering high-quality energy cables like NA2XS(F)2Y, NAYY, and NA2XY, we bring energy networks to life.'
|
||||||
|
}
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<ul className="space-y-2 mb-8">
|
||||||
|
{[
|
||||||
|
isDe ? 'Schnelle Lieferung dank unseres strategischen Hubs.' : 'Fast delivery thanks to our strategic hub.',
|
||||||
|
isDe ? 'Nachhaltige Lösungen für eine grünere Zukunft.' : 'Sustainable solutions for a greener tomorrow.',
|
||||||
|
isDe ? 'Vertraut von Branchenführern in Deutschland, Österreich und den Niederlanden.' : 'Trusted by industry leaders in Germany, Austria and the Netherlands.'
|
||||||
|
].map((item, i) => (
|
||||||
|
<li key={i} className="flex items-start gap-2 text-text-secondary">
|
||||||
|
<span className="text-green-500 mt-1">✅</span>
|
||||||
|
<span>{item}</span>
|
||||||
|
</li>
|
||||||
|
))}
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<div className="flex flex-col sm:flex-row gap-4 items-start sm:items-center">
|
||||||
|
<p className="font-medium text-text-primary">
|
||||||
|
{isDe ? 'Lassen Sie uns gemeinsam eine grünere Zukunft gestalten.' : "Let's power a greener future together."}
|
||||||
|
</p>
|
||||||
|
<Link
|
||||||
|
href={`/${locale}/contact`}
|
||||||
|
className="inline-flex items-center gap-2 px-6 py-3 bg-primary text-white font-bold rounded-lg hover:bg-primary/90 transition-all shadow-md hover:shadow-lg transform hover:-translate-y-0.5"
|
||||||
|
>
|
||||||
|
{isDe ? '👉 Kontakt aufnehmen' : '👉 Get in touch'}
|
||||||
|
</Link>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
46
components/blog/SplitHeading.tsx
Normal file
46
components/blog/SplitHeading.tsx
Normal file
@@ -0,0 +1,46 @@
|
|||||||
|
'use client';
|
||||||
|
|
||||||
|
import React, { useEffect, useRef, useState } from 'react';
|
||||||
|
|
||||||
|
interface SplitHeadingProps {
|
||||||
|
children: React.ReactNode;
|
||||||
|
className?: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
export default function SplitHeading({ children, className = '' }: SplitHeadingProps) {
|
||||||
|
const elementRef = useRef<HTMLDivElement>(null);
|
||||||
|
const [isVisible, setIsVisible] = useState(false);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
const observer = new IntersectionObserver(
|
||||||
|
(entries) => {
|
||||||
|
entries.forEach((entry) => {
|
||||||
|
if (entry.isIntersecting) {
|
||||||
|
setIsVisible(true);
|
||||||
|
observer.disconnect();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
|
{ threshold: 0.1 }
|
||||||
|
);
|
||||||
|
|
||||||
|
if (elementRef.current) {
|
||||||
|
observer.observe(elementRef.current);
|
||||||
|
}
|
||||||
|
|
||||||
|
return () => observer.disconnect();
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div
|
||||||
|
ref={elementRef}
|
||||||
|
className={`transform transition-all duration-1000 ease-out ${
|
||||||
|
isVisible ? 'opacity-100 translate-y-0' : 'opacity-0 translate-y-10'
|
||||||
|
} ${className}`}
|
||||||
|
>
|
||||||
|
<h3 className="text-2xl md:text-3xl font-bold leading-tight text-text-primary">
|
||||||
|
{children}
|
||||||
|
</h3>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -32,7 +32,13 @@ export default function VisualLinkPreview({ url, title, summary, image }: Visual
|
|||||||
{summary}
|
{summary}
|
||||||
</p>
|
</p>
|
||||||
<span className="text-xs text-text-secondary mt-2 opacity-70">
|
<span className="text-xs text-text-secondary mt-2 opacity-70">
|
||||||
{new URL(url).hostname}
|
{(() => {
|
||||||
|
try {
|
||||||
|
return new URL(url).hostname;
|
||||||
|
} catch (e) {
|
||||||
|
return url;
|
||||||
|
}
|
||||||
|
})()}
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
---
|
---
|
||||||
|
|
||||||
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'
|
||||||
featuredImage: /uploads/2025/02/image_fx_-6.webp
|
featuredImage: /uploads/2025/02/image_fx_-6.webp
|
||||||
|
|||||||
@@ -1,9 +1,7 @@
|
|||||||
---
|
---
|
||||||
|
|
||||||
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'
|
||||||
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
|
||||||
category: Kabel Technologie
|
category: Kabel Technologie
|
||||||
---
|
---
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
---
|
---
|
||||||
|
|
||||||
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'
|
||||||
featuredImage: /uploads/2025/04/image_fx_-2025-02-20T191245.537.webp
|
featuredImage: /uploads/2025/04/image_fx_-2025-02-20T191245.537.webp
|
||||||
|
|||||||
@@ -1,11 +1,7 @@
|
|||||||
---
|
---
|
||||||
|
title: 'Die Kunst der Kabellogistik: Der Transport des Fundamentes moderner Energienetze'
|
||||||
title: >-
|
|
||||||
Die Kunst der Kabellogistik: Der Transport des Fundamentes moderner
|
|
||||||
Energienetze
|
|
||||||
date: '2025-01-14T13:43:59'
|
date: '2025-01-14T13:43:59'
|
||||||
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
|
||||||
category: Kabel Technologie
|
category: Kabel Technologie
|
||||||
---
|
---
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
---
|
---
|
||||||
|
|
||||||
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'
|
||||||
featuredImage: /uploads/2025/02/1.webp
|
featuredImage: /uploads/2025/02/1.webp
|
||||||
|
|||||||
@@ -1,9 +1,7 @@
|
|||||||
---
|
---
|
||||||
|
|
||||||
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'
|
||||||
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
|
||||||
category: Kabel Technologie
|
category: Kabel Technologie
|
||||||
---
|
---
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
---
|
---
|
||||||
|
|
||||||
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'
|
||||||
featuredImage: /uploads/2025/02/image_fx_-9.webp
|
featuredImage: /uploads/2025/02/image_fx_-9.webp
|
||||||
|
|||||||
@@ -1,9 +1,7 @@
|
|||||||
---
|
---
|
||||||
|
|
||||||
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'
|
||||||
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
|
||||||
category: Kabel Technologie
|
category: Kabel Technologie
|
||||||
---
|
---
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
---
|
---
|
||||||
|
|
||||||
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'
|
||||||
featuredImage: /uploads/2024/11/1234adws21312-scaled.jpg
|
featuredImage: /uploads/2024/11/1234adws21312-scaled.jpg
|
||||||
|
|||||||
@@ -1,9 +1,7 @@
|
|||||||
---
|
---
|
||||||
|
|
||||||
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'
|
||||||
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
|
||||||
category: Kabel Technologie
|
category: Kabel Technologie
|
||||||
---
|
---
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
---
|
---
|
||||||
|
|
||||||
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'
|
||||||
featuredImage: /uploads/2025/01/klz-directory-2-scaled.webp
|
featuredImage: /uploads/2025/01/klz-directory-2-scaled.webp
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
---
|
---
|
||||||
|
|
||||||
title: KLZ wächst weiter – neue Stärke im Bereich Financial & Sales
|
title: KLZ wächst weiter – neue Stärke im Bereich Financial & Sales
|
||||||
date: '2025-10-06T13:26:31'
|
date: '2025-10-06T13:26:31'
|
||||||
featuredImage: /uploads/2025/10/1759325528650.webp
|
featuredImage: /uploads/2025/10/1759325528650.webp
|
||||||
|
|||||||
@@ -1,8 +1,5 @@
|
|||||||
---
|
---
|
||||||
|
title: 'Kupfer oder Aluminiumkabel im Windpark? Kostenvergleich für Erdkabel und Netzanschluss'
|
||||||
title: >-
|
|
||||||
Kupfer oder Aluminiumkabel im Windpark? Kostenvergleich für Erdkabel und
|
|
||||||
Netzanschluss
|
|
||||||
date: '2025-02-24T08:30:24'
|
date: '2025-02-24T08:30:24'
|
||||||
featuredImage: /uploads/2024/11/medium-voltage-category.webp
|
featuredImage: /uploads/2024/11/medium-voltage-category.webp
|
||||||
locale: de
|
locale: de
|
||||||
|
|||||||
@@ -1,9 +1,7 @@
|
|||||||
---
|
---
|
||||||
|
|
||||||
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'
|
||||||
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
|
||||||
category: Kabel Technologie
|
category: Kabel Technologie
|
||||||
---
|
---
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
---
|
---
|
||||||
|
|
||||||
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'
|
||||||
featuredImage: /uploads/2025/04/image_fx_-2025-02-22T132138.470.webp
|
featuredImage: /uploads/2025/04/image_fx_-2025-02-22T132138.470.webp
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
---
|
---
|
||||||
|
|
||||||
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'
|
||||||
featuredImage: /uploads/2025/08/NA2XSF2X_3x1x300_RM-25_12-20kV-3.webp
|
featuredImage: /uploads/2025/08/NA2XSF2X_3x1x300_RM-25_12-20kV-3.webp
|
||||||
|
|||||||
@@ -1,9 +1,7 @@
|
|||||||
---
|
---
|
||||||
|
|
||||||
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'
|
||||||
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
|
||||||
category: Kabel Technologie
|
category: Kabel Technologie
|
||||||
---
|
---
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
---
|
---
|
||||||
|
|
||||||
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'
|
||||||
featuredImage: /uploads/2025/02/5.webp
|
featuredImage: /uploads/2025/02/5.webp
|
||||||
|
|||||||
@@ -1,9 +1,7 @@
|
|||||||
---
|
---
|
||||||
|
|
||||||
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'
|
||||||
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
|
||||||
category: Kabel Technologie
|
category: Kabel Technologie
|
||||||
---
|
---
|
||||||
|
|||||||
@@ -1,9 +1,7 @@
|
|||||||
---
|
---
|
||||||
|
|
||||||
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'
|
||||||
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
|
||||||
category: Kabel Technologie
|
category: Kabel Technologie
|
||||||
---
|
---
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
---
|
---
|
||||||
|
|
||||||
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'
|
||||||
featuredImage: /uploads/2024/11/low-voltage-category.webp
|
featuredImage: /uploads/2024/11/low-voltage-category.webp
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
---
|
---
|
||||||
|
|
||||||
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'
|
||||||
featuredImage: /uploads/2025/02/image_fx_-7.webp
|
featuredImage: /uploads/2025/02/image_fx_-7.webp
|
||||||
|
|||||||
@@ -1,9 +1,7 @@
|
|||||||
---
|
---
|
||||||
|
|
||||||
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'
|
||||||
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
|
||||||
category: Kabel Technologie
|
category: Kabel Technologie
|
||||||
---
|
---
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
---
|
---
|
||||||
|
|
||||||
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'
|
||||||
featuredImage: /uploads/2025/02/image_fx_-9.webp
|
featuredImage: /uploads/2025/02/image_fx_-9.webp
|
||||||
|
|||||||
@@ -1,9 +1,7 @@
|
|||||||
---
|
---
|
||||||
|
|
||||||
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'
|
||||||
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
|
||||||
category: Kabel Technologie
|
category: Kabel Technologie
|
||||||
---
|
---
|
||||||
|
|||||||
@@ -1,8 +1,5 @@
|
|||||||
---
|
---
|
||||||
|
title: 'Welche Kabel für Windkraft? Unterschiede von Nieder- bis Höchstspannung erklärt'
|
||||||
title: >-
|
|
||||||
Welche Kabel für Windkraft? Unterschiede von Nieder- bis Höchstspannung
|
|
||||||
erklärt
|
|
||||||
date: '2025-06-10T10:36:45'
|
date: '2025-06-10T10:36:45'
|
||||||
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
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
---
|
---
|
||||||
|
|
||||||
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'
|
||||||
featuredImage: /uploads/2025/02/image_fx_-2.webp
|
featuredImage: /uploads/2025/02/image_fx_-2.webp
|
||||||
|
|||||||
@@ -1,12 +1,15 @@
|
|||||||
---
|
---
|
||||||
|
|
||||||
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'
|
||||||
featuredImage: /uploads/2024/12/mockup_03-copy-scaled.webp
|
featuredImage: /uploads/2024/12/mockup_03-copy-scaled.webp
|
||||||
locale: de
|
locale: de
|
||||||
category: Kabel Technologie
|
category: Kabel Technologie
|
||||||
---
|
---
|
||||||
# Willkommen in der Zukunft von KLZ: Unsere neue Website ist online!
|
|
||||||
|
<HighlightBox title="Willkommen in der Zukunft von KLZ: Unsere neue Website ist online! 🎉" color="primary">
|
||||||
|
Es ist schneller, intelligenter und voller Funktionen, um Ihr Erlebnis nahtlos und effizient zu gestalten. Entwickelt, um den Bedürfnissen unserer Kunden gerecht zu werden und die Zukunft unserer Branche widerzuspiegeln, ist dies nicht nur ein neuer Look – es ist ein ganz neues Service-Level. Lassen Sie uns die Highlights durchgehen.
|
||||||
|
</HighlightBox>
|
||||||
|
|
||||||
### Das neue KLZ-Logo: modern, mutig und zukunftsorientiert
|
### Das neue KLZ-Logo: modern, mutig und zukunftsorientiert
|
||||||
Eine der auffälligsten Änderungen in unserem Rebranding ist das aktualisierte KLZ-Logo, das perfekt den Geist der Innovation und des Fortschritts einfängt, der unsere Arbeit antreibt. Lassen Sie uns die Details genauer betrachten:
|
Eine der auffälligsten Änderungen in unserem Rebranding ist das aktualisierte KLZ-Logo, das perfekt den Geist der Innovation und des Fortschritts einfängt, der unsere Arbeit antreibt. Lassen Sie uns die Details genauer betrachten:
|
||||||
- **Vereinfachte Typografie:** Das neue Logo zeigt eine elegante und moderne Schriftart, die klar, mutig und leicht erkennbar ist. Sie repräsentiert unsere unkomplizierte und zuverlässige Herangehensweise an das Geschäft.
|
- **Vereinfachte Typografie:** Das neue Logo zeigt eine elegante und moderne Schriftart, die klar, mutig und leicht erkennbar ist. Sie repräsentiert unsere unkomplizierte und zuverlässige Herangehensweise an das Geschäft.
|
||||||
@@ -16,6 +19,9 @@ Eine der auffälligsten Änderungen in unserem Rebranding ist das aktualisierte
|
|||||||
Und es gibt eine entscheidende visuelle Veränderung, die Ihnen sicherlich aufgefallen ist: „KLZ (Vertriebs GmbH)“ wurde in unserem Branding zu „KLZ Cables“. Diese prägnante, moderne Darstellung macht sofort klar, wer wir sind und was wir tun.
|
Und es gibt eine entscheidende visuelle Veränderung, die Ihnen sicherlich aufgefallen ist: „KLZ (Vertriebs GmbH)“ wurde in unserem Branding zu „KLZ Cables“. Diese prägnante, moderne Darstellung macht sofort klar, wer wir sind und was wir tun.
|
||||||
Natürlich bleibt unser rechtlicher Name, KLZ Vertriebs GmbH, unverändert. Diese Änderung dient dazu, es unseren Kunden und Partnern zu erleichtern, unsere Mission und Dienstleistungen sofort zu erkennen.
|
Natürlich bleibt unser rechtlicher Name, KLZ Vertriebs GmbH, unverändert. Diese Änderung dient dazu, es unseren Kunden und Partnern zu erleichtern, unsere Mission und Dienstleistungen sofort zu erkennen.
|
||||||
Dieses neue Logo und Branding sind nicht nur ästhetische Veränderungen – sie repräsentieren ein stärkeres, klareres KLZ, während wir in das Jahr 2025 und darüber hinaus gehen. Es ist ein Design, das unsere Geschichte mit unserer Zukunft verbindet: eine Zukunft, die von Innovation, Zuverlässigkeit und Nachhaltigkeit angetrieben wird.
|
Dieses neue Logo und Branding sind nicht nur ästhetische Veränderungen – sie repräsentieren ein stärkeres, klareres KLZ, während wir in das Jahr 2025 und darüber hinaus gehen. Es ist ein Design, das unsere Geschichte mit unserer Zukunft verbindet: eine Zukunft, die von Innovation, Zuverlässigkeit und Nachhaltigkeit angetrieben wird.
|
||||||
|
|
||||||
|
<AnimatedImage src="/uploads/2024/11/white_logo_transparent_background.svg" alt="Neues KLZ Logo" width={541} height={540} className="max-w-xs mx-auto bg-primary p-8" />
|
||||||
|
|
||||||
### **Ein frisches, modernes Design für eine zukunftsorientierte Branche**
|
### **Ein frisches, modernes Design für eine zukunftsorientierte Branche**
|
||||||
Unsere neue Website spiegelt die Mission von KLZ wider: Menschen und Energie durch innovative, nachhaltige Lösungen zu verbinden.
|
Unsere neue Website spiegelt die Mission von KLZ wider: Menschen und Energie durch innovative, nachhaltige Lösungen zu verbinden.
|
||||||
- **Kraftvolle und klare visuelle Elemente** machen die Navigation mühelos, egal ob Sie unseren Katalog durchstöbern oder mehr über unsere Dienstleistungen erfahren möchten.
|
- **Kraftvolle und klare visuelle Elemente** machen die Navigation mühelos, egal ob Sie unseren Katalog durchstöbern oder mehr über unsere Dienstleistungen erfahren möchten.
|
||||||
@@ -23,6 +29,7 @@ Unsere neue Website spiegelt die Mission von KLZ wider: Menschen und Energie dur
|
|||||||
- Das aufgefrischte Branding, einschließlich unseres **eleganten neuen Logos**, repräsentiert unsere Weiterentwicklung als führendes Unternehmen in der Energielösungsbranche.
|
- Das aufgefrischte Branding, einschließlich unseres **eleganten neuen Logos**, repräsentiert unsere Weiterentwicklung als führendes Unternehmen in der Energielösungsbranche.
|
||||||
|
|
||||||
Jedes Element wurde mit Ihnen im Blick gestaltet, um es Ihnen noch einfacher zu machen, das zu finden, wonach Sie suchen.
|
Jedes Element wurde mit Ihnen im Blick gestaltet, um es Ihnen noch einfacher zu machen, das zu finden, wonach Sie suchen.
|
||||||
|
|
||||||
### **Entdecken Sie unseren umfassenden Kabelkatalog**
|
### **Entdecken Sie unseren umfassenden Kabelkatalog**
|
||||||
Unser brandneuer Kabelkatalog ist das Herzstück der Website und bietet detaillierte Einblicke in jedes Kabel, das wir anbieten:
|
Unser brandneuer Kabelkatalog ist das Herzstück der Website und bietet detaillierte Einblicke in jedes Kabel, das wir anbieten:
|
||||||
- **NA2XS(F)2Y** – perfekt für Hochspannungsanwendungen.
|
- **NA2XS(F)2Y** – perfekt für Hochspannungsanwendungen.
|
||||||
@@ -30,23 +37,37 @@ Unser brandneuer Kabelkatalog ist das Herzstück der Website und bietet detailli
|
|||||||
- Eine breite Palette weiterer Kabel, die speziell für Wind- und Solarenergieprojekte entwickelt wurden.
|
- Eine breite Palette weiterer Kabel, die speziell für Wind- und Solarenergieprojekte entwickelt wurden.
|
||||||
|
|
||||||
Jedes Produkt enthält klare Spezifikationen, Anwendungen und Vorteile, die Ihnen helfen, schnell fundierte Entscheidungen zu treffen.
|
Jedes Produkt enthält klare Spezifikationen, Anwendungen und Vorteile, die Ihnen helfen, schnell fundierte Entscheidungen zu treffen.
|
||||||
|
|
||||||
|
<AnimatedImage src="/uploads/2024/12/NA2XSY-scaled.webp" alt="Kabelkatalog Vorschau" width={2560} height={533} />
|
||||||
|
|
||||||
### Das Team hinter der Transformation
|
### Das Team hinter der Transformation
|
||||||
Ein neues Website-Projekt zu realisieren, ist keine kleine Aufgabe – es erfordert Vision, Engagement und ein Team, das weiß, wie man liefert. Bei KLZ war dieses Redesign mehr als nur ein Projekt; es war eine gemeinschaftliche Anstrengung, um sicherzustellen, dass unsere digitale Präsenz die Zuverlässigkeit, Innovation und Expertise widerspiegelt, die uns auszeichnen.
|
Ein neues Website-Projekt zu realisieren, ist keine kleine Aufgabe – es erfordert Vision, Engagement und ein Team, das weiß, wie man liefert. Bei KLZ war dieses Redesign mehr als nur ein Projekt; es war eine gemeinschaftliche Anstrengung, um sicherzustellen, dass unsere digitale Präsenz die Zuverlässigkeit, Innovation und Expertise widerspiegelt, die uns auszeichnen.
|
||||||
Besondere Anerkennung gilt **Michael** und **Klaus**, die diese Initiative mit ihrem zukunftsorientierten Ansatz vorangetrieben haben. Sie verstanden die Bedeutung, nicht nur die Funktionalität zu verbessern, sondern auch eine Benutzererfahrung zu schaffen, die wirklich mit unseren Kunden und Partnern in Verbindung steht. Ihr engagierter Einsatz stellte sicher, dass jedes Detail mit den Werten und der Mission von KLZ in Einklang stand.
|
Besondere Anerkennung gilt **Michael** und **Klaus**, die diese Initiative mit ihrem zukunftsorientierten Ansatz vorangetrieben haben. Sie verstanden die Bedeutung, nicht nur die Funktionalität zu verbessern, sondern auch eine Benutzererfahrung zu schaffen, die wirklich mit unseren Kunden und Partnern in Verbindung steht. Ihr engagierter Einsatz stellte sicher, dass jedes Detail mit den Werten und der Mission von KLZ in Einklang stand.
|
||||||
Natürlich war die Umsetzung dieser Vision nur mit einem kreativen Experten möglich, und hier spielte **Marc Mintel von Cable Creations** eine Schlüsselrolle. Vom eleganten Design bis hin zu den hochwertigen Renderings, die unsere Produkte und Dienstleistungen lebendig werden lassen – Marcs Fähigkeiten und Liebe zum Detail sind auf jeder Seite sichtbar.
|
Natürlich war die Umsetzung dieser Vision nur mit einem kreativen Experten möglich, und hier spielte **Marc Mintel von Cable Creations** eine Schlüsselrolle. Vom eleganten Design bis hin zu den hochwertigen Renderings, die unsere Produkte und Dienstleistungen lebendig werden lassen – Marcs Fähigkeiten und Liebe zum Detail sind auf jeder Seite sichtbar.
|
||||||
Diese Zusammenarbeit zwischen unserem internen Team und externen Partnern ist ein Beweis für das, was wir am meisten schätzen: Partnerschaften, Präzision und das Streben nach Exzellenz. Gemeinsam haben wir eine Plattform geschaffen, die nicht nur eine Ressource ist, sondern auch das Wachstum und die Ambitionen von KLZ widerspiegelt.
|
Diese Zusammenarbeit zwischen unserem internen Team und externen Partnern ist ein Beweis für das, was wir am meisten schätzen: Partnerschaften, Präzision und das Streben nach Exzellenz. Gemeinsam haben wir eine Plattform geschaffen, die nicht nur eine Ressource ist, sondern auch das Wachstum und die Ambitionen von KLZ widerspiegelt.
|
||||||
Während wir weiter wachsen und uns weiterentwickeln, ist diese neue Website nur ein Beispiel dafür, wie unser Team kontinuierlich den Herausforderungen mit Energie und Expertise begegnet – ganz wie die Netzwerke, die wir unterstützen.
|
Während wir weiter wachsen und uns weiterentwickeln, ist diese neue Website nur ein Beispiel dafür, wie unser Team kontinuierlich den Herausforderungen mit Energie und Expertise begegnet – ganz wie die Netzwerke, die wir unterstützen.
|
||||||
### Warum das für Sie wichtig ist
|
|
||||||
|
<AnimatedImage src="/uploads/2024/12/DSC08057-Large.webp" alt="KLZ Team" width={1280} height={853} />
|
||||||
|
|
||||||
|
<ChatBubble author="KLZ Assistent" role="Warum das für Sie wichtig ist" align="right">
|
||||||
Diese neue Website ist nicht nur eine ästhetische Verbesserung – sie bietet echten Mehrwert für unsere Kunden und Partner. Hier sind die Vorteile für Sie:
|
Diese neue Website ist nicht nur eine ästhetische Verbesserung – sie bietet echten Mehrwert für unsere Kunden und Partner. Hier sind die Vorteile für Sie:
|
||||||
|
|
||||||
- **Schnellerer Zugriff auf Informationen:** Mit unserem verbesserten Design und einer PageSpeed-Bewertung von über 90 war es nie einfacher, die richtigen Produkte, Dienstleistungen oder Informationen zu finden. Zeit ist Geld, und wir helfen Ihnen, beides zu sparen.
|
- **Schnellerer Zugriff auf Informationen:** Mit unserem verbesserten Design und einer PageSpeed-Bewertung von über 90 war es nie einfacher, die richtigen Produkte, Dienstleistungen oder Informationen zu finden. Zeit ist Geld, und wir helfen Ihnen, beides zu sparen.
|
||||||
- **Verbesserte Benutzerfreundlichkeit:** Ob auf dem Desktop oder mobil – das intuitive Layout sorgt für ein reibungsloses und nahtloses Erlebnis. Sie verbringen weniger Zeit mit Suchen und mehr Zeit mit Handeln.
|
- **Verbesserte Benutzerfreundlichkeit:** Ob auf dem Desktop oder mobil – das intuitive Layout sorgt für ein reibungsloses und nahtloses Erlebnis. Sie verbringen weniger Zeit mit Suchen und mehr Zeit mit Handeln.
|
||||||
- **Eine umfassende Ressource:** Vom vollständigen Kabelkatalog bis hin zu detaillierten Servicebeschreibungen – alles, was Sie brauchen, um informierte Entscheidungen zu treffen, finden Sie mit nur wenigen Klicks.
|
- **Eine umfassende Ressource:** Vom vollständigen Kabelkatalog bis hin zu detaillierten Servicebeschreibungen – alles, was Sie brauchen, um informierte Entscheidungen zu treffen, finden Sie mit nur wenigen Klicks.
|
||||||
|
|
||||||
Aber es geht um mehr als nur technische Verbesserungen. Diese neue Plattform spiegelt die klare Vision von KLZ für die Zukunft wider, die Nachhaltigkeit, Zuverlässigkeit und Innovation priorisiert. Für unsere Kunden bedeutet das, mit einem Unternehmen zusammenzuarbeiten, das versteht, wohin sich die Branche entwickelt – und bereit ist, den Weg zu weisen.
|
Aber es geht um mehr als nur technische Verbesserungen. Diese neue Plattform spiegelt die klare Vision von KLZ für die Zukunft wider, die Nachhaltigkeit, Zuverlässigkeit und Innovation priorisiert. Für unsere Kunden bedeutet das, mit einem Unternehmen zusammenzuarbeiten, das versteht, wohin sich die Branche entwickelt – und bereit ist, den Weg zu weisen.
|
||||||
|
|
||||||
Indem wir unsere digitale Präsenz mit unserer Mission in Einklang bringen, verbessern wir nicht nur Ihre Erfahrung mit KLZ, sondern verstärken auch unser Engagement, ein Partner zu sein, dem Sie über Jahre hinweg vertrauen können. Wenn wir in Klarheit und Effizienz investieren, profitieren Sie von einer reibungsloseren und stärkeren Verbindung zu den Produkten und Dienstleistungen, auf die Sie angewiesen sind.
|
Indem wir unsere digitale Präsenz mit unserer Mission in Einklang bringen, verbessern wir nicht nur Ihre Erfahrung mit KLZ, sondern verstärken auch unser Engagement, ein Partner zu sein, dem Sie über Jahre hinweg vertrauen können. Wenn wir in Klarheit und Effizienz investieren, profitieren Sie von einer reibungsloseren und stärkeren Verbindung zu den Produkten und Dienstleistungen, auf die Sie angewiesen sind.
|
||||||
|
|
||||||
Diese Website ist nicht nur ein Upgrade – sie ist ein Versprechen, Ihnen mehr von dem zu liefern, was für Sie am wichtigsten ist: Qualität, Zuverlässigkeit und Vision.
|
Diese Website ist nicht nur ein Upgrade – sie ist ein Versprechen, Ihnen mehr von dem zu liefern, was für Sie am wichtigsten ist: Qualität, Zuverlässigkeit und Vision.
|
||||||
|
</ChatBubble>
|
||||||
|
|
||||||
|
<PowerCTA locale="de" />
|
||||||
|
|
||||||
### **Beginnen Sie noch heute mit der Erkundung**
|
### **Beginnen Sie noch heute mit der Erkundung**
|
||||||
Sie sind bereits hier, also nehmen Sie sich einen Moment Zeit, um die Website zu entdecken. Durchstöbern Sie den Katalog, erfahren Sie mehr über unsere Reise oder entdecken Sie, wie unsere Dienstleistungen Ihr nächstes großes Projekt unterstützen können.
|
Sie sind bereits hier, also nehmen Sie sich einen Moment Zeit, um die Website zu entdecken. Durchstöbern Sie den Katalog, erfahren Sie mehr über unsere Reise oder entdecken Sie, wie unsere Dienstleistungen Ihr nächstes großes Projekt unterstützen können.
|
||||||
2025 wird ein spannendes Jahr, und diese neue Website ist erst der Anfang. Begleiten Sie uns, während wir weiterhin Innovationen vorantreiben und eine hellere, grünere Zukunft gestalten.
|
2025 wird ein spannendes Jahr, und diese neue Website ist erst der Anfang. Begleiten Sie uns, während wir weiterhin Innovationen vorantreiben und eine hellere, grünere Zukunft gestalten.
|
||||||
|
|
||||||
### **Was kommt als Nächstes? Deutschsprachige Unterstützung!**
|
### **Was kommt als Nächstes? Deutschsprachige Unterstützung!**
|
||||||
Wir setzen uns dafür ein, das KLZ-Erlebnis für alle zugänglich zu machen. Bald wird die **deutsche Sprachunterstützung** verfügbar sein, damit unsere deutschsprachigen Kunden und Partner die Seite in ihrer bevorzugten Sprache genießen können. Bleiben Sie dran – es ist auf dem Weg!
|
Wir setzen uns dafür ein, das KLZ-Erlebnis für alle zugänglich zu machen. Bald wird die **deutsche Sprachunterstützung** verfügbar sein, damit unsere deutschsprachigen Kunden und Partner die Seite in ihrer bevorzugten Sprache genießen können. Bleiben Sie dran – es ist auf dem Weg!
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
---
|
---
|
||||||
|
|
||||||
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'
|
||||||
featuredImage: /uploads/2025/04/image_fx_-2025-02-20T193520.620.webp
|
featuredImage: /uploads/2025/04/image_fx_-2025-02-20T193520.620.webp
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
---
|
---
|
||||||
|
|
||||||
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'
|
||||||
featuredImage: /uploads/2025/04/inter-solar.webp
|
featuredImage: /uploads/2025/04/inter-solar.webp
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
---
|
---
|
||||||
|
|
||||||
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'
|
||||||
featuredImage: /uploads/2025/02/image_fx_-6.webp
|
featuredImage: /uploads/2025/02/image_fx_-6.webp
|
||||||
@@ -83,7 +82,28 @@ A key question in grid expansion is whether new power lines should be built as o
|
|||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
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.
|
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.
|
||||||
For those who want to dive deeper into the topic, here’s a **detailed analysis** comparing overhead lines and underground cables: [Read ](https://www.hochspannungsblog.at/wissenswertes/netzaufbau/vergleich-freileitung-erdkabel)[more](https://www.hochspannungsblog.at/wissenswertes/netzaufbau/vergleich-freileitung-erdkabel)[.](https://www.hochspannungsblog.at/wissenswertes/netzaufbau/vergleich-freileitung-erdkabel)
|
For those who want to dive deeper into the topic, here’s a **detailed analysis** comparing overhead lines and underground cables:
|
||||||
|
<VisualLinkPreview
|
||||||
|
url="https://www.hochspannungsblog.at/wissenswertes/netzaufbau/vergleich-freileitung-erdkabel"
|
||||||
|
title="Freileitung und Erdkabel sind „Stand der Technik“"
|
||||||
|
summary="Freileitung oder Erdkabel? Wir erklären Ihnen die Unterschiede und Möglichkeiten, aber auch warum was möglich ist und warum was nicht."
|
||||||
|
image="https://www.hochspannungsblog.at/201210-netzbau-110kv-wegscheid-mast-kabelanschluss-1723.jpg?ch=dhsowxyq&:hp=9;1;de"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<VisualLinkPreview
|
||||||
|
url="https://www.hochspannungsblog.at/wissenswertes/netzaufbau/vergleich-freileitung-erdkabel"
|
||||||
|
title="Freileitung und Erdkabel sind „Stand der Technik“"
|
||||||
|
summary="Freileitung oder Erdkabel? Wir erklären Ihnen die Unterschiede und Möglichkeiten, aber auch warum was möglich ist und warum was nicht."
|
||||||
|
image="https://www.hochspannungsblog.at/201210-netzbau-110kv-wegscheid-mast-kabelanschluss-1723.jpg?ch=dhsowxyq&:hp=9;1;de"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<VisualLinkPreview
|
||||||
|
url="https://www.hochspannungsblog.at/wissenswertes/netzaufbau/vergleich-freileitung-erdkabel"
|
||||||
|
title="Freileitung und Erdkabel sind „Stand der Technik“"
|
||||||
|
summary="Freileitung oder Erdkabel? Wir erklären Ihnen die Unterschiede und Möglichkeiten, aber auch warum was möglich ist und warum was nicht."
|
||||||
|
image="https://www.hochspannungsblog.at/201210-netzbau-110kv-wegscheid-mast-kabelanschluss-1723.jpg?ch=dhsowxyq&:hp=9;1;de"
|
||||||
|
/>
|
||||||
|
|
||||||
<VisualLinkPreview
|
<VisualLinkPreview
|
||||||
url="https://www.hochspannungsblog.at/wissenswertes/netzaufbau/vergleich-freileitung-erdkabel"
|
url="https://www.hochspannungsblog.at/wissenswertes/netzaufbau/vergleich-freileitung-erdkabel"
|
||||||
title="Freileitung und Erdkabel sind „Stand der Technik“"
|
title="Freileitung und Erdkabel sind „Stand der Technik“"
|
||||||
|
|||||||
@@ -1,9 +1,7 @@
|
|||||||
---
|
---
|
||||||
|
|
||||||
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'
|
||||||
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
|
||||||
category: Kabel Technologie
|
category: Kabel Technologie
|
||||||
---
|
---
|
||||||
|
|||||||
@@ -1,9 +1,7 @@
|
|||||||
---
|
---
|
||||||
|
|
||||||
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'
|
||||||
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
|
||||||
category: Kabel Technologie
|
category: Kabel Technologie
|
||||||
---
|
---
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
---
|
---
|
||||||
|
|
||||||
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'
|
||||||
featuredImage: /uploads/2024/11/1234adws21312-scaled.jpg
|
featuredImage: /uploads/2024/11/1234adws21312-scaled.jpg
|
||||||
|
|||||||
@@ -1,9 +1,7 @@
|
|||||||
---
|
---
|
||||||
|
|
||||||
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'
|
||||||
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
|
||||||
category: Kabel Technologie
|
category: Kabel Technologie
|
||||||
---
|
---
|
||||||
|
|||||||
@@ -1,9 +1,7 @@
|
|||||||
---
|
---
|
||||||
|
|
||||||
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'
|
||||||
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
|
||||||
category: Kabel Technologie
|
category: Kabel Technologie
|
||||||
---
|
---
|
||||||
|
|||||||
@@ -1,8 +1,5 @@
|
|||||||
---
|
---
|
||||||
|
title: 'Copper or aluminum cable? Cost comparison for underground cable and grid connection'
|
||||||
title: >-
|
|
||||||
Copper or aluminum cable? Cost comparison for underground cable and grid
|
|
||||||
connection
|
|
||||||
date: '2025-02-24T08:30:23'
|
date: '2025-02-24T08:30:23'
|
||||||
featuredImage: /uploads/2024/11/medium-voltage-category.webp
|
featuredImage: /uploads/2024/11/medium-voltage-category.webp
|
||||||
locale: en
|
locale: en
|
||||||
|
|||||||
@@ -1,11 +1,7 @@
|
|||||||
---
|
---
|
||||||
|
title: 'Expanding the grid by 2025: Building the foundation for a successful energy transition'
|
||||||
title: >-
|
|
||||||
Expanding the grid by 2025: Building the foundation for a successful energy
|
|
||||||
transition
|
|
||||||
date: '2025-02-10T13:00:36'
|
date: '2025-02-10T13:00:36'
|
||||||
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
|
||||||
category: Kabel Technologie
|
category: Kabel Technologie
|
||||||
---
|
---
|
||||||
|
|||||||
@@ -1,9 +1,7 @@
|
|||||||
---
|
---
|
||||||
|
|
||||||
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'
|
||||||
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
|
||||||
category: Kabel Technologie
|
category: Kabel Technologie
|
||||||
---
|
---
|
||||||
@@ -27,7 +25,14 @@ But why does this happen? Every cable has a resistance that slows down the flow
|
|||||||
### Green energy is a central component of our future today … 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.
|
### Green energy is a central component of our future today … 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.
|
||||||
High-quality cables, on the other hand, have better conductivity and lower resistance. This ensures that the **electricity flows more efficiently and less is lost**. This leaves more of the generated energy for you to use – which is not only good for your electricity bill, but also helps to maximize the sustainability of your solar system. So it’s worth paying attention to quality when choosing cables in order to exploit the full potential of green energy.
|
High-quality cables, on the other hand, have better conductivity and lower resistance. This ensures that the **electricity flows more efficiently and less is lost**. This leaves more of the generated energy for you to use – which is not only good for your electricity bill, but also helps to maximize the sustainability of your solar system. So it’s worth paying attention to quality when choosing cables in order to exploit the full potential of green energy.
|
||||||
<VisualLinkPreview
|
<VisualLinkPreview
|
||||||
url="https://ratedpower.com/blog/utility-scale-pv-losses/"
|
url="
|
||||||
|
<VisualLinkPreview
|
||||||
|
url="https://ratedpower.com/blog/utility-scale-pv-losses/"
|
||||||
|
title="Ultimate guide to utility-scale PV system losses — RatedPower"
|
||||||
|
summary="What are solar PV system losses and how can you avoid them to maximize the electrical output from your utility-scale plant project?"
|
||||||
|
image="https://assets.ratedpower.com/1694509274-aerial-view-solar-panels-top-building-eco-building-factory-solar-photovoltaic-cell.jpg?auto=format&fit=crop&h=630&w=1200"
|
||||||
|
/>
|
||||||
|
"
|
||||||
title="Ultimate guide to utility-scale PV system losses — RatedPower"
|
title="Ultimate guide to utility-scale PV system losses — RatedPower"
|
||||||
summary="What are solar PV system losses and how can you avoid them to maximize the electrical output from your utility-scale plant project?"
|
summary="What are solar PV system losses and how can you avoid them to maximize the electrical output from your utility-scale plant project?"
|
||||||
image="https://assets.ratedpower.com/1694509274-aerial-view-solar-panels-top-building-eco-building-factory-solar-photovoltaic-cell.jpg?auto=format&fit=crop&h=630&w=1200"
|
image="https://assets.ratedpower.com/1694509274-aerial-view-solar-panels-top-building-eco-building-factory-solar-photovoltaic-cell.jpg?auto=format&fit=crop&h=630&w=1200"
|
||||||
@@ -36,7 +41,14 @@ image="https://assets.ratedpower.com/1694509274-aerial-view-solar-panels-top-bui
|
|||||||
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 **store surplus energy**, 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** energy storage systems** 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.
|
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 **store surplus energy**, 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** energy storage systems** 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.
|
||||||
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 **effective and cost-efficient storage systems**. 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.
|
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 **effective and cost-efficient storage systems**. 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.
|
||||||
<VisualLinkPreview
|
<VisualLinkPreview
|
||||||
url="https://www.solarenergie.de/stromspeicher/arten/stromspeicher-windkraft"
|
url="
|
||||||
|
<VisualLinkPreview
|
||||||
|
url="https://www.solarenergie.de/stromspeicher/arten/stromspeicher-windkraft"
|
||||||
|
title="Speicher für Windenergie: Welche Möglichkeiten gibt es?"
|
||||||
|
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!"
|
||||||
|
image="https://assets.solarwatt.de/Resources/Persistent/e084aa09af5f0cdef386088bc558a52d81509cc0/Regenerative%20Energie-1200x628.jpg"
|
||||||
|
/>
|
||||||
|
"
|
||||||
title="Speicher für Windenergie: Welche Möglichkeiten gibt es?"
|
title="Speicher für Windenergie: Welche Möglichkeiten gibt es?"
|
||||||
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!"
|
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!"
|
||||||
image="https://assets.solarwatt.de/Resources/Persistent/e084aa09af5f0cdef386088bc558a52d81509cc0/Regenerative%20Energie-1200x628.jpg"
|
image="https://assets.solarwatt.de/Resources/Persistent/e084aa09af5f0cdef386088bc558a52d81509cc0/Regenerative%20Energie-1200x628.jpg"
|
||||||
|
|||||||
@@ -1,25 +1,53 @@
|
|||||||
---
|
---
|
||||||
|
|
||||||
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'
|
||||||
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
|
||||||
category: Kabel Technologie
|
category: Kabel Technologie
|
||||||
---
|
---
|
||||||
|
|
||||||
# Focus on wind farm construction: three typical cable challenges
|
# Focus on wind farm construction: three typical cable challenges
|
||||||
|
|
||||||
|
<Callout type="info" title="TL;DR">
|
||||||
|
- **Grid expansion** is crucial for the energy transition and energy security.
|
||||||
|
- By 2024: **3,085 km of new power line**s; by 2030: another 12,000 km planned.
|
||||||
|
- **Underground cables** are preferred for environmental and public acceptance reasons.
|
||||||
|
- **Challenges**: bureaucracy, opposition, and labor shortages.
|
||||||
|
- **Solutions**: public involvement, smart technologies, and innovative cables.
|
||||||
|
|
||||||
|
**Goal:** Climate neutrality and sustainable energy supply by 2045. 🌍
|
||||||
|
</Callout>
|
||||||
|
|
||||||
Building an [**onshore wind farm**](https://www.verivox.de/strom/themen/windpark/) is a technical masterpiece – and **cable installation** plays a crucial role. Between wind turbines, transformers and grid connection points run hundreds of meters of [**medium-voltage cables**](https://www.dosensecable.es/de/diferencia-entre-cable-de-media-tension/) that transfer the generated energy safely and efficiently to the grid. But it’s exactly these **wind farm cables** that often become the most critical bottleneck in the entire project.
|
Building an [**onshore wind farm**](https://www.verivox.de/strom/themen/windpark/) is a technical masterpiece – and **cable installation** plays a crucial role. Between wind turbines, transformers and grid connection points run hundreds of meters of [**medium-voltage cables**](https://www.dosensecable.es/de/diferencia-entre-cable-de-media-tension/) that transfer the generated energy safely and efficiently to the grid. But it’s exactly these **wind farm cables** that often become the most critical bottleneck in the entire project.
|
||||||
|
|
||||||
**Wind power cabling** is far more than just sourcing materials. It requires precise planning, coordination and experience – from choosing the right **cable type** to ensuring timely delivery to the construction site. Even small delays or changes in plans can significantly affect progress and trigger high additional costs.
|
**Wind power cabling** is far more than just sourcing materials. It requires precise planning, coordination and experience – from choosing the right **cable type** to ensuring timely delivery to the construction site. Even small delays or changes in plans can significantly affect progress and trigger high additional costs.
|
||||||
Add to this the logistical challenges: **large cable drums**, different [**conductor cross sections**](https://www.conrad.de/de/ratgeber/handwerk/kabelquerschnitt-berechnen.html), special **packaging**, and ever-changing construction site conditions. Without forward planning, you risk bottlenecks – and that can delay the entire [**grid connection of the wind farm**](https://www.enargus.de/pub/bscw.cgi/d7842-2/*/*/Netzanschluss%20einer%20Windkraftanlage?op=Wiki.getwiki&search=Windpark).
|
|
||||||
|
Add to this the logistical challenges: **large cable drums**, different [**conductor cross sections**](https://www.conrad.de/de/ratgeber/handwerk/kabelquerschnitt-berechnen.html), special **packaging**, and ever-changing construction site conditions. Without forward planning, you risk bottlenecks – and that can delay the entire [**grid connection of the wind farm**](https://www.enargus.de/pub/bscw.cgi/d7842-2/*/*/Netzanschluss%20einer%20Windkraftanlage?op=Wiki.getwiki&search=Windpark).
|
||||||
|
|
||||||
In this article, we look at the** 3 biggest challenges in wind farm construction** – and show how proactive logistics and the right cable strategy can help you stay on schedule and maximize efficiency.
|
In this article, we look at the** 3 biggest challenges in wind farm construction** – and show how proactive logistics and the right cable strategy can help you stay on schedule and maximize efficiency.
|
||||||
|
|
||||||
Find out why onshore wind farms are a crucial pillar of the energy transition here:
|
Find out why onshore wind farms are a crucial pillar of the energy transition here:
|
||||||
|
|
||||||
<VisualLinkPreview
|
<VisualLinkPreview
|
||||||
url="https://www.enbw.com/unternehmen/themen/windkraft/onshore-wind-pfeiler-der-energiewende.html"
|
url="
|
||||||
title="Onshore-Windenergie als Pfeiler der Energiewende | EnBW"
|
<VisualLinkPreview
|
||||||
summary="Viele Faktoren haben den Bau von Windenergieanlagen in den letzten Jahren gebremst. Lesen Sie hier die Gründe!"
|
url="https://www.enbw.com/unternehmen/themen/windkraft/onshore-wind-pfeiler-der-energiewende.html"
|
||||||
image="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"
|
title="Onshore-Windenergie als Pfeiler der Energiewende | EnBW"
|
||||||
|
summary="Viele Faktoren haben den Bau von Windenergieanlagen in den letzten Jahren gebremst. Lesen Sie hier die Gründe!"
|
||||||
|
image="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"
|
||||||
/>
|
/>
|
||||||
|
"
|
||||||
|
title="Onshore-Windenergie als Pfeiler der Energiewende | EnBW"
|
||||||
|
summary="Viele Faktoren haben den Bau von Windenergieanlagen in den letzten Jahren gebremst. Lesen Sie hier die Gründe!"
|
||||||
|
image="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"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<AnimatedImage src="/uploads/2025/04/image_fx_-7.webp" alt="Wind farm construction site" width={1408} height={768} />
|
||||||
|
|
||||||
## Challenge 1: Tight construction timelines and fixed deadlines
|
## Challenge 1: Tight construction timelines and fixed deadlines
|
||||||
|
|
||||||
In **wind farm construction**, schedules are rarely flexible. Any delay in [**cable laying**](https://www.eef.de/news/die-infrastruktur-hinter-windparks) directly impacts the entire build process – from foundation and tower installation to commissioning. Since **grid connection deadlines** are usually contractually binding, a missing [**medium-voltage cable**](/de/stromkabel/mittelspannungskabel/) can quickly lead to costly site downtime.
|
In **wind farm construction**, schedules are rarely flexible. Any delay in [**cable laying**](https://www.eef.de/news/die-infrastruktur-hinter-windparks) directly impacts the entire build process – from foundation and tower installation to commissioning. Since **grid connection deadlines** are usually contractually binding, a missing [**medium-voltage cable**](/de/stromkabel/mittelspannungskabel/) can quickly lead to costly site downtime.
|
||||||
|
|
||||||
Typical causes of delays:
|
Typical causes of delays:
|
||||||
- delayed **cable deliveries** or unclear scheduling
|
- delayed **cable deliveries** or unclear scheduling
|
||||||
- inaccurate **material planning** in large-scale projects
|
- inaccurate **material planning** in large-scale projects
|
||||||
@@ -27,7 +55,9 @@ Typical causes of delays:
|
|||||||
- lack of coordination between suppliers, civil engineers and installers
|
- lack of coordination between suppliers, civil engineers and installers
|
||||||
|
|
||||||
Especially for **wind farm projects** involving several kilometers of [**NA2XS(F)2Y**](/de/produkte/stromkabel/mittelspannungskabel/na2xsf2y-2/), precise **delivery coordination** is essential. Partial and complete deliveries must be scheduled to match the actual **construction progress**.
|
Especially for **wind farm projects** involving several kilometers of [**NA2XS(F)2Y**](/de/produkte/stromkabel/mittelspannungskabel/na2xsf2y-2/), precise **delivery coordination** is essential. Partial and complete deliveries must be scheduled to match the actual **construction progress**.
|
||||||
|
|
||||||
**Efficient logistics solutions can make the difference:**
|
**Efficient logistics solutions can make the difference:**
|
||||||
|
|
||||||
<table>
|
<table>
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
@@ -54,23 +84,38 @@ Especially for **wind farm projects** involving several kilometers of [**NA2XS(F
|
|||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
With precise [**cable capacity**](https://www.a-eberle.de/infobrief/infobrief-20/) planning and responsive logistics, even high-pressure timelines can be handled efficiently. This ensures the **wind farm’s grid connection** stays on schedule – and energy flows reliably.
|
With precise [**cable capacity**](https://www.a-eberle.de/infobrief/infobrief-20/) planning and responsive logistics, even high-pressure timelines can be handled efficiently. This ensures the **wind farm’s grid connection** stays on schedule – and energy flows reliably.
|
||||||
|
|
||||||
Want to know which cable types are used in wind farms? Check out this article:
|
Want to know which cable types are used in wind farms? Check out this article:
|
||||||
|
|
||||||
<VisualLinkPreview
|
<VisualLinkPreview
|
||||||
url="https://wind-turbine.com/magazin/ratgeber/250713/welche-arten-von-kabeln-benoetigt-man-fuer-den-bau-eines-windparks.html"
|
url="
|
||||||
title="Welche Arten von Kabeln benötigt man für den Bau eines Windparks?"
|
<VisualLinkPreview
|
||||||
summary="Die Verkabelung ist ein zentrales Element jeder Windkraftanlage und beeinflusst maßgeblich die Effizienz, Sicherheit und Wirtschaftlichkeit eines Windparks.…"
|
url="https://wind-turbine.com/magazin/ratgeber/250713/welche-arten-von-kabeln-benoetigt-man-fuer-den-bau-eines-windparks.html"
|
||||||
image="https://wind-turbine.com/i/53689/68738caa5e58ffdf06031cf2/2/1200/630/68738c85497af_KabelfreinenWindparkpng.png"
|
title="Welche Arten von Kabeln benötigt man für den Bau eines Windparks?"
|
||||||
|
summary="Die Verkabelung ist ein zentrales Element jeder Windkraftanlage und beeinflusst maßgeblich die Effizienz, Sicherheit und Wirtschaftlichkeit eines Windparks.…"
|
||||||
|
image="https://wind-turbine.com/i/53689/68738caa5e58ffdf06031cf2/2/1200/630/68738c85497af_KabelfreinenWindparkpng.png"
|
||||||
/>
|
/>
|
||||||
|
"
|
||||||
|
title="Welche Arten von Kabeln benötigt man für den Bau eines Windparks?"
|
||||||
|
summary="Die Verkabelung ist ein zentrales Element jeder Windkraftanlage und beeinflusst maßgeblich die Effizienz, Sicherheit und Wirtschaftlichkeit eines Windparks.…"
|
||||||
|
image="https://wind-turbine.com/i/53689/68738caa5e58ffdf06031cf2/2/1200/630/68738c85497af_KabelfreinenWindparkpng.png"
|
||||||
|
/>
|
||||||
|
|
||||||
## Challenge 2: Large delivery volumes and specialized packaging
|
## Challenge 2: Large delivery volumes and specialized packaging
|
||||||
|
|
||||||
A modern **onshore wind farm** requires several kilometers of **medium-voltage cables** – often of the type [**NA2XS(F)2Y**](/de/produkte/stromkabel/mittelspannungskabel/na2xsf2y-2/), [**N2XSY**](/de/produkte/stromkabel/mittelspannungskabel/n2xsy-2/) or [**NAYY**](/de/produkte/stromkabel/niederspannungskabel/nayy-2/). These cables weigh several tons per drum and require smart logistics to avoid damage, confusion and costly delays.
|
A modern **onshore wind farm** requires several kilometers of **medium-voltage cables** – often of the type [**NA2XS(F)2Y**](/de/produkte/stromkabel/mittelspannungskabel/na2xsf2y-2/), [**N2XSY**](/de/produkte/stromkabel/mittelspannungskabel/n2xsy-2/) or [**NAYY**](/de/produkte/stromkabel/niederspannungskabel/nayy-2/). These cables weigh several tons per drum and require smart logistics to avoid damage, confusion and costly delays.
|
||||||
|
|
||||||
The bigger the project, the more complex the **material coordination** becomes:
|
The bigger the project, the more complex the **material coordination** becomes:
|
||||||
- Different **cable cross-sections** and **conductor types** must be clearly assigned.
|
- Different **cable cross-sections** and **conductor types** must be clearly assigned.
|
||||||
- **Drum sizes** and [**installation units**](https://www.elektrofachkraft.de/sicheres-arbeiten/neue-mindestanforderungen-fuer-kabelverlegung) vary by cable length and location.
|
- **Drum sizes** and [**installation units**](https://www.elektrofachkraft.de/sicheres-arbeiten/neue-mindestanforderungen-fuer-kabelverlegung) vary by cable length and location.
|
||||||
- Clear **markings** and **packaging systems** on-site are key to avoid installation mistakes.
|
- Clear **markings** and **packaging systems** on-site are key to avoid installation mistakes.
|
||||||
|
|
||||||
**Our experience shows:** Planning for storage and packaging units in advance not only saves time but also reduces the risk of material loss and reorders.
|
**Our experience shows:** Planning for storage and packaging units in advance not only saves time but also reduces the risk of material loss and reorders.
|
||||||
|
|
||||||
**Typical requirements and solutions:**
|
**Typical requirements and solutions:**
|
||||||
|
|
||||||
<table>
|
<table>
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
@@ -97,16 +142,24 @@ The bigger the project, the more complex the **material coordination** becomes:
|
|||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
A clear [**cable logistics strategy**](https://logistik-heute.de/galerien/mammutprojekt-kabellogistik-wie-kommen-tausende-tonnen-hgue-erdkabel-fuer-die-energiewende-zum-einsatzort-40875.html) is the key to avoiding material shortages and costly downtime. This helps maintain control – even for projects involving dozens of kilometers of **wind farm cabling**.
|
A clear [**cable logistics strategy**](https://logistik-heute.de/galerien/mammutprojekt-kabellogistik-wie-kommen-tausende-tonnen-hgue-erdkabel-fuer-die-energiewende-zum-einsatzort-40875.html) is the key to avoiding material shortages and costly downtime. This helps maintain control – even for projects involving dozens of kilometers of **wind farm cabling**.
|
||||||
|
|
||||||
Anyone who integrates **packaging, storage and labeling** early into the planning process ensures that the **wind farm cables** arrive exactly where they’re needed – with no time lost and no disruption to the construction flow.
|
Anyone who integrates **packaging, storage and labeling** early into the planning process ensures that the **wind farm cables** arrive exactly where they’re needed – with no time lost and no disruption to the construction flow.
|
||||||
|
|
||||||
|
<AnimatedImage src="/uploads/2025/08/NA2XSF2Y_3x1x300_RM-25_12-20kV-0.webp" alt="NA2XSF2Y Cable" width={1920} height={1080} />
|
||||||
|
|
||||||
## Challenge 3: Last-minute project changes
|
## Challenge 3: Last-minute project changes
|
||||||
|
|
||||||
Hardly any **wind farm project** goes exactly to plan. Construction site conditions, supply bottlenecks, or new requirements from the [grid operator](https://windpark-altdorferwald.de/wissenswertes-windenergie/wie-wird-die-erzeugte-energie-ins-stromnetz-eingespeist/) often lead to spontaneous adjustments – and this is where the true flexibility of **cable logistics** is revealed.
|
Hardly any **wind farm project** goes exactly to plan. Construction site conditions, supply bottlenecks, or new requirements from the [grid operator](https://windpark-altdorferwald.de/wissenswertes-windenergie/wie-wird-die-erzeugte-energie-ins-stromnetz-eingespeist/) often lead to spontaneous adjustments – and this is where the true flexibility of **cable logistics** is revealed.
|
||||||
|
|
||||||
**Typical scenarios:**
|
**Typical scenarios:**
|
||||||
- A cable route has to be changed due to geological conditions.
|
- A cable route has to be changed due to geological conditions.
|
||||||
- **Cable types** or **conductor cross-sections** change after a new grid calculation.
|
- **Cable types** or **conductor cross-sections** change after a new grid calculation.
|
||||||
- The **delivery location** changes at short notice because sections progress faster or slower than expected.
|
- The **delivery location** changes at short notice because sections progress faster or slower than expected.
|
||||||
|
|
||||||
In such cases, it’s crucial that the supplier has **its own stock** and a **quick response time**. Only then can changes to **cable lengths** or additional **earthing components** be provided promptly, without delaying the project.
|
In such cases, it’s crucial that the supplier has **its own stock** and a **quick response time**. Only then can changes to **cable lengths** or additional **earthing components** be provided promptly, without delaying the project.
|
||||||
|
|
||||||
An experienced partner can make all the difference:
|
An experienced partner can make all the difference:
|
||||||
- **Rapid re-delivery** from central stock within Germany
|
- **Rapid re-delivery** from central stock within Germany
|
||||||
- **Flexible redirection** of deliveries in case of planning changes
|
- **Flexible redirection** of deliveries in case of planning changes
|
||||||
@@ -114,15 +167,27 @@ An experienced partner can make all the difference:
|
|||||||
- **Documented traceability** to keep all changes transparent
|
- **Documented traceability** to keep all changes transparent
|
||||||
|
|
||||||
Short-term changes aren’t the exception – they’re part of everyday life in **wind farm construction**. What matters is being prepared. A well-designed [**supply chain**](https://bwo-offshorewind.de/pressemitteilung-roadmap-ist-wichtiger-schritt-fuer-resiliente-lieferketten/), clear communication, and agile warehousing structures ensure the project stays on schedule – and the wind farm connects to the grid on time.
|
Short-term changes aren’t the exception – they’re part of everyday life in **wind farm construction**. What matters is being prepared. A well-designed [**supply chain**](https://bwo-offshorewind.de/pressemitteilung-roadmap-ist-wichtiger-schritt-fuer-resiliente-lieferketten/), clear communication, and agile warehousing structures ensure the project stays on schedule – and the wind farm connects to the grid on time.
|
||||||
|
|
||||||
Avoid delays or issues during your wind power project by understanding early on why NABU may file objections to certain sites:
|
Avoid delays or issues during your wind power project by understanding early on why NABU may file objections to certain sites:
|
||||||
|
|
||||||
<VisualLinkPreview
|
<VisualLinkPreview
|
||||||
url="https://www.nabu.de/umwelt-und-ressourcen/energie/erneuerbare-energien-energiewende/windenergie/26913.html"
|
url="
|
||||||
title="Wann klagt der NABU gegen Windkraftprojekte?"
|
<VisualLinkPreview
|
||||||
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."
|
url="https://www.nabu.de/umwelt-und-ressourcen/energie/erneuerbare-energien-energiewende/windenergie/26913.html"
|
||||||
image="https://www.nabu.de/imperia/md/nabu/images/umwelt/energie/energietraeger/windkraft/161125-nabu-windrad-allgaeu-heidrun-burchard.jpeg"
|
title="Wann klagt der NABU gegen Windkraftprojekte?"
|
||||||
|
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."
|
||||||
|
image="https://www.nabu.de/imperia/md/nabu/images/umwelt/energie/energietraeger/windkraft/161125-nabu-windrad-allgaeu-heidrun-burchard.jpeg"
|
||||||
/>
|
/>
|
||||||
|
"
|
||||||
|
title="Wann klagt der NABU gegen Windkraftprojekte?"
|
||||||
|
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."
|
||||||
|
image="https://www.nabu.de/imperia/md/nabu/images/umwelt/energie/energietraeger/windkraft/161125-nabu-windrad-allgaeu-heidrun-burchard.jpeg"
|
||||||
|
/>
|
||||||
|
|
||||||
## Quality and sustainability as success factors
|
## Quality and sustainability as success factors
|
||||||
|
|
||||||
In addition to time and logistics, [**cable quality**](https://www.windkraft-journal.de/2025/07/14/planungsempfehlung-bei-der-verkabelung-von-windparks-durch-wind-turbine-com/) plays a decisive role in the long-term performance of a **wind farm**. After all, the installed **[medium-voltage](/de/stromkabel/mittelspannungskabel/) and [high-voltage cables](/de/stromkabel/hochspannungskabel/)** are expected to transmit energy reliably for decades – even under extreme weather and changing load conditions.
|
In addition to time and logistics, [**cable quality**](https://www.windkraft-journal.de/2025/07/14/planungsempfehlung-bei-der-verkabelung-von-windparks-durch-wind-turbine-com/) plays a decisive role in the long-term performance of a **wind farm**. After all, the installed **[medium-voltage](/de/stromkabel/mittelspannungskabel/) and [high-voltage cables](/de/stromkabel/hochspannungskabel/)** are expected to transmit energy reliably for decades – even under extreme weather and changing load conditions.
|
||||||
|
|
||||||
A high-quality **cable system for wind power** stands out due to several factors:
|
A high-quality **cable system for wind power** stands out due to several factors:
|
||||||
- **Material quality:** XLPE-insulated cables like [**NA2XS(F)2Y**](/de/produkte/stromkabel/mittelspannungskabel/na2xsf2y-2/) or [**N2XS(F)2Y**](/de/produkte/stromkabel/mittelspannungskabel/n2xsf2y-2/) provide high dielectric strength and excellent long-term protection.
|
- **Material quality:** XLPE-insulated cables like [**NA2XS(F)2Y**](/de/produkte/stromkabel/mittelspannungskabel/na2xsf2y-2/) or [**N2XS(F)2Y**](/de/produkte/stromkabel/mittelspannungskabel/n2xsf2y-2/) provide high dielectric strength and excellent long-term protection.
|
||||||
- **[Standards compliance](https://www.zvei.org/fileadmin/user_upload/Presse_und_Medien/Publikationen/2017/September/ZVEI_Leitfaden_Kabel_und_Leitungen_in_Windkraftanlagen/ZVEI-Leitfaden-Kabel-und-Leitungen-in-Windkraftanlagen-September-2017.pdf):** All components used should meet key standards such as **DIN VDE 0276**, **VDE 0298**, or **IEC 60502**.
|
- **[Standards compliance](https://www.zvei.org/fileadmin/user_upload/Presse_und_Medien/Publikationen/2017/September/ZVEI_Leitfaden_Kabel_und_Leitungen_in_Windkraftanlagen/ZVEI-Leitfaden-Kabel-und-Leitungen-in-Windkraftanlagen-September-2017.pdf):** All components used should meet key standards such as **DIN VDE 0276**, **VDE 0298**, or **IEC 60502**.
|
||||||
@@ -130,19 +195,32 @@ A high-quality **cable system for wind power** stands out due to several factors
|
|||||||
- **Environmental aspects:** Recyclable materials and the [reuse of drums or conductor materials](/de/recycling-von-kabeltrommeln-nachhaltigkeit-im-windkraftprojekt/) help reduce ecological footprint.
|
- **Environmental aspects:** Recyclable materials and the [reuse of drums or conductor materials](/de/recycling-von-kabeltrommeln-nachhaltigkeit-im-windkraftprojekt/) help reduce ecological footprint.
|
||||||
|
|
||||||
More and more project developers are placing value on **sustainable cable systems** that combine energy efficiency with durability. This applies not only to the **material selection**, but also to **supply chains**: short transport routes, local storage near the project, and optimized packaging concepts reduce emissions and logistics effort.
|
More and more project developers are placing value on **sustainable cable systems** that combine energy efficiency with durability. This applies not only to the **material selection**, but also to **supply chains**: short transport routes, local storage near the project, and optimized packaging concepts reduce emissions and logistics effort.
|
||||||
|
|
||||||
The combination of **technical quality**, **ecological responsibility**, and **efficient logistics** makes modern **wind farm cabling** a central success factor for grid expansion. Anyone who invests in smart solutions here builds the foundation for stable and sustainable energy flow – now and in the future.
|
The combination of **technical quality**, **ecological responsibility**, and **efficient logistics** makes modern **wind farm cabling** a central success factor for grid expansion. Anyone who invests in smart solutions here builds the foundation for stable and sustainable energy flow – now and in the future.
|
||||||
|
|
||||||
[Find out here which cables are suitable for your wind farm project and what makes the difference between low and high voltage options.](/de/welche-kabel-fuer-windkraft-unterschiede-von-nieder-bis-hoechstspannung-erklaert/)
|
[Find out here which cables are suitable for your wind farm project and what makes the difference between low and high voltage options.](/de/welche-kabel-fuer-windkraft-unterschiede-von-nieder-bis-hoechstspannung-erklaert/)
|
||||||
|
|
||||||
|
<AnimatedImage src="/uploads/2025/01/green-alternative-eco-friendly-energy-windmill-tu-2023-11-27-05-10-51-utc-scaled.webp" alt="Wind farm landscape" width={2560} height={1707} />
|
||||||
|
|
||||||
## Conclusion: Successfully connected to the grid
|
## Conclusion: Successfully connected to the grid
|
||||||
|
|
||||||
Cabling is the backbone of any **wind farm** – and at the same time one of the most sensitive parts of the project. Tight schedules, complex logistics and last-minute changes aren’t the exception, they’re the norm. Those who identify and address these challenges early avoid standstills, cost overruns and missed deadlines.
|
Cabling is the backbone of any **wind farm** – and at the same time one of the most sensitive parts of the project. Tight schedules, complex logistics and last-minute changes aren’t the exception, they’re the norm. Those who identify and address these challenges early avoid standstills, cost overruns and missed deadlines.
|
||||||
|
|
||||||
Successful **wind farm cable projects** rely on three core principles:
|
Successful **wind farm cable projects** rely on three core principles:
|
||||||
- **Structured planning** – clear workflows, coordinated delivery schedules and defined responsibilities.
|
1. **Structured planning** – clear workflows, coordinated delivery schedules and defined responsibilities.
|
||||||
- **Flexibility** – in-house stock and short response times when changes occur.
|
2. **Flexibility** – in-house stock and short response times when changes occur.
|
||||||
- **Quality** – durable, standards-compliant cable systems and sustainable logistics processes.
|
3. **Quality** – durable, standards-compliant cable systems and sustainable logistics processes.
|
||||||
|
|
||||||
With the right mix of experience, organization and technical know-how, even complex **wind farm cabling** can be implemented efficiently. This keeps construction on track – and ensures the wind farm delivers power exactly when it’s needed.
|
With the right mix of experience, organization and technical know-how, even complex **wind farm cabling** can be implemented efficiently. This keeps construction on track – and ensures the wind farm delivers power exactly when it’s needed.
|
||||||
|
|
||||||
### KLZ – your partner for successful wind farm cabling
|
### KLZ – your partner for successful wind farm cabling
|
||||||
|
|
||||||
Whether you need [**medium voltage**](/de/stromkabel/mittelspannungskabel/), **underground cables**, or complete **grid connection solutions** – we don’t just provide the right materials, but the kind of experience that actually moves your project forward. For years, we’ve been supporting **wind power projects** throughout Germany and the Netherlands – from technical consulting and **material selection** to **on-time delivery**.
|
Whether you need [**medium voltage**](/de/stromkabel/mittelspannungskabel/), **underground cables**, or complete **grid connection solutions** – we don’t just provide the right materials, but the kind of experience that actually moves your project forward. For years, we’ve been supporting **wind power projects** throughout Germany and the Netherlands – from technical consulting and **material selection** to **on-time delivery**.
|
||||||
|
|
||||||
Our advantage? **Real-world experience**: We know how tight construction timelines in wind projects are, which cable systems have proven themselves, and what really matters in logistics. Thanks to our **central storage facilities in Germany**, we respond quickly to changes and keep supply chains stable – even when your project gets dynamic.
|
Our advantage? **Real-world experience**: We know how tight construction timelines in wind projects are, which cable systems have proven themselves, and what really matters in logistics. Thanks to our **central storage facilities in Germany**, we respond quickly to changes and keep supply chains stable – even when your project gets dynamic.
|
||||||
|
|
||||||
With our network, market knowledge, and passion for renewable energy, we ensure your **wind power project** connects to the grid on time – and without the drama.
|
With our network, market knowledge, and passion for renewable energy, we ensure your **wind power project** connects to the grid on time – and without the drama.
|
||||||
|
|
||||||
➡️ **Planning a new wind farm or need help choosing the right cables?** Then talk to us – we deliver the **cables, solutions, and expertise** that make your project a success.
|
➡️ **Planning a new wind farm or need help choosing the right cables?** Then talk to us – we deliver the **cables, solutions, and expertise** that make your project a success.
|
||||||
|
|
||||||
[Get in touch now](/de/kontakt/)
|
[Get in touch now](/de/kontakt/)
|
||||||
|
|||||||
@@ -1,8 +1,5 @@
|
|||||||
---
|
---
|
||||||
|
title: 'From smart to sustainable: this is what the energy industry will look like in the near future'
|
||||||
title: >-
|
|
||||||
From smart to sustainable: this is what the energy industry will look like in
|
|
||||||
the near future
|
|
||||||
date: '2025-03-24T11:00:44'
|
date: '2025-03-24T11:00:44'
|
||||||
featuredImage: /uploads/2025/02/image_fx_-7.webp
|
featuredImage: /uploads/2025/02/image_fx_-7.webp
|
||||||
locale: en
|
locale: en
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
---
|
---
|
||||||
|
|
||||||
title: Green energy starts underground – and with a plan
|
title: Green energy starts underground – and with a plan
|
||||||
date: '2025-05-22T09:20:07'
|
date: '2025-05-22T09:20:07'
|
||||||
featuredImage: /uploads/2025/02/image_fx_-9.webp
|
featuredImage: /uploads/2025/02/image_fx_-9.webp
|
||||||
@@ -48,8 +47,15 @@ Integrating wind farms into the power grid requires a systemic approach. Sound p
|
|||||||
Professional planning not only ensures security of supply, but also reduces operating costs in the long term and enables flexible responses to grid requirements.
|
Professional planning not only ensures security of supply, but also reduces operating costs in the long term and enables flexible responses to grid requirements.
|
||||||
You can find more information here on how wind energy basically works:
|
You can find more information here on how wind energy basically works:
|
||||||
|
|
||||||
|
<VisualLinkPreview
|
||||||
|
url="
|
||||||
<VisualLinkPreview
|
<VisualLinkPreview
|
||||||
url="https://www.e-werk-mittelbaden.de/wie-funktioniert-windenergie"
|
url="https://www.e-werk-mittelbaden.de/wie-funktioniert-windenergie"
|
||||||
|
title="Wie funktioniert Windenergie? - Einfach erklärt | E-Werk Mittelbaden"
|
||||||
|
summary="Erfahren Sie, wie Windenergie funktioniert und wie sie zur nachhaltigen Energieversorgung beiträgt. Jetzt informieren!"
|
||||||
|
image="https://www.e-werk-mittelbaden.de/sites/default/files/media_image/2024-12/DJI_20231105012629_0029_D-HDR.jpg"
|
||||||
|
/>
|
||||||
|
"
|
||||||
title="Wie funktioniert Windenergie?"
|
title="Wie funktioniert Windenergie?"
|
||||||
summary="- Einfach erklärt | E-Werk MittelbadenErfahren Sie, wie Windenergie funktioniert und wie sie zur nachhaltigen Energieversorgung beiträgt. Jetzt informieren!"
|
summary="- Einfach erklärt | E-Werk MittelbadenErfahren Sie, wie Windenergie funktioniert und wie sie zur nachhaltigen Energieversorgung beiträgt. Jetzt informieren!"
|
||||||
image="https://www.e-werk-mittelbaden.de/sites/default/files/media_image/2024-12/DJI_20231105012629_0029_D-HDR.jpg"
|
image="https://www.e-werk-mittelbaden.de/sites/default/files/media_image/2024-12/DJI_20231105012629_0029_D-HDR.jpg"
|
||||||
@@ -71,7 +77,14 @@ This is not only about **ecological aspects** – a planned dismantling also mak
|
|||||||
Overall, it becomes clear: **Sustainability does not end at the grid connection.** It covers the **entire life cycle** – right up to the **last recycled cable**. Those who think about **infrastructure holistically** think it through **to the end**.
|
Overall, it becomes clear: **Sustainability does not end at the grid connection.** It covers the **entire life cycle** – right up to the **last recycled cable**. Those who think about **infrastructure holistically** think it through **to the end**.
|
||||||
In the following article, you can find out how, for example, wind turbines are recycled:
|
In the following article, you can find out how, for example, wind turbines are recycled:
|
||||||
<VisualLinkPreview
|
<VisualLinkPreview
|
||||||
url="https://www.enbw.com/unternehmen/themen/windkraft/windrad-recycling.html"
|
url="
|
||||||
|
<VisualLinkPreview
|
||||||
|
url="https://www.enbw.com/unternehmen/themen/windkraft/windrad-recycling.html"
|
||||||
|
title="Recycling von Windrädern | EnBW"
|
||||||
|
summary="Wie funktioniert das Recycling von Windrädern? Erfahren Sie mehr über Herausforderungen und die neuesten Methoden."
|
||||||
|
image="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"
|
||||||
|
/>
|
||||||
|
"
|
||||||
title="Recycling von Windrädern | EnBW"
|
title="Recycling von Windrädern | EnBW"
|
||||||
summary="Wie funktioniert das Recycling von Windrädern? Erfahren Sie mehr über Herausforderungen und die neuesten Methoden."
|
summary="Wie funktioniert das Recycling von Windrädern? Erfahren Sie mehr über Herausforderungen und die neuesten Methoden."
|
||||||
image="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"
|
image="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"
|
||||||
|
|||||||
@@ -1,8 +1,5 @@
|
|||||||
---
|
---
|
||||||
|
title: 'How the cable industry is driving sustainability and renewable energies forward'
|
||||||
title: >-
|
|
||||||
How the cable industry is driving sustainability and renewable energies
|
|
||||||
forward
|
|
||||||
date: '2025-04-14T10:00:49'
|
date: '2025-04-14T10:00:49'
|
||||||
featuredImage: /uploads/2025/02/image_fx_-2.webp
|
featuredImage: /uploads/2025/02/image_fx_-2.webp
|
||||||
locale: en
|
locale: en
|
||||||
@@ -49,7 +46,14 @@ Cables are no side note – they are the nervous system of the energy transition
|
|||||||
Anyone thinking about **renewable energy** today should also consider what keeps that energy moving: **the cable industry.** It doesn’t just deliver copper and insulation – it provides solutions that make our **green future** possible in the first place.
|
Anyone thinking about **renewable energy** today should also consider what keeps that energy moving: **the cable industry.** It doesn’t just deliver copper and insulation – it provides solutions that make our **green future** possible in the first place.
|
||||||
Find out how you can contribute to a sustainable energy supply in the following article.
|
Find out how you can contribute to a sustainable energy supply in the following article.
|
||||||
<VisualLinkPreview
|
<VisualLinkPreview
|
||||||
url="https://money-for-future.com/nachhaltige-energieversorgung-erneuerbare-energie"
|
url="
|
||||||
|
<VisualLinkPreview
|
||||||
|
url="https://money-for-future.com/nachhaltige-energieversorgung-erneuerbare-energie"
|
||||||
|
title="Nachhaltige Energieversorgung und erneuerbare Energie erklärt"
|
||||||
|
summary="Nachhaltige Energieversorgung. Was kann ich tun, um die Energiewende voranzubringen? 7 Schritte zu einer nachhaltigen Lebensweise."
|
||||||
|
image="https://money-for-future.com/wp-content/uploads/2022/01/Image-153-1.jpg"
|
||||||
|
/>
|
||||||
|
"
|
||||||
title="Nachhaltige Energieversorgung und erneuerbare Energie erklärt"
|
title="Nachhaltige Energieversorgung und erneuerbare Energie erklärt"
|
||||||
summary="Nachhaltige Energieversorgung. Was kann ich tun, um die Energiewende voranzubringen? 7 Schritte zu einer nachhaltigen Lebensweise."
|
summary="Nachhaltige Energieversorgung. Was kann ich tun, um die Energiewende voranzubringen? 7 Schritte zu einer nachhaltigen Lebensweise."
|
||||||
image="https://money-for-future.com/wp-content/uploads/2022/01/Image-153-1.jpg"
|
image="https://money-for-future.com/wp-content/uploads/2022/01/Image-153-1.jpg"
|
||||||
|
|||||||
@@ -1,9 +1,7 @@
|
|||||||
---
|
---
|
||||||
|
|
||||||
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'
|
||||||
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
|
||||||
category: Kabel Technologie
|
category: Kabel Technologie
|
||||||
---
|
---
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
---
|
---
|
||||||
|
|
||||||
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'
|
||||||
featuredImage: /uploads/2024/11/low-voltage-category.webp
|
featuredImage: /uploads/2024/11/low-voltage-category.webp
|
||||||
|
|||||||
@@ -1,9 +1,7 @@
|
|||||||
---
|
---
|
||||||
|
|
||||||
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'
|
||||||
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
|
||||||
category: Kabel Technologie
|
category: Kabel Technologie
|
||||||
---
|
---
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
---
|
---
|
||||||
|
|
||||||
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'
|
||||||
featuredImage: /uploads/2025/01/klz-directory-2-scaled.webp
|
featuredImage: /uploads/2025/01/klz-directory-2-scaled.webp
|
||||||
@@ -11,10 +10,24 @@ category: Kabel Technologie
|
|||||||
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, it’s the resource planners, developers, and decision-makers use to connect with trusted suppliers and service providers. Covering everything from turbine manufacturers to certification companies, it’s a compact treasure trove of knowledge, both in print and online.
|
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, it’s the resource planners, developers, and decision-makers use to connect with trusted suppliers and service providers. Covering everything from turbine manufacturers to certification companies, it’s a compact treasure trove of knowledge, both in print and online.
|
||||||
Now, KLZ is part of this trusted network, making it even easier for industry professionals to find us.
|
Now, KLZ is part of this trusted network, making it even easier for industry professionals to find us.
|
||||||
<VisualLinkPreview
|
<VisualLinkPreview
|
||||||
url="https://www.erneuerbareenergien.de/"
|
url="
|
||||||
|
<VisualLinkPreview
|
||||||
|
url="https://www.erneuerbareenergien.de/"
|
||||||
|
title="Erneuerbare Energien - Das Magazin für die Energiewende mit Wind-, Solar- und Bioenergie"
|
||||||
|
summary="Heft 01-2025"
|
||||||
|
image="https://www.erneuerbareenergien.de/sites/default/files/styles/teaser_standard__xs/public/aurora/2024/12/414535.jpeg?itok=WJmtgX-q"
|
||||||
|
/>
|
||||||
|
"
|
||||||
title="Erneuerbare Energien - Das Magazin für die Energiewende mit Wind-, Solar- und Bioenergie"
|
title="Erneuerbare Energien - Das Magazin für die Energiewende mit Wind-, Solar- und Bioenergie"
|
||||||
summary="Heft 01-2025"
|
summary="Heft 01-2025"
|
||||||
image="https://www.erneuerbareenergien.de/sites/default/files/styles/teaser_standard__xs/public/aurora/2024/12/414535.jpeg?itok=WJmtgX-q"
|
image="
|
||||||
|
<VisualLinkPreview
|
||||||
|
url="https://www.erneuerbareenergien.de/"
|
||||||
|
title="Erneuerbare Energien - Das Magazin für die Energiewende mit Wind-, Solar- und Bioenergie"
|
||||||
|
summary="Heft 01-2025"
|
||||||
|
image="https://www.erneuerbareenergien.de/sites/default/files/styles/teaser_standard__xs/public/aurora/2024/12/414535.jpeg?itok=WJmtgX-q"
|
||||||
|
/>
|
||||||
|
sites/default/files/styles/teaser_standard__xs/public/aurora/2024/12/414535.jpeg?itok=WJmtgX-q"
|
||||||
/>
|
/>
|
||||||
### Why we’re included
|
### Why we’re included
|
||||||
Our medium voltage cables, like the **NA2XS(F)2Y**, 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.
|
Our medium voltage cables, like the **NA2XS(F)2Y**, 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.
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
---
|
---
|
||||||
|
|
||||||
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'
|
||||||
featuredImage: /uploads/2025/08/NA2XSF2X_3x1x300_RM-25_12-20kV-3.webp
|
featuredImage: /uploads/2025/08/NA2XSF2X_3x1x300_RM-25_12-20kV-3.webp
|
||||||
@@ -42,12 +41,14 @@ Especially in direct burial, moisture is a constant risk. The integrated longitu
|
|||||||
|
|
||||||
That’s why the **NA2XSF2Y 3x1x** is the safe choice for long-lasting underground energy infrastructure.
|
That’s why the **NA2XSF2Y 3x1x** is the safe choice for long-lasting underground energy infrastructure.
|
||||||
More info on overhead lines vs. underground cables can be found here:
|
More info on overhead lines vs. underground cables can be found here:
|
||||||
|
|
||||||
<VisualLinkPreview
|
<VisualLinkPreview
|
||||||
url="https://www.hochspannungsblog.at/wissenswertes/netzaufbau/vergleich-freileitung-erdkabel"
|
url="https://www.hochspannungsblog.at/wissenswertes/netzaufbau/vergleich-freileitung-erdkabel"
|
||||||
title="Freileitung und Erdkabel sind „Stand der Technik“"
|
title="Freileitung und Erdkabel sind „Stand der Technik“"
|
||||||
summary="Freileitung oder Erdkabel? Wir erklären Ihnen die Unterschiede und Möglichkeiten, aber auch warum was möglich ist und warum was nicht."
|
summary="Freileitung oder Erdkabel? Wir erklären Ihnen die Unterschiede und Möglichkeiten, aber auch warum was möglich ist und warum was nicht."
|
||||||
image="https://www.hochspannungsblog.at/201210-netzbau-110kv-wegscheid-mast-kabelanschluss-1723.jpg?ch=dhsowxyq&:hp=9;1;de"
|
image="https://www.hochspannungsblog.at/201210-netzbau-110kv-wegscheid-mast-kabelanschluss-1723.jpg?ch=dhsowxyq&:hp=9;1;de"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
## Typical applications for the NA2XSF2Y
|
## Typical applications for the NA2XSF2Y
|
||||||
### Grid connection in wind power plants
|
### Grid connection in wind power plants
|
||||||
In onshore wind farms, the three-core medium-voltage cable **[NA2XSF2Y](/products/power-cables/medium-voltage-cables/na2xsf2y/) 3x1x** plays a crucial role: it connects wind turbines to transformer stations or directly to the [medium-voltage grid](https://www.stromerzeuger-lexikon.de/mittelspannungsnetz/). Its robust design and longitudinal water tightness make it ideal for:
|
In onshore wind farms, the three-core medium-voltage cable **[NA2XSF2Y](/products/power-cables/medium-voltage-cables/na2xsf2y/) 3x1x** plays a crucial role: it connects wind turbines to transformer stations or directly to the [medium-voltage grid](https://www.stromerzeuger-lexikon.de/mittelspannungsnetz/). Its robust design and longitudinal water tightness make it ideal for:
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
---
|
---
|
||||||
|
|
||||||
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'
|
||||||
featuredImage: /uploads/2025/02/5.webp
|
featuredImage: /uploads/2025/02/5.webp
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
---
|
---
|
||||||
|
|
||||||
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'
|
||||||
featuredImage: /uploads/2025/04/inter-solar.webp
|
featuredImage: /uploads/2025/04/inter-solar.webp
|
||||||
@@ -9,7 +8,14 @@ category: Kabel Technologie
|
|||||||
# Securing the future with H1Z2Z2-K: Our solar cable for Intersolar 2025
|
# Securing the future with H1Z2Z2-K: Our solar cable for Intersolar 2025
|
||||||
Around [Intersolar Europe](https://www.intersolar.de/start), 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.
|
Around [Intersolar Europe](https://www.intersolar.de/start), 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.
|
||||||
<VisualLinkPreview
|
<VisualLinkPreview
|
||||||
url="https://youtu.be/YbtdyvQFoVM"
|
url="
|
||||||
|
<VisualLinkPreview
|
||||||
|
url="https://youtu.be/YbtdyvQFoVM"
|
||||||
|
title="Intersolar Europe 2025 | Save The Date | May 7–9, 2025"
|
||||||
|
summary="As the world’s leading exhibition for the solar industry, Intersolar Europe demonstrates the enormous vitality of the solar market. For more than 30 years, i…"
|
||||||
|
image="https://i.ytimg.com/vi/YbtdyvQFoVM/maxresdefault.jpg?sqp=-oaymwEmCIAKENAF8quKqQMa8AEB-AH-CYAC0AWKAgwIABABGEQgSyhyMA8=&rs=AOn4CLBx90qdBxgYcyMttgdOGs3-m0udZQ"
|
||||||
|
/>
|
||||||
|
"
|
||||||
title="Intersolar Europe 2025 | Save The Date | May 7–9, 2025"
|
title="Intersolar Europe 2025 | Save The Date | May 7–9, 2025"
|
||||||
summary="As the world’s leading exhibition for the solar industry, Intersolar Europe demonstrates the enormous vitality of the solar market. For more than 30 years, i…"
|
summary="As the world’s leading exhibition for the solar industry, Intersolar Europe demonstrates the enormous vitality of the solar market. For more than 30 years, i…"
|
||||||
image="https://i.ytimg.com/vi/YbtdyvQFoVM/maxresdefault.jpg?sqp=-oaymwEmCIAKENAF8quKqQMa8AEB-AH-CYAC0AWKAgwIABABGEQgSyhyMA8=&rs=AOn4CLBx90qdBxgYcyMttgdOGs3-m0udZQ"
|
image="https://i.ytimg.com/vi/YbtdyvQFoVM/maxresdefault.jpg?sqp=-oaymwEmCIAKENAF8quKqQMa8AEB-AH-CYAC0AWKAgwIABABGEQgSyhyMA8=&rs=AOn4CLBx90qdBxgYcyMttgdOGs3-m0udZQ"
|
||||||
@@ -135,7 +141,14 @@ What really stands out is its versatility: whether on rooftops, in underground i
|
|||||||
Further information, technical details, and ordering options can be found on the product page: 👉 [To the H1Z2Z2-K at KLZ](/products/solar-cables/h1z2z2-k/)
|
Further information, technical details, and ordering options can be found on the product page: 👉 [To the H1Z2Z2-K at KLZ](/products/solar-cables/h1z2z2-k/)
|
||||||
All the key details about Intersolar Europe can be found here:
|
All the key details about Intersolar Europe can be found here:
|
||||||
<VisualLinkPreview
|
<VisualLinkPreview
|
||||||
url="https://www.intersolar.de/messe-kompakt?ref=m5f53a666f3a2cb2fee160554-s65eec4739108db093b003a02-t1746004197-cf3c592e7"
|
url="
|
||||||
|
<VisualLinkPreview
|
||||||
|
url="https://www.intersolar.de/messe-kompakt?ref=m5f53a666f3a2cb2fee160554-s65eec4739108db093b003a02-t1746004197-cf3c592e7"
|
||||||
|
title="Intersolar Europe at a Glance"
|
||||||
|
summary="Intersolar Europe | Exhibition Quick Facts | Date, Venue, Opening Hours, Exhibitors"
|
||||||
|
image="https://www.intersolar.de/media/image/6311c9ee98bbc414b66305e2/750"
|
||||||
|
/>
|
||||||
|
"
|
||||||
title="Intersolar Europe at a Glance"
|
title="Intersolar Europe at a Glance"
|
||||||
summary="Intersolar Europe | Exhibition Quick Facts | Date, Venue, Opening Hours, Exhibitors"
|
summary="Intersolar Europe | Exhibition Quick Facts | Date, Venue, Opening Hours, Exhibitors"
|
||||||
image="https://www.intersolar.de/media/image/6311c9ee98bbc414b66305e2/750"
|
image="https://www.intersolar.de/media/image/6311c9ee98bbc414b66305e2/750"
|
||||||
|
|||||||
@@ -1,9 +1,7 @@
|
|||||||
---
|
---
|
||||||
|
|
||||||
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'
|
||||||
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
|
||||||
category: Kabel Technologie
|
category: Kabel Technologie
|
||||||
---
|
---
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
---
|
---
|
||||||
|
|
||||||
title: The best underground cables for wind power and solar – order from us now
|
title: The best underground cables for wind power and solar – order from us now
|
||||||
date: '2025-05-26T10:18:16'
|
date: '2025-05-26T10:18:16'
|
||||||
featuredImage: /uploads/2025/04/image_fx_-2025-02-20T191245.537.webp
|
featuredImage: /uploads/2025/04/image_fx_-2025-02-20T191245.537.webp
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
---
|
---
|
||||||
|
|
||||||
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'
|
||||||
featuredImage: /uploads/2025/02/1.webp
|
featuredImage: /uploads/2025/02/1.webp
|
||||||
|
|||||||
@@ -1,9 +1,7 @@
|
|||||||
---
|
---
|
||||||
|
|
||||||
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'
|
||||||
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
|
||||||
category: Kabel Technologie
|
category: Kabel Technologie
|
||||||
---
|
---
|
||||||
|
|||||||
@@ -1,12 +1,15 @@
|
|||||||
---
|
---
|
||||||
|
|
||||||
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'
|
||||||
featuredImage: /uploads/2024/12/mockup_03-copy-scaled.webp
|
featuredImage: /uploads/2024/12/mockup_03-copy-scaled.webp
|
||||||
locale: en
|
locale: en
|
||||||
category: Kabel Technologie
|
category: Kabel Technologie
|
||||||
---
|
---
|
||||||
# Welcome to the future of KLZ: our new website is live!
|
|
||||||
|
<HighlightBox title="The day has arrived—our brand-new KLZ website is officially live! 🎉" color="primary">
|
||||||
|
It’s faster, smarter, and packed with features to make your experience seamless and efficient. Designed to meet the needs of our customers and reflect the future of our industry, this isn’t just a new look—it’s a whole new level of service. Let’s walk you through the highlights.
|
||||||
|
</HighlightBox>
|
||||||
|
|
||||||
### The new KLZ logo: modern, bold, and future-focused
|
### The new KLZ logo: modern, bold, and future-focused
|
||||||
One of the most striking changes in our rebranding is the updated KLZ logo, which perfectly captures the spirit of innovation and progress that drives our work. Let’s break it down:
|
One of the most striking changes in our rebranding is the updated KLZ logo, which perfectly captures the spirit of innovation and progress that drives our work. Let’s break it down:
|
||||||
- **Streamlined Typography**: The new logo features a sleek and modern font that’s clean, bold, and easy to recognize, representing our straightforward and reliable approach to business.
|
- **Streamlined Typography**: The new logo features a sleek and modern font that’s clean, bold, and easy to recognize, representing our straightforward and reliable approach to business.
|
||||||
@@ -16,6 +19,9 @@ One of the most striking changes in our rebranding is the updated KLZ logo, whic
|
|||||||
And there’s one key visual change you’ve likely noticed: **“**KLZ (Vertriebs GmbH)” is now simply “KLZ Cables” in our branding. This concise, contemporary presentation makes it clear who we are and what we do at a glance.
|
And there’s one key visual change you’ve likely noticed: **“**KLZ (Vertriebs GmbH)” is now simply “KLZ Cables” in our branding. This concise, contemporary presentation makes it clear who we are and what we do at a glance.
|
||||||
Of course, while the visual branding now proudly states “KLZ Cables,” our legal name, **KLZ Vertriebs GmbH**, remains unchanged. This update is all about making it easier for customers and partners to connect with our mission and services instantly.
|
Of course, while the visual branding now proudly states “KLZ Cables,” our legal name, **KLZ Vertriebs GmbH**, remains unchanged. This update is all about making it easier for customers and partners to connect with our mission and services instantly.
|
||||||
This new logo and branding aren’t just aesthetic changes—they represent a stronger, clearer KLZ as we step into 2025 and beyond. It’s a design that bridges where we’ve come from with where we’re going: a future powered by innovation, reliability, and sustainability.
|
This new logo and branding aren’t just aesthetic changes—they represent a stronger, clearer KLZ as we step into 2025 and beyond. It’s a design that bridges where we’ve come from with where we’re going: a future powered by innovation, reliability, and sustainability.
|
||||||
|
|
||||||
|
<AnimatedImage src="/uploads/2024/11/white_logo_transparent_background.svg" alt="New KLZ Logo" width={541} height={540} className="max-w-xs mx-auto bg-primary p-8" />
|
||||||
|
|
||||||
### A fresh, modern design for a forward-thinking industry
|
### A fresh, modern design for a forward-thinking industry
|
||||||
Our new website is a reflection of KLZ’s mission: connecting people and power through innovative, sustainable solutions.
|
Our new website is a reflection of KLZ’s mission: connecting people and power through innovative, sustainable solutions.
|
||||||
- **Bold **and** clean visuals** make navigation effortless, whether you’re exploring our catalog or learning about our services.
|
- **Bold **and** clean visuals** make navigation effortless, whether you’re exploring our catalog or learning about our services.
|
||||||
@@ -23,6 +29,7 @@ Our new website is a reflection of KLZ’s mission: connecting people and power
|
|||||||
- The refreshed branding, including our sleek new logo, represents our evolution as a leader in energy solutions.
|
- The refreshed branding, including our sleek new logo, represents our evolution as a leader in energy solutions.
|
||||||
|
|
||||||
Every element has been designed with you in mind, making it easier than ever to find what you’re looking for.
|
Every element has been designed with you in mind, making it easier than ever to find what you’re looking for.
|
||||||
|
|
||||||
### Explore our comprehensive cable catalog
|
### Explore our comprehensive cable catalog
|
||||||
Our all-new **Cable Catalog** is the centerpiece of the site, offering detailed insights into every cable we provide:
|
Our all-new **Cable Catalog** is the centerpiece of the site, offering detailed insights into every cable we provide:
|
||||||
- **NA2XS(F)2Y**, perfect for high-voltage applications.
|
- **NA2XS(F)2Y**, perfect for high-voltage applications.
|
||||||
@@ -30,23 +37,37 @@ Our all-new **Cable Catalog** is the centerpiece of the site, offering detailed
|
|||||||
- A wide range of other cables tailored for wind and solar energy projects.
|
- A wide range of other cables tailored for wind and solar energy projects.
|
||||||
|
|
||||||
Each product features clear specifications, applications, and benefits, helping you make informed decisions quickly.
|
Each product features clear specifications, applications, and benefits, helping you make informed decisions quickly.
|
||||||
|
|
||||||
|
<AnimatedImage src="/uploads/2024/12/NA2XSY-scaled.webp" alt="Cable Catalog Preview" width={2560} height={533} />
|
||||||
|
|
||||||
### The team behind the transformation
|
### The team behind the transformation
|
||||||
Bringing a new website to life is no small feat—it takes vision, dedication, and a team that knows how to deliver. At KLZ, this redesign was more than a project; it was a collaborative effort to ensure our digital presence reflects the reliability, innovation, and expertise that define us.
|
Bringing a new website to life is no small feat—it takes vision, dedication, and a team that knows how to deliver. At KLZ, this redesign was more than a project; it was a collaborative effort to ensure our digital presence reflects the reliability, innovation, and expertise that define us.
|
||||||
Special recognition goes to **Michael** and **Klaus**, who spearheaded this initiative with their forward-thinking approach. They understood the importance of not just improving functionality but also creating an experience that truly connects with our customers and partners. Their hands-on involvement ensured every detail aligned with KLZ’s values and mission.
|
Special recognition goes to **Michael** and **Klaus**, who spearheaded this initiative with their forward-thinking approach. They understood the importance of not just improving functionality but also creating an experience that truly connects with our customers and partners. Their hands-on involvement ensured every detail aligned with KLZ’s values and mission.
|
||||||
Of course, transforming vision into reality required a creative expert, and that’s where **Marc Mintel **from** Cable Creations** played a key role. From the sleek design to the high-quality renders that bring our products and services to life, Marc’s skill and attention to detail shine through every page.
|
Of course, transforming vision into reality required a creative expert, and that’s where **Marc Mintel **from** Cable Creations** played a key role. From the sleek design to the high-quality renders that bring our products and services to life, Marc’s skill and attention to detail shine through every page.
|
||||||
This collaboration between our internal team and external partners is a testament to what we value most: partnerships, precision, and the pursuit of excellence. Together, we’ve created a platform that serves not only as a resource but also as a reflection of KLZ’s growth and ambition.
|
This collaboration between our internal team and external partners is a testament to what we value most: partnerships, precision, and the pursuit of excellence. Together, we’ve created a platform that serves not only as a resource but also as a reflection of KLZ’s growth and ambition.
|
||||||
As we continue to grow and evolve, this new website is just one example of how our team consistently rises to meet challenges with energy and expertise—much like the networks we help power.
|
As we continue to grow and evolve, this new website is just one example of how our team consistently rises to meet challenges with energy and expertise—much like the networks we help power.
|
||||||
### Why this matters to you
|
|
||||||
|
<AnimatedImage src="/uploads/2024/12/DSC08057-Large.webp" alt="KLZ Team" width={1280} height={853} />
|
||||||
|
|
||||||
|
<ChatBubble author="KLZ Assistant" role="Why this matters to you" align="right">
|
||||||
This new website isn’t just about aesthetics—it’s about delivering real value to our customers and partners. Here’s how it benefits you:
|
This new website isn’t just about aesthetics—it’s about delivering real value to our customers and partners. Here’s how it benefits you:
|
||||||
|
|
||||||
- **Faster Access to Information**: With our improved design and PageSpeed scores of 90+, finding the right products, services, or insights has never been quicker or easier. Time is money, and we’re here to save you both.
|
- **Faster Access to Information**: With our improved design and PageSpeed scores of 90+, finding the right products, services, or insights has never been quicker or easier. Time is money, and we’re here to save you both.
|
||||||
- **Enhanced Usability**: Whether you’re exploring on a desktop or mobile device, the intuitive layout ensures a smooth and seamless experience. You’ll spend less time searching and more time doing.
|
- **Enhanced Usability**: Whether you’re exploring on a desktop or mobile device, the intuitive layout ensures a smooth and seamless experience. You’ll spend less time searching and more time doing.
|
||||||
- **A Comprehensive Resource**: From our fully featured Cable Catalog to detailed service descriptions, everything you need to make informed decisions is right at your fingertips.
|
- **A Comprehensive Resource**: From our fully featured Cable Catalog to detailed service descriptions, everything you need to make informed decisions is right at your fingertips.
|
||||||
|
|
||||||
But it’s more than just technical improvements. This new platform reflects KLZ’s** clear vision **for the future, one that prioritizes sustainability, reliability, and innovation. For our customers, this means working with a company that understands where the industry is headed—and is ready to lead the way.
|
But it’s more than just technical improvements. This new platform reflects KLZ’s** clear vision **for the future, one that prioritizes sustainability, reliability, and innovation. For our customers, this means working with a company that understands where the industry is headed—and is ready to lead the way.
|
||||||
|
|
||||||
By aligning our digital presence with our mission, we’re not just improving your experience with KLZ; we’re reinforcing our commitment to being a partner you can trust for years to come. When we invest in clarity and efficiency, you benefit from a smoother, stronger connection to the products and services you rely on.
|
By aligning our digital presence with our mission, we’re not just improving your experience with KLZ; we’re reinforcing our commitment to being a partner you can trust for years to come. When we invest in clarity and efficiency, you benefit from a smoother, stronger connection to the products and services you rely on.
|
||||||
|
|
||||||
This website isn’t just an upgrade—it’s a promise to deliver more of what matters most to you: quality, reliability, and vision.
|
This website isn’t just an upgrade—it’s a promise to deliver more of what matters most to you: quality, reliability, and vision.
|
||||||
|
</ChatBubble>
|
||||||
|
|
||||||
|
<PowerCTA locale="en" />
|
||||||
|
|
||||||
### Start Exploring Today
|
### Start Exploring Today
|
||||||
You’re already here, so take some time to explore. Browse the catalog, read about our journey, or learn how our services can support your next big project.
|
You’re already here, so take some time to explore. Browse the catalog, read about our journey, or learn how our services can support your next big project.
|
||||||
2025 is set to be an exciting year, and this new website is just the beginning. Join us as we continue to innovate and power a brighter, greener future.
|
2025 is set to be an exciting year, and this new website is just the beginning. Join us as we continue to innovate and power a brighter, greener future.
|
||||||
|
|
||||||
### What’s Next? German Language Support!
|
### What’s Next? German Language Support!
|
||||||
We’re committed to making the KLZ experience accessible to everyone. **German language support** is coming soon, so our German-speaking customers and partners can enjoy the site in their preferred language. Stay tuned—it’s on the way!
|
We’re committed to making the KLZ experience accessible to everyone. **German language support** is coming soon, so our German-speaking customers and partners can enjoy the site in their preferred language. Stay tuned—it’s on the way!
|
||||||
|
|||||||
@@ -1,9 +1,7 @@
|
|||||||
---
|
---
|
||||||
|
|
||||||
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'
|
||||||
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
|
||||||
category: Kabel Technologie
|
category: Kabel Technologie
|
||||||
---
|
---
|
||||||
@@ -45,7 +43,14 @@ Choosing the right cable is a long-term investment that pays off in safety, cost
|
|||||||
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.
|
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.
|
||||||
The right choice of cable is therefore not just a technical decision – 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 – it is a key to a more stable, greener and more efficient energy supply.
|
The right choice of cable is therefore not just a technical decision – 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 – it is a key to a more stable, greener and more efficient energy supply.
|
||||||
<VisualLinkPreview
|
<VisualLinkPreview
|
||||||
url="https://www.konnworld.com/why-cable-quality-matters-the-impact-on-energy-efficiency-and-longevity"
|
url="
|
||||||
|
<VisualLinkPreview
|
||||||
|
url="https://www.konnworld.com/why-cable-quality-matters-the-impact-on-energy-efficiency-and-longevity"
|
||||||
|
title="Why Cable Quality Matters: The Impact on Energy Efficiency and Longevity"
|
||||||
|
summary="In the electrical systems that we have today, there’s no denying that cable quality is important in ensuring optimal performance and safety."
|
||||||
|
image="https://www.konnworld.com/wp-content/uploads/2018/08/konn-b-logo.png"
|
||||||
|
/>
|
||||||
|
"
|
||||||
title="Why Cable Quality Matters: The Impact on Energy Efficiency and Longevity"
|
title="Why Cable Quality Matters: The Impact on Energy Efficiency and Longevity"
|
||||||
summary="In the electrical systems that we have today, there’s no denying that cable quality is important in ensuring optimal performance and safety."
|
summary="In the electrical systems that we have today, there’s no denying that cable quality is important in ensuring optimal performance and safety."
|
||||||
image="https://www.konnworld.com/wp-content/uploads/2018/08/konn-b-logo.png"
|
image="https://www.konnworld.com/wp-content/uploads/2018/08/konn-b-logo.png"
|
||||||
@@ -63,7 +68,14 @@ The demand for environmentally friendly materials is growing as more and more co
|
|||||||
- 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’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.
|
- 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’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.
|
||||||
|
|
||||||
<VisualLinkPreview
|
<VisualLinkPreview
|
||||||
url="https://insights.regencysupply.com/pros-and-cons-of-copper-and-aluminum-wire"
|
url="
|
||||||
|
<VisualLinkPreview
|
||||||
|
url="https://insights.regencysupply.com/pros-and-cons-of-copper-and-aluminum-wire"
|
||||||
|
title="Pros and Cons of Copper and Aluminum Wire"
|
||||||
|
summary="Copper wire and aluminum wire — which option is better? We weight the pros and cons."
|
||||||
|
image="https://insights.regencysupply.com/hubfs/copper%20wire.jpg"
|
||||||
|
/>
|
||||||
|
"
|
||||||
title="Pros and Cons of Copper and Aluminum Wire"
|
title="Pros and Cons of Copper and Aluminum Wire"
|
||||||
summary="Copper wire and aluminum wire — which option is better? We weight the pros and cons."
|
summary="Copper wire and aluminum wire — which option is better? We weight the pros and cons."
|
||||||
image="https://insights.regencysupply.com/hubfs/copper%20wire.jpg"
|
image="https://insights.regencysupply.com/hubfs/copper%20wire.jpg"
|
||||||
@@ -75,7 +87,14 @@ The insulation of a cable protects against short circuits and external influence
|
|||||||
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.
|
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.
|
||||||
Overall, these technologies help maximize the efficiency and safety of cables and support a sustainable energy future.
|
Overall, these technologies help maximize the efficiency and safety of cables and support a sustainable energy future.
|
||||||
<VisualLinkPreview
|
<VisualLinkPreview
|
||||||
url="https://www.cables-unlimited.com/renewable-energy-cable-assemblies-weve-got-you-covered/"
|
url="
|
||||||
|
<VisualLinkPreview
|
||||||
|
url="https://www.cables-unlimited.com/renewable-energy-cable-assemblies-weve-got-you-covered/"
|
||||||
|
title="Renewable Energy Cable Assemblies — We’ve Got You Covered - Cables Unlimited Inc."
|
||||||
|
summary="Cable assemblies used in renewable energy installations, what they are, their benefits and cable systems for renewable energy design factors."
|
||||||
|
image="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"
|
||||||
|
/>
|
||||||
|
"
|
||||||
title="Renewable Energy Cable Assemblies — We’ve Got You Covered - Cables Unlimited Inc."
|
title="Renewable Energy Cable Assemblies — We’ve Got You Covered - Cables Unlimited Inc."
|
||||||
summary="Cable assemblies used in renewable energy installations, what they are, their benefits and cable systems for renewable energy design factors."
|
summary="Cable assemblies used in renewable energy installations, what they are, their benefits and cable systems for renewable energy design factors."
|
||||||
image="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"
|
image="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"
|
||||||
@@ -111,7 +130,14 @@ In a world that is increasingly focusing on sustainability, sustainability certi
|
|||||||
|
|
||||||
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.
|
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.
|
||||||
<VisualLinkPreview
|
<VisualLinkPreview
|
||||||
url="https://www.flukenetworks.com/blog/cabling-chronicles/cabling-certification"
|
url="
|
||||||
|
<VisualLinkPreview
|
||||||
|
url="https://www.flukenetworks.com/blog/cabling-chronicles/cabling-certification"
|
||||||
|
title="Three Reasons Cabling Certification Is More Important Than Ever"
|
||||||
|
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 they’re connected properly, but is it necessary to measure and document the performance of every link?"
|
||||||
|
image="https://www.flukenetworks.com/sites/default/files/blog/fn-dsx-8000_14a_w.jpg"
|
||||||
|
/>
|
||||||
|
"
|
||||||
title="Three Reasons Cabling Certification Is More Important Than Ever"
|
title="Three Reasons Cabling Certification Is More Important Than Ever"
|
||||||
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 they’re connected properly, but is it necessary to measure and document the performance of every 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 they’re connected properly, but is it necessary to measure and document the performance of every link?"
|
||||||
image="https://www.flukenetworks.com/sites/default/files/blog/fn-dsx-8000_14a_w.jpg"
|
image="https://www.flukenetworks.com/sites/default/files/blog/fn-dsx-8000_14a_w.jpg"
|
||||||
@@ -122,7 +148,14 @@ A good cable is designed to work efficiently over the long term. Materials such
|
|||||||
**Sustainability**<br />
|
**Sustainability**<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.
|
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.
|
||||||
<VisualLinkPreview
|
<VisualLinkPreview
|
||||||
url="https://sustainablebrands.com/read/evolving-infrastructure-wire-cable-prioritize-sustainability"
|
url="
|
||||||
|
<VisualLinkPreview
|
||||||
|
url="https://sustainablebrands.com/read/evolving-infrastructure-wire-cable-prioritize-sustainability"
|
||||||
|
title="Evolving Our Infrastructure Means the Wire and Cable Industry Must Prioritize Sustainability | Sustainable Brands"
|
||||||
|
summary="To sustainably support the tremendous global demand for connectivity, collaboration is needed across the value chain to create solutions that enable more inf…"
|
||||||
|
image="https://sb-web-assets.s3.amazonaws.com/production/46426/conversions/keyart-fbimg.jpg"
|
||||||
|
/>
|
||||||
|
"
|
||||||
title="Evolving Our Infrastructure Means the Wire and Cable Industry Must Prioritize Sustainability | Sustainable Brands"
|
title="Evolving Our Infrastructure Means the Wire and Cable Industry Must Prioritize Sustainability | Sustainable Brands"
|
||||||
summary="To sustainably support the tremendous global demand for connectivity, collaboration is needed across the value chain to create solutions that enable more inf…"
|
summary="To sustainably support the tremendous global demand for connectivity, collaboration is needed across the value chain to create solutions that enable more inf…"
|
||||||
image="https://sb-web-assets.s3.amazonaws.com/production/46426/conversions/keyart-fbimg.jpg"
|
image="https://sb-web-assets.s3.amazonaws.com/production/46426/conversions/keyart-fbimg.jpg"
|
||||||
|
|||||||
@@ -1,8 +1,5 @@
|
|||||||
---
|
---
|
||||||
|
title: 'Which cables for wind power? Differences from low to extra-high voltage explained'
|
||||||
title: >-
|
|
||||||
Which cables for wind power? Differences from low to extra-high voltage
|
|
||||||
explained
|
|
||||||
date: '2025-06-10T10:35:53'
|
date: '2025-06-10T10:35:53'
|
||||||
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
|
||||||
@@ -12,12 +9,14 @@ category: Kabel Technologie
|
|||||||
## Cables: The Nervous System of the Energy Transition
|
## Cables: The Nervous System of the Energy Transition
|
||||||
No cables, no power. And without the right cable type, no functioning wind farm either. In modern **onshore wind energy projects**, 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.
|
No cables, no power. And without the right cable type, no functioning wind farm either. In modern **onshore wind energy projects**, 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.
|
||||||
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.
|
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.
|
||||||
|
|
||||||
<VisualLinkPreview
|
<VisualLinkPreview
|
||||||
url="https://www.klimareporter.de/strom/stromnetze-fuer-die-energiewende"
|
url="https://www.klimareporter.de/strom/stromnetze-fuer-die-energiewende"
|
||||||
title="Stromnetze für die Energiewende"
|
title="Stromnetze für die Energiewende"
|
||||||
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"
|
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"
|
||||||
image="https://www.klimareporter.de/images/karo3imgmanager/resized/standard-1/power-line-at-sunset-1100-733-80-ccb.webp"
|
image="https://www.klimareporter.de/images/karo3imgmanager/resized/standard-1/power-line-at-sunset-1100-733-80-ccb.webp"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
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.
|
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.
|
||||||
## Low Voltage Cables – Simple, Affordable, Indispensable
|
## Low Voltage Cables – Simple, Affordable, Indispensable
|
||||||
Low voltage is the entry point of any electrical infrastructure. Cables in this category are designed for **voltages up to 1,000 volts (1 kV)** and are found in nearly all standard installations – from residential buildings to transformer stations. They also play an important role in wind farms, such as supplying auxiliary units or controlling technical systems.
|
Low voltage is the entry point of any electrical infrastructure. Cables in this category are designed for **voltages up to 1,000 volts (1 kV)** and are found in nearly all standard installations – from residential buildings to transformer stations. They also play an important role in wind farms, such as supplying auxiliary units or controlling technical systems.
|
||||||
@@ -157,12 +156,14 @@ Extra-high voltage cables are a technical masterpiece. When used correctly, they
|
|||||||
</table>
|
</table>
|
||||||
The table shows: the higher the voltage, the more specialized the cable. At the same time, the demands on planning, installation, and monitoring increase.
|
The table shows: the higher the voltage, the more specialized the cable. At the same time, the demands on planning, installation, and monitoring increase.
|
||||||
You can read in this article how our energy can be distributed smartly and sustainably.
|
You can read in this article how our energy can be distributed smartly and sustainably.
|
||||||
|
|
||||||
<VisualLinkPreview
|
<VisualLinkPreview
|
||||||
url="https://www.enercity.de/magazin/unsere-welt/bedeutung-von-smart-grids-fuer-die-energiewende"
|
url="https://www.enercity.de/magazin/unsere-welt/bedeutung-von-smart-grids-fuer-die-energiewende"
|
||||||
title="Stromversorgung: Wie das Smart Grid die Energiewende ermöglicht"
|
title="Stromversorgung: Wie das Smart Grid die Energiewende ermöglicht"
|
||||||
summary="Abertausende Klein- und Kleinstkraftwerke, eine sicherzustellende Versorgung, hoher Bedarf: Das Stromnetz der Zukunft muss intelligent sein."
|
summary="Abertausende Klein- und Kleinstkraftwerke, eine sicherzustellende Versorgung, hoher Bedarf: Das Stromnetz der Zukunft muss intelligent sein."
|
||||||
image="https://www.enercity.de/assets/cms/enercity-de/magazin/bedeutung-von-smart-grids-fuer-die-energiewende/306_460751759_1944x822_header.jpg"
|
image="https://www.enercity.de/assets/cms/enercity-de/magazin/bedeutung-von-smart-grids-fuer-die-energiewende/306_460751759_1944x822_header.jpg"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
## Conclusion – electricity is only as strong as its cable
|
## Conclusion – electricity is only as strong as its cable
|
||||||
In a modern wind farm, it is not only the turbine that determines efficiency and reliability – 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.
|
In a modern wind farm, it is not only the turbine that determines efficiency and reliability – 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.
|
||||||
Whether it’s the **NAYY** **underground cable**, a **medium-voltage cable** for wind power or a fully equipped wind farm **smart grid cable** – the right solution starts with know-how. And that is exactly what we are here for.
|
Whether it’s the **NAYY** **underground cable**, a **medium-voltage cable** for wind power or a fully equipped wind farm **smart grid cable** – the right solution starts with know-how. And that is exactly what we are here for.
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
---
|
---
|
||||||
|
|
||||||
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'
|
||||||
featuredImage: /uploads/2025/04/image_fx_-2025-02-22T132138.470.webp
|
featuredImage: /uploads/2025/04/image_fx_-2025-02-22T132138.470.webp
|
||||||
@@ -54,12 +53,14 @@ The [**NA2XS(F)2Y**](/de/produkte/stromkabel/mittelspannungskabel/na2xsf2y-2/) m
|
|||||||
</table>
|
</table>
|
||||||
In other words: with the [NA2XS(F)2Y](/de/produkte/stromkabel/mittelspannungskabel/na2xsf2y-2/), you can build networks that not only work on paper but also perform reliably in practice – long-term, low-maintenance, and safe.
|
In other words: with the [NA2XS(F)2Y](/de/produkte/stromkabel/mittelspannungskabel/na2xsf2y-2/), you can build networks that not only work on paper but also perform reliably in practice – long-term, low-maintenance, and safe.
|
||||||
Learn more about why grid expansion is so important here:
|
Learn more about why grid expansion is so important here:
|
||||||
|
|
||||||
<VisualLinkPreview
|
<VisualLinkPreview
|
||||||
url="https://www.netze-bw.de/unsernetz/netzausbau"
|
url="https://www.netze-bw.de/unsernetz/netzausbau"
|
||||||
title="Netzausbau - Netze BW GmbH"
|
title="Netzausbau - Netze BW GmbH"
|
||||||
summary="Die Netze BW ist daran interessiert und dazu verpflichtet, ihr Netz im Sinne einer effizienten und sicheren Stromversorgung stetig zu optimieren."
|
summary="Die Netze BW ist daran interessiert und dazu verpflichtet, ihr Netz im Sinne einer effizienten und sicheren Stromversorgung stetig zu optimieren."
|
||||||
image="https://www.netze-bw.de/logo-seo.png"
|
image="https://www.netze-bw.de/logo-seo.png"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
### Technology you can rely on
|
### Technology you can rely on
|
||||||
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.
|
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.
|
||||||
The [**NA2XS(F)2Y**](/de/produkte/stromkabel/mittelspannungskabel/na2xsf2y-2/) was developed precisely for such situations. Its design and choice of materials are aimed at maximum electrical safety, long service life, and seamless integration into modern energy projects.
|
The [**NA2XS(F)2Y**](/de/produkte/stromkabel/mittelspannungskabel/na2xsf2y-2/) was developed precisely for such situations. Its design and choice of materials are aimed at maximum electrical safety, long service life, and seamless integration into modern energy projects.
|
||||||
@@ -149,12 +150,14 @@ The NA2XS(F)2Y is certified according to [**IEC 60502-2**](https://www.dke.de/de
|
|||||||
Anyone who **buys a medium-voltage cable** from KLZ receives not just a product – but a solution that is **technically sound, compliant with standards, and ready to use**.
|
Anyone who **buys a medium-voltage cable** from KLZ receives not just a product – but a solution that is **technically sound, compliant with standards, and ready to use**.
|
||||||
Especially in energy projects that need to be completed under time pressure or during ongoing operations, the NA2XS(F)2Y makes the decisive difference: **no discussions, no rework, no compromises**.
|
Especially in energy projects that need to be completed under time pressure or during ongoing operations, the NA2XS(F)2Y makes the decisive difference: **no discussions, no rework, no compromises**.
|
||||||
Want to learn more about underground installation and buried cables? This article offers valuable insights into cable protection during underground installation.
|
Want to learn more about underground installation and buried cables? This article offers valuable insights into cable protection during underground installation.
|
||||||
|
|
||||||
<VisualLinkPreview
|
<VisualLinkPreview
|
||||||
url="https://www.richterbaustoffe.de/article/kabelschutz-bei-erdverlegung"
|
url="https://www.richterbaustoffe.de/article/kabelschutz-bei-erdverlegung"
|
||||||
title="Kabelschutz bei Erdverlegung"
|
title="Kabelschutz bei Erdverlegung"
|
||||||
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…"
|
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…"
|
||||||
image="https://images.ctfassets.net/74nz86copyef/1CDlYm1yT02sRPwG1piRUo/dc25523b67f1efc4fae65cc978f900db/hagebau_Ostendorf_Kabelschutz_Headerbild.webp"
|
image="https://images.ctfassets.net/74nz86copyef/1CDlYm1yT02sRPwG1piRUo/dc25523b67f1efc4fae65cc978f900db/hagebau_Ostendorf_Kabelschutz_Headerbild.webp"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
### Conclusion:
|
### Conclusion:
|
||||||
If you need a medium-voltage cable that performs reliably – even under real operating conditions – the NA2XS(F)2Y is the right choice.
|
If you need a medium-voltage cable that performs reliably – even under real operating conditions – the NA2XS(F)2Y is the right choice.
|
||||||
Whether for industrial applications, wind farm grid connections, or urban power distribution – those looking for a [medium-voltage cable](http://bauer-generator.de/glossar/mittelspannung/) that **delivers technical performance, operational reliability, and effortless integration** will find exactly that in the NA2XS(F)2Y.
|
Whether for industrial applications, wind farm grid connections, or urban power distribution – those looking for a [medium-voltage cable](http://bauer-generator.de/glossar/mittelspannung/) that **delivers technical performance, operational reliability, and effortless integration** will find exactly that in the NA2XS(F)2Y.
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
---
|
---
|
||||||
|
|
||||||
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'
|
||||||
featuredImage: /uploads/2025/02/image_fx_-9.webp
|
featuredImage: /uploads/2025/02/image_fx_-9.webp
|
||||||
|
|||||||
17
lib/blog.ts
17
lib/blog.ts
@@ -56,3 +56,20 @@ export async function getAllPosts(locale: string): Promise<PostMdx[]> {
|
|||||||
|
|
||||||
return posts;
|
return posts;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export async function getAdjacentPosts(slug: string, locale: string): Promise<{ prev: PostMdx | null; next: PostMdx | null }> {
|
||||||
|
const posts = await getAllPosts(locale);
|
||||||
|
const currentIndex = posts.findIndex(post => post.slug === slug);
|
||||||
|
|
||||||
|
if (currentIndex === -1) {
|
||||||
|
return { prev: null, next: null };
|
||||||
|
}
|
||||||
|
|
||||||
|
// Posts are sorted by date descending (newest first)
|
||||||
|
// So "next" post (newer) is at index - 1
|
||||||
|
// And "previous" post (older) is at index + 1
|
||||||
|
const next = currentIndex > 0 ? posts[currentIndex - 1] : null;
|
||||||
|
const prev = currentIndex < posts.length - 1 ? posts[currentIndex + 1] : null;
|
||||||
|
|
||||||
|
return { prev, next };
|
||||||
|
}
|
||||||
|
|||||||
506
package-lock.json
generated
506
package-lock.json
generated
@@ -16,6 +16,7 @@
|
|||||||
"dotenv": "^17.2.3",
|
"dotenv": "^17.2.3",
|
||||||
"gray-matter": "^4.0.3",
|
"gray-matter": "^4.0.3",
|
||||||
"i18next": "^25.7.3",
|
"i18next": "^25.7.3",
|
||||||
|
"jsdom": "^27.4.0",
|
||||||
"lucide-react": "^0.562.0",
|
"lucide-react": "^0.562.0",
|
||||||
"next": "^14.2.35",
|
"next": "^14.2.35",
|
||||||
"next-i18next": "^15.4.3",
|
"next-i18next": "^15.4.3",
|
||||||
@@ -49,6 +50,12 @@
|
|||||||
"vitest": "^4.0.16"
|
"vitest": "^4.0.16"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/@acemir/cssom": {
|
||||||
|
"version": "0.9.31",
|
||||||
|
"resolved": "https://registry.npmjs.org/@acemir/cssom/-/cssom-0.9.31.tgz",
|
||||||
|
"integrity": "sha512-ZnR3GSaH+/vJ0YlHau21FjfLYjMpYVIzTD8M8vIEQvIGxeOXyXdzCI140rrCY862p/C/BbzWsjc1dgnM9mkoTA==",
|
||||||
|
"license": "MIT"
|
||||||
|
},
|
||||||
"node_modules/@alloc/quick-lru": {
|
"node_modules/@alloc/quick-lru": {
|
||||||
"version": "5.2.0",
|
"version": "5.2.0",
|
||||||
"resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz",
|
"resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz",
|
||||||
@@ -62,6 +69,56 @@
|
|||||||
"url": "https://github.com/sponsors/sindresorhus"
|
"url": "https://github.com/sponsors/sindresorhus"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/@asamuzakjp/css-color": {
|
||||||
|
"version": "4.1.1",
|
||||||
|
"resolved": "https://registry.npmjs.org/@asamuzakjp/css-color/-/css-color-4.1.1.tgz",
|
||||||
|
"integrity": "sha512-B0Hv6G3gWGMn0xKJ0txEi/jM5iFpT3MfDxmhZFb4W047GvytCf1DHQ1D69W3zHI4yWe2aTZAA0JnbMZ7Xc8DuQ==",
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"@csstools/css-calc": "^2.1.4",
|
||||||
|
"@csstools/css-color-parser": "^3.1.0",
|
||||||
|
"@csstools/css-parser-algorithms": "^3.0.5",
|
||||||
|
"@csstools/css-tokenizer": "^3.0.4",
|
||||||
|
"lru-cache": "^11.2.4"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/@asamuzakjp/css-color/node_modules/lru-cache": {
|
||||||
|
"version": "11.2.4",
|
||||||
|
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.2.4.tgz",
|
||||||
|
"integrity": "sha512-B5Y16Jr9LB9dHVkh6ZevG+vAbOsNOYCX+sXvFWFu7B3Iz5mijW3zdbMyhsh8ANd2mSWBYdJgnqi+mL7/LrOPYg==",
|
||||||
|
"license": "BlueOak-1.0.0",
|
||||||
|
"engines": {
|
||||||
|
"node": "20 || >=22"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/@asamuzakjp/dom-selector": {
|
||||||
|
"version": "6.7.6",
|
||||||
|
"resolved": "https://registry.npmjs.org/@asamuzakjp/dom-selector/-/dom-selector-6.7.6.tgz",
|
||||||
|
"integrity": "sha512-hBaJER6A9MpdG3WgdlOolHmbOYvSk46y7IQN/1+iqiCuUu6iWdQrs9DGKF8ocqsEqWujWf/V7b7vaDgiUmIvUg==",
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"@asamuzakjp/nwsapi": "^2.3.9",
|
||||||
|
"bidi-js": "^1.0.3",
|
||||||
|
"css-tree": "^3.1.0",
|
||||||
|
"is-potential-custom-element-name": "^1.0.1",
|
||||||
|
"lru-cache": "^11.2.4"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/@asamuzakjp/dom-selector/node_modules/lru-cache": {
|
||||||
|
"version": "11.2.4",
|
||||||
|
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.2.4.tgz",
|
||||||
|
"integrity": "sha512-B5Y16Jr9LB9dHVkh6ZevG+vAbOsNOYCX+sXvFWFu7B3Iz5mijW3zdbMyhsh8ANd2mSWBYdJgnqi+mL7/LrOPYg==",
|
||||||
|
"license": "BlueOak-1.0.0",
|
||||||
|
"engines": {
|
||||||
|
"node": "20 || >=22"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/@asamuzakjp/nwsapi": {
|
||||||
|
"version": "2.3.9",
|
||||||
|
"resolved": "https://registry.npmjs.org/@asamuzakjp/nwsapi/-/nwsapi-2.3.9.tgz",
|
||||||
|
"integrity": "sha512-n8GuYSrI9bF7FFZ/SjhwevlHc8xaVlb/7HmHelnc/PZXBD2ZR49NnN9sMMuDdEGPeeRQ5d0hqlSlEpgCX3Wl0Q==",
|
||||||
|
"license": "MIT"
|
||||||
|
},
|
||||||
"node_modules/@babel/code-frame": {
|
"node_modules/@babel/code-frame": {
|
||||||
"version": "7.28.6",
|
"version": "7.28.6",
|
||||||
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.28.6.tgz",
|
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.28.6.tgz",
|
||||||
@@ -94,6 +151,135 @@
|
|||||||
"node": ">=6.9.0"
|
"node": ">=6.9.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/@csstools/color-helpers": {
|
||||||
|
"version": "5.1.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/@csstools/color-helpers/-/color-helpers-5.1.0.tgz",
|
||||||
|
"integrity": "sha512-S11EXWJyy0Mz5SYvRmY8nJYTFFd1LCNV+7cXyAgQtOOuzb4EsgfqDufL+9esx72/eLhsRdGZwaldu/h+E4t4BA==",
|
||||||
|
"funding": [
|
||||||
|
{
|
||||||
|
"type": "github",
|
||||||
|
"url": "https://github.com/sponsors/csstools"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "opencollective",
|
||||||
|
"url": "https://opencollective.com/csstools"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"license": "MIT-0",
|
||||||
|
"engines": {
|
||||||
|
"node": ">=18"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/@csstools/css-calc": {
|
||||||
|
"version": "2.1.4",
|
||||||
|
"resolved": "https://registry.npmjs.org/@csstools/css-calc/-/css-calc-2.1.4.tgz",
|
||||||
|
"integrity": "sha512-3N8oaj+0juUw/1H3YwmDDJXCgTB1gKU6Hc/bB502u9zR0q2vd786XJH9QfrKIEgFlZmhZiq6epXl4rHqhzsIgQ==",
|
||||||
|
"funding": [
|
||||||
|
{
|
||||||
|
"type": "github",
|
||||||
|
"url": "https://github.com/sponsors/csstools"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "opencollective",
|
||||||
|
"url": "https://opencollective.com/csstools"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"license": "MIT",
|
||||||
|
"engines": {
|
||||||
|
"node": ">=18"
|
||||||
|
},
|
||||||
|
"peerDependencies": {
|
||||||
|
"@csstools/css-parser-algorithms": "^3.0.5",
|
||||||
|
"@csstools/css-tokenizer": "^3.0.4"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/@csstools/css-color-parser": {
|
||||||
|
"version": "3.1.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/@csstools/css-color-parser/-/css-color-parser-3.1.0.tgz",
|
||||||
|
"integrity": "sha512-nbtKwh3a6xNVIp/VRuXV64yTKnb1IjTAEEh3irzS+HkKjAOYLTGNb9pmVNntZ8iVBHcWDA2Dof0QtPgFI1BaTA==",
|
||||||
|
"funding": [
|
||||||
|
{
|
||||||
|
"type": "github",
|
||||||
|
"url": "https://github.com/sponsors/csstools"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "opencollective",
|
||||||
|
"url": "https://opencollective.com/csstools"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"@csstools/color-helpers": "^5.1.0",
|
||||||
|
"@csstools/css-calc": "^2.1.4"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": ">=18"
|
||||||
|
},
|
||||||
|
"peerDependencies": {
|
||||||
|
"@csstools/css-parser-algorithms": "^3.0.5",
|
||||||
|
"@csstools/css-tokenizer": "^3.0.4"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/@csstools/css-parser-algorithms": {
|
||||||
|
"version": "3.0.5",
|
||||||
|
"resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-3.0.5.tgz",
|
||||||
|
"integrity": "sha512-DaDeUkXZKjdGhgYaHNJTV9pV7Y9B3b644jCLs9Upc3VeNGg6LWARAT6O+Q+/COo+2gg/bM5rhpMAtf70WqfBdQ==",
|
||||||
|
"funding": [
|
||||||
|
{
|
||||||
|
"type": "github",
|
||||||
|
"url": "https://github.com/sponsors/csstools"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "opencollective",
|
||||||
|
"url": "https://opencollective.com/csstools"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"license": "MIT",
|
||||||
|
"engines": {
|
||||||
|
"node": ">=18"
|
||||||
|
},
|
||||||
|
"peerDependencies": {
|
||||||
|
"@csstools/css-tokenizer": "^3.0.4"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/@csstools/css-syntax-patches-for-csstree": {
|
||||||
|
"version": "1.0.25",
|
||||||
|
"resolved": "https://registry.npmjs.org/@csstools/css-syntax-patches-for-csstree/-/css-syntax-patches-for-csstree-1.0.25.tgz",
|
||||||
|
"integrity": "sha512-g0Kw9W3vjx5BEBAF8c5Fm2NcB/Fs8jJXh85aXqwEXiL+tqtOut07TWgyaGzAAfTM+gKckrrncyeGEZPcaRgm2Q==",
|
||||||
|
"funding": [
|
||||||
|
{
|
||||||
|
"type": "github",
|
||||||
|
"url": "https://github.com/sponsors/csstools"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "opencollective",
|
||||||
|
"url": "https://opencollective.com/csstools"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"license": "MIT-0",
|
||||||
|
"engines": {
|
||||||
|
"node": ">=18"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/@csstools/css-tokenizer": {
|
||||||
|
"version": "3.0.4",
|
||||||
|
"resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-3.0.4.tgz",
|
||||||
|
"integrity": "sha512-Vd/9EVDiu6PPJt9yAh6roZP6El1xHrdvIVGjyBsHR0RYwNHgL7FJPyIIW4fANJNG6FtyZfvlRPpFI4ZM/lubvw==",
|
||||||
|
"funding": [
|
||||||
|
{
|
||||||
|
"type": "github",
|
||||||
|
"url": "https://github.com/sponsors/csstools"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "opencollective",
|
||||||
|
"url": "https://opencollective.com/csstools"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"license": "MIT",
|
||||||
|
"engines": {
|
||||||
|
"node": ">=18"
|
||||||
|
}
|
||||||
|
},
|
||||||
"node_modules/@emnapi/core": {
|
"node_modules/@emnapi/core": {
|
||||||
"version": "1.7.1",
|
"version": "1.7.1",
|
||||||
"resolved": "https://registry.npmjs.org/@emnapi/core/-/core-1.7.1.tgz",
|
"resolved": "https://registry.npmjs.org/@emnapi/core/-/core-1.7.1.tgz",
|
||||||
@@ -713,6 +899,23 @@
|
|||||||
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/@exodus/bytes": {
|
||||||
|
"version": "1.8.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/@exodus/bytes/-/bytes-1.8.0.tgz",
|
||||||
|
"integrity": "sha512-8JPn18Bcp8Uo1T82gR8lh2guEOa5KKU/IEKvvdp0sgmi7coPBWf1Doi1EXsGZb2ehc8ym/StJCjffYV+ne7sXQ==",
|
||||||
|
"license": "MIT",
|
||||||
|
"engines": {
|
||||||
|
"node": "^20.19.0 || ^22.12.0 || >=24.0.0"
|
||||||
|
},
|
||||||
|
"peerDependencies": {
|
||||||
|
"@exodus/crypto": "^1.0.0-rc.4"
|
||||||
|
},
|
||||||
|
"peerDependenciesMeta": {
|
||||||
|
"@exodus/crypto": {
|
||||||
|
"optional": true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"node_modules/@formatjs/ecma402-abstract": {
|
"node_modules/@formatjs/ecma402-abstract": {
|
||||||
"version": "2.3.6",
|
"version": "2.3.6",
|
||||||
"resolved": "https://registry.npmjs.org/@formatjs/ecma402-abstract/-/ecma402-abstract-2.3.6.tgz",
|
"resolved": "https://registry.npmjs.org/@formatjs/ecma402-abstract/-/ecma402-abstract-2.3.6.tgz",
|
||||||
@@ -3854,6 +4057,15 @@
|
|||||||
"node": ">=0.8"
|
"node": ">=0.8"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/agent-base": {
|
||||||
|
"version": "7.1.4",
|
||||||
|
"resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.4.tgz",
|
||||||
|
"integrity": "sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ==",
|
||||||
|
"license": "MIT",
|
||||||
|
"engines": {
|
||||||
|
"node": ">= 14"
|
||||||
|
}
|
||||||
|
},
|
||||||
"node_modules/ajv": {
|
"node_modules/ajv": {
|
||||||
"version": "6.12.6",
|
"version": "6.12.6",
|
||||||
"resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
|
"resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
|
||||||
@@ -4784,6 +4996,19 @@
|
|||||||
"url": "https://github.com/sponsors/fb55"
|
"url": "https://github.com/sponsors/fb55"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/css-tree": {
|
||||||
|
"version": "3.1.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/css-tree/-/css-tree-3.1.0.tgz",
|
||||||
|
"integrity": "sha512-0eW44TGN5SQXU1mWSkKwFstI/22X2bG1nYzZTYMAWjylYURhse752YgbE4Cx46AC+bAvI+/dYTPRk1LqSUnu6w==",
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"mdn-data": "2.12.2",
|
||||||
|
"source-map-js": "^1.0.1"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
"node_modules/css-what": {
|
"node_modules/css-what": {
|
||||||
"version": "6.2.2",
|
"version": "6.2.2",
|
||||||
"resolved": "https://registry.npmjs.org/css-what/-/css-what-6.2.2.tgz",
|
"resolved": "https://registry.npmjs.org/css-what/-/css-what-6.2.2.tgz",
|
||||||
@@ -4796,6 +5021,30 @@
|
|||||||
"url": "https://github.com/sponsors/fb55"
|
"url": "https://github.com/sponsors/fb55"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/cssstyle": {
|
||||||
|
"version": "5.3.7",
|
||||||
|
"resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-5.3.7.tgz",
|
||||||
|
"integrity": "sha512-7D2EPVltRrsTkhpQmksIu+LxeWAIEk6wRDMJ1qljlv+CKHJM+cJLlfhWIzNA44eAsHXSNe3+vO6DW1yCYx8SuQ==",
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"@asamuzakjp/css-color": "^4.1.1",
|
||||||
|
"@csstools/css-syntax-patches-for-csstree": "^1.0.21",
|
||||||
|
"css-tree": "^3.1.0",
|
||||||
|
"lru-cache": "^11.2.4"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": ">=20"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/cssstyle/node_modules/lru-cache": {
|
||||||
|
"version": "11.2.4",
|
||||||
|
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.2.4.tgz",
|
||||||
|
"integrity": "sha512-B5Y16Jr9LB9dHVkh6ZevG+vAbOsNOYCX+sXvFWFu7B3Iz5mijW3zdbMyhsh8ANd2mSWBYdJgnqi+mL7/LrOPYg==",
|
||||||
|
"license": "BlueOak-1.0.0",
|
||||||
|
"engines": {
|
||||||
|
"node": "20 || >=22"
|
||||||
|
}
|
||||||
|
},
|
||||||
"node_modules/csstype": {
|
"node_modules/csstype": {
|
||||||
"version": "3.2.3",
|
"version": "3.2.3",
|
||||||
"resolved": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz",
|
"resolved": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz",
|
||||||
@@ -4809,6 +5058,19 @@
|
|||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "BSD-2-Clause"
|
"license": "BSD-2-Clause"
|
||||||
},
|
},
|
||||||
|
"node_modules/data-urls": {
|
||||||
|
"version": "6.0.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/data-urls/-/data-urls-6.0.0.tgz",
|
||||||
|
"integrity": "sha512-BnBS08aLUM+DKamupXs3w2tJJoqU+AkaE/+6vQxi/G/DPmIZFJJp9Dkb1kM03AZx8ADehDUZgsNxju3mPXZYIA==",
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"whatwg-mimetype": "^4.0.0",
|
||||||
|
"whatwg-url": "^15.0.0"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": ">=20"
|
||||||
|
}
|
||||||
|
},
|
||||||
"node_modules/data-view-buffer": {
|
"node_modules/data-view-buffer": {
|
||||||
"version": "1.0.2",
|
"version": "1.0.2",
|
||||||
"resolved": "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.2.tgz",
|
"resolved": "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.2.tgz",
|
||||||
@@ -6766,6 +7028,18 @@
|
|||||||
"integrity": "sha512-LgOWAkrN0rFaQpfdWBQlv/VhkOxb5AsBjk6NQVx4yEzWS923T07X0M1Y0VNko2H52HeSpZrZNNMJ0aFqsdVzQg==",
|
"integrity": "sha512-LgOWAkrN0rFaQpfdWBQlv/VhkOxb5AsBjk6NQVx4yEzWS923T07X0M1Y0VNko2H52HeSpZrZNNMJ0aFqsdVzQg==",
|
||||||
"license": "ISC"
|
"license": "ISC"
|
||||||
},
|
},
|
||||||
|
"node_modules/html-encoding-sniffer": {
|
||||||
|
"version": "6.0.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-6.0.0.tgz",
|
||||||
|
"integrity": "sha512-CV9TW3Y3f8/wT0BRFc1/KAVQ3TUHiXmaAb6VW9vtiMFf7SLoMd1PdAc4W3KFOFETBJUb90KatHqlsZMWV+R9Gg==",
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"@exodus/bytes": "^1.6.0"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": "^20.19.0 || ^22.12.0 || >=24.0.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
"node_modules/html-parse-stringify": {
|
"node_modules/html-parse-stringify": {
|
||||||
"version": "3.0.1",
|
"version": "3.0.1",
|
||||||
"resolved": "https://registry.npmjs.org/html-parse-stringify/-/html-parse-stringify-3.0.1.tgz",
|
"resolved": "https://registry.npmjs.org/html-parse-stringify/-/html-parse-stringify-3.0.1.tgz",
|
||||||
@@ -6811,6 +7085,32 @@
|
|||||||
"entities": "^4.4.0"
|
"entities": "^4.4.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/http-proxy-agent": {
|
||||||
|
"version": "7.0.2",
|
||||||
|
"resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz",
|
||||||
|
"integrity": "sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==",
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"agent-base": "^7.1.0",
|
||||||
|
"debug": "^4.3.4"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": ">= 14"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/https-proxy-agent": {
|
||||||
|
"version": "7.0.6",
|
||||||
|
"resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.6.tgz",
|
||||||
|
"integrity": "sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==",
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"agent-base": "^7.1.2",
|
||||||
|
"debug": "4"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": ">= 14"
|
||||||
|
}
|
||||||
|
},
|
||||||
"node_modules/hyphen": {
|
"node_modules/hyphen": {
|
||||||
"version": "1.13.0",
|
"version": "1.13.0",
|
||||||
"resolved": "https://registry.npmjs.org/hyphen/-/hyphen-1.13.0.tgz",
|
"resolved": "https://registry.npmjs.org/hyphen/-/hyphen-1.13.0.tgz",
|
||||||
@@ -7289,6 +7589,12 @@
|
|||||||
"url": "https://github.com/sponsors/sindresorhus"
|
"url": "https://github.com/sponsors/sindresorhus"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/is-potential-custom-element-name": {
|
||||||
|
"version": "1.0.1",
|
||||||
|
"resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz",
|
||||||
|
"integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==",
|
||||||
|
"license": "MIT"
|
||||||
|
},
|
||||||
"node_modules/is-regex": {
|
"node_modules/is-regex": {
|
||||||
"version": "1.2.1",
|
"version": "1.2.1",
|
||||||
"resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.2.1.tgz",
|
"resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.2.1.tgz",
|
||||||
@@ -7560,6 +7866,69 @@
|
|||||||
"js-yaml": "bin/js-yaml.js"
|
"js-yaml": "bin/js-yaml.js"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/jsdom": {
|
||||||
|
"version": "27.4.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/jsdom/-/jsdom-27.4.0.tgz",
|
||||||
|
"integrity": "sha512-mjzqwWRD9Y1J1KUi7W97Gja1bwOOM5Ug0EZ6UDK3xS7j7mndrkwozHtSblfomlzyB4NepioNt+B2sOSzczVgtQ==",
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"@acemir/cssom": "^0.9.28",
|
||||||
|
"@asamuzakjp/dom-selector": "^6.7.6",
|
||||||
|
"@exodus/bytes": "^1.6.0",
|
||||||
|
"cssstyle": "^5.3.4",
|
||||||
|
"data-urls": "^6.0.0",
|
||||||
|
"decimal.js": "^10.6.0",
|
||||||
|
"html-encoding-sniffer": "^6.0.0",
|
||||||
|
"http-proxy-agent": "^7.0.2",
|
||||||
|
"https-proxy-agent": "^7.0.6",
|
||||||
|
"is-potential-custom-element-name": "^1.0.1",
|
||||||
|
"parse5": "^8.0.0",
|
||||||
|
"saxes": "^6.0.0",
|
||||||
|
"symbol-tree": "^3.2.4",
|
||||||
|
"tough-cookie": "^6.0.0",
|
||||||
|
"w3c-xmlserializer": "^5.0.0",
|
||||||
|
"webidl-conversions": "^8.0.0",
|
||||||
|
"whatwg-mimetype": "^4.0.0",
|
||||||
|
"whatwg-url": "^15.1.0",
|
||||||
|
"ws": "^8.18.3",
|
||||||
|
"xml-name-validator": "^5.0.0"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": "^20.19.0 || ^22.12.0 || >=24.0.0"
|
||||||
|
},
|
||||||
|
"peerDependencies": {
|
||||||
|
"canvas": "^3.0.0"
|
||||||
|
},
|
||||||
|
"peerDependenciesMeta": {
|
||||||
|
"canvas": {
|
||||||
|
"optional": true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/jsdom/node_modules/entities": {
|
||||||
|
"version": "6.0.1",
|
||||||
|
"resolved": "https://registry.npmjs.org/entities/-/entities-6.0.1.tgz",
|
||||||
|
"integrity": "sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==",
|
||||||
|
"license": "BSD-2-Clause",
|
||||||
|
"engines": {
|
||||||
|
"node": ">=0.12"
|
||||||
|
},
|
||||||
|
"funding": {
|
||||||
|
"url": "https://github.com/fb55/entities?sponsor=1"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/jsdom/node_modules/parse5": {
|
||||||
|
"version": "8.0.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/parse5/-/parse5-8.0.0.tgz",
|
||||||
|
"integrity": "sha512-9m4m5GSgXjL4AjumKzq1Fgfp3Z8rsvjRNbnkVwfu2ImRqE5D0LnY2QfDen18FSY9C573YU5XxSapdHZTZ2WolA==",
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"entities": "^6.0.0"
|
||||||
|
},
|
||||||
|
"funding": {
|
||||||
|
"url": "https://github.com/inikulin/parse5?sponsor=1"
|
||||||
|
}
|
||||||
|
},
|
||||||
"node_modules/json-buffer": {
|
"node_modules/json-buffer": {
|
||||||
"version": "3.0.1",
|
"version": "3.0.1",
|
||||||
"resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz",
|
"resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz",
|
||||||
@@ -8223,6 +8592,12 @@
|
|||||||
"url": "https://opencollective.com/unified"
|
"url": "https://opencollective.com/unified"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/mdn-data": {
|
||||||
|
"version": "2.12.2",
|
||||||
|
"resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.12.2.tgz",
|
||||||
|
"integrity": "sha512-IEn+pegP1aManZuckezWCO+XZQDplx1366JoVhTpMpBB1sPey/SbveZQUosKiKiGYjg1wH4pMlNgXbCiYgihQA==",
|
||||||
|
"license": "CC0-1.0"
|
||||||
|
},
|
||||||
"node_modules/media-engine": {
|
"node_modules/media-engine": {
|
||||||
"version": "1.0.3",
|
"version": "1.0.3",
|
||||||
"resolved": "https://registry.npmjs.org/media-engine/-/media-engine-1.0.3.tgz",
|
"resolved": "https://registry.npmjs.org/media-engine/-/media-engine-1.0.3.tgz",
|
||||||
@@ -9778,7 +10153,6 @@
|
|||||||
"version": "2.3.1",
|
"version": "2.3.1",
|
||||||
"resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz",
|
"resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz",
|
||||||
"integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==",
|
"integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==",
|
||||||
"dev": true,
|
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=6"
|
"node": ">=6"
|
||||||
@@ -10322,6 +10696,18 @@
|
|||||||
"@parcel/watcher": "^2.4.1"
|
"@parcel/watcher": "^2.4.1"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/saxes": {
|
||||||
|
"version": "6.0.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/saxes/-/saxes-6.0.0.tgz",
|
||||||
|
"integrity": "sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==",
|
||||||
|
"license": "ISC",
|
||||||
|
"dependencies": {
|
||||||
|
"xmlchars": "^2.2.0"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": ">=v12.22.7"
|
||||||
|
}
|
||||||
|
},
|
||||||
"node_modules/scheduler": {
|
"node_modules/scheduler": {
|
||||||
"version": "0.23.2",
|
"version": "0.23.2",
|
||||||
"resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.2.tgz",
|
"resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.2.tgz",
|
||||||
@@ -11045,6 +11431,12 @@
|
|||||||
"pdfkit": ">=0.8.1"
|
"pdfkit": ">=0.8.1"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/symbol-tree": {
|
||||||
|
"version": "3.2.4",
|
||||||
|
"resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz",
|
||||||
|
"integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==",
|
||||||
|
"license": "MIT"
|
||||||
|
},
|
||||||
"node_modules/tailwind-merge": {
|
"node_modules/tailwind-merge": {
|
||||||
"version": "3.4.0",
|
"version": "3.4.0",
|
||||||
"resolved": "https://registry.npmjs.org/tailwind-merge/-/tailwind-merge-3.4.0.tgz",
|
"resolved": "https://registry.npmjs.org/tailwind-merge/-/tailwind-merge-3.4.0.tgz",
|
||||||
@@ -11126,6 +11518,24 @@
|
|||||||
"node": ">=14.0.0"
|
"node": ">=14.0.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/tldts": {
|
||||||
|
"version": "7.0.19",
|
||||||
|
"resolved": "https://registry.npmjs.org/tldts/-/tldts-7.0.19.tgz",
|
||||||
|
"integrity": "sha512-8PWx8tvC4jDB39BQw1m4x8y5MH1BcQ5xHeL2n7UVFulMPH/3Q0uiamahFJ3lXA0zO2SUyRXuVVbWSDmstlt9YA==",
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"tldts-core": "^7.0.19"
|
||||||
|
},
|
||||||
|
"bin": {
|
||||||
|
"tldts": "bin/cli.js"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/tldts-core": {
|
||||||
|
"version": "7.0.19",
|
||||||
|
"resolved": "https://registry.npmjs.org/tldts-core/-/tldts-core-7.0.19.tgz",
|
||||||
|
"integrity": "sha512-lJX2dEWx0SGH4O6p+7FPwYmJ/bu1JbcGJ8RLaG9b7liIgZ85itUVEPbMtWRVrde/0fnDPEPHW10ZsKW3kVsE9A==",
|
||||||
|
"license": "MIT"
|
||||||
|
},
|
||||||
"node_modules/to-regex-range": {
|
"node_modules/to-regex-range": {
|
||||||
"version": "5.0.1",
|
"version": "5.0.1",
|
||||||
"resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
|
"resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
|
||||||
@@ -11148,6 +11558,30 @@
|
|||||||
"node": ">=6"
|
"node": ">=6"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/tough-cookie": {
|
||||||
|
"version": "6.0.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-6.0.0.tgz",
|
||||||
|
"integrity": "sha512-kXuRi1mtaKMrsLUxz3sQYvVl37B0Ns6MzfrtV5DvJceE9bPyspOqk9xxv7XbZWcfLWbFmm997vl83qUWVJA64w==",
|
||||||
|
"license": "BSD-3-Clause",
|
||||||
|
"dependencies": {
|
||||||
|
"tldts": "^7.0.5"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": ">=16"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/tr46": {
|
||||||
|
"version": "6.0.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/tr46/-/tr46-6.0.0.tgz",
|
||||||
|
"integrity": "sha512-bLVMLPtstlZ4iMQHpFHTR7GAGj2jxi8Dg0s2h2MafAE4uSWF98FC/3MomU51iQAMf8/qDUbKWf5GxuvvVcXEhw==",
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"punycode": "^2.3.1"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": ">=20"
|
||||||
|
}
|
||||||
|
},
|
||||||
"node_modules/trim-lines": {
|
"node_modules/trim-lines": {
|
||||||
"version": "3.0.1",
|
"version": "3.0.1",
|
||||||
"resolved": "https://registry.npmjs.org/trim-lines/-/trim-lines-3.0.1.tgz",
|
"resolved": "https://registry.npmjs.org/trim-lines/-/trim-lines-3.0.1.tgz",
|
||||||
@@ -11858,6 +12292,27 @@
|
|||||||
"node": ">=0.10.0"
|
"node": ">=0.10.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/w3c-xmlserializer": {
|
||||||
|
"version": "5.0.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-5.0.0.tgz",
|
||||||
|
"integrity": "sha512-o8qghlI8NZHU1lLPrpi2+Uq7abh4GGPpYANlalzWxyWteJOCsr/P+oPBA49TOLu5FTZO4d3F9MnWJfiMo4BkmA==",
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"xml-name-validator": "^5.0.0"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": ">=18"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/webidl-conversions": {
|
||||||
|
"version": "8.0.1",
|
||||||
|
"resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-8.0.1.tgz",
|
||||||
|
"integrity": "sha512-BMhLD/Sw+GbJC21C/UgyaZX41nPt8bUTg+jWyDeg7e7YN4xOM05YPSIXceACnXVtqyEw/LMClUQMtMZ+PGGpqQ==",
|
||||||
|
"license": "BSD-2-Clause",
|
||||||
|
"engines": {
|
||||||
|
"node": ">=20"
|
||||||
|
}
|
||||||
|
},
|
||||||
"node_modules/whatwg-encoding": {
|
"node_modules/whatwg-encoding": {
|
||||||
"version": "3.1.1",
|
"version": "3.1.1",
|
||||||
"resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-3.1.1.tgz",
|
"resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-3.1.1.tgz",
|
||||||
@@ -11880,6 +12335,19 @@
|
|||||||
"node": ">=18"
|
"node": ">=18"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/whatwg-url": {
|
||||||
|
"version": "15.1.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-15.1.0.tgz",
|
||||||
|
"integrity": "sha512-2ytDk0kiEj/yu90JOAp44PVPUkO9+jVhyf+SybKlRHSDlvOOZhdPIrr7xTH64l4WixO2cP+wQIcgujkGBPPz6g==",
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"tr46": "^6.0.0",
|
||||||
|
"webidl-conversions": "^8.0.0"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": ">=20"
|
||||||
|
}
|
||||||
|
},
|
||||||
"node_modules/which": {
|
"node_modules/which": {
|
||||||
"version": "2.0.2",
|
"version": "2.0.2",
|
||||||
"resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
|
"resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
|
||||||
@@ -12117,6 +12585,27 @@
|
|||||||
"url": "https://github.com/chalk/ansi-styles?sponsor=1"
|
"url": "https://github.com/chalk/ansi-styles?sponsor=1"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/ws": {
|
||||||
|
"version": "8.19.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/ws/-/ws-8.19.0.tgz",
|
||||||
|
"integrity": "sha512-blAT2mjOEIi0ZzruJfIhb3nps74PRWTCz1IjglWEEpQl5XS/UNama6u2/rjFkDDouqr4L67ry+1aGIALViWjDg==",
|
||||||
|
"license": "MIT",
|
||||||
|
"engines": {
|
||||||
|
"node": ">=10.0.0"
|
||||||
|
},
|
||||||
|
"peerDependencies": {
|
||||||
|
"bufferutil": "^4.0.1",
|
||||||
|
"utf-8-validate": ">=5.0.2"
|
||||||
|
},
|
||||||
|
"peerDependenciesMeta": {
|
||||||
|
"bufferutil": {
|
||||||
|
"optional": true
|
||||||
|
},
|
||||||
|
"utf-8-validate": {
|
||||||
|
"optional": true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"node_modules/xlsx": {
|
"node_modules/xlsx": {
|
||||||
"version": "0.18.5",
|
"version": "0.18.5",
|
||||||
"resolved": "https://registry.npmjs.org/xlsx/-/xlsx-0.18.5.tgz",
|
"resolved": "https://registry.npmjs.org/xlsx/-/xlsx-0.18.5.tgz",
|
||||||
@@ -12138,6 +12627,21 @@
|
|||||||
"node": ">=0.8"
|
"node": ">=0.8"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/xml-name-validator": {
|
||||||
|
"version": "5.0.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-5.0.0.tgz",
|
||||||
|
"integrity": "sha512-EvGK8EJ3DhaHfbRlETOWAS5pO9MZITeauHKJyb8wyajUfQUenkIg2MvLDTZ4T/TgIcm3HU0TFBgWWboAZ30UHg==",
|
||||||
|
"license": "Apache-2.0",
|
||||||
|
"engines": {
|
||||||
|
"node": ">=18"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/xmlchars": {
|
||||||
|
"version": "2.2.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz",
|
||||||
|
"integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==",
|
||||||
|
"license": "MIT"
|
||||||
|
},
|
||||||
"node_modules/yaml": {
|
"node_modules/yaml": {
|
||||||
"version": "2.8.2",
|
"version": "2.8.2",
|
||||||
"resolved": "https://registry.npmjs.org/yaml/-/yaml-2.8.2.tgz",
|
"resolved": "https://registry.npmjs.org/yaml/-/yaml-2.8.2.tgz",
|
||||||
|
|||||||
@@ -8,6 +8,7 @@
|
|||||||
"dotenv": "^17.2.3",
|
"dotenv": "^17.2.3",
|
||||||
"gray-matter": "^4.0.3",
|
"gray-matter": "^4.0.3",
|
||||||
"i18next": "^25.7.3",
|
"i18next": "^25.7.3",
|
||||||
|
"jsdom": "^27.4.0",
|
||||||
"lucide-react": "^0.562.0",
|
"lucide-react": "^0.562.0",
|
||||||
"next": "^14.2.35",
|
"next": "^14.2.35",
|
||||||
"next-i18next": "^15.4.3",
|
"next-i18next": "^15.4.3",
|
||||||
|
|||||||
369
reference/klz-cables-clone/focus-on-wind-farm-construction.html
Normal file
369
reference/klz-cables-clone/focus-on-wind-farm-construction.html
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user