Compare commits
26 Commits
v1.2.11-rc
...
v2.0.4
| Author | SHA1 | Date | |
|---|---|---|---|
| 5f766589c4 | |||
| 56a7613e85 | |||
| c7c345eaad | |||
| ec99dc0317 | |||
| a6dd7913a7 | |||
| 388b90ddb0 | |||
| d57700d322 | |||
| f7aa880d9f | |||
| 2bac8d6e8a | |||
| 5bd95bca4f | |||
| 6f8d63200a | |||
| 4742630260 | |||
| a5d77fc69b | |||
| 41cfe19cbf | |||
| e4f68713e7 | |||
| 2fbcce0990 | |||
| c414a7614b | |||
| 6a0269facc | |||
| 477a3bb8ce | |||
| b1859c15ce | |||
| 6085cc05dc | |||
| bcf2d60da6 | |||
| f4fdb89ba4 | |||
| 9de3931e33 | |||
| b10dbcb23f | |||
| 65bb9c620a |
30
.env
30
.env
@@ -16,24 +16,12 @@ MAIL_PASSWORD=4592fcb94599ee1a45b4ac2386fd0a64-102c75d8-ca2870e6
|
||||
MAIL_FROM="KLZ Cables <postmaster@mg.mintel.me>"
|
||||
MAIL_RECIPIENTS=marc@cablecreations.de,info@klz-cables.com
|
||||
|
||||
# Directus
|
||||
DIRECTUS_URL=http://klz-cms:8055
|
||||
DIRECTUS_KEY=59fb8f4c1a51b18fe28ad947f713914e
|
||||
DIRECTUS_SECRET=7459038d41401dfb11254cf7f1ef2d0f
|
||||
DIRECTUS_ADMIN_EMAIL=marc@mintel.me
|
||||
DIRECTUS_ADMIN_PASSWORD=Tim300493.
|
||||
DIRECTUS_API_TOKEN=59fb8f4c1a51b18fe28ad947f713914e
|
||||
DIRECTUS_DB_NAME=directus
|
||||
DIRECTUS_DB_USER=klz_db_user
|
||||
DIRECTUS_DB_PASSWORD=klz_db_pass
|
||||
# Local Development
|
||||
PROJECT_NAME=klz-cables
|
||||
GATEKEEPER_BYPASS_ENABLED=true
|
||||
TRAEFIK_HOST=klz.localhost
|
||||
DIRECTUS_HOST=cms.klz.localhost
|
||||
GATEKEEPER_PASSWORD=klz2026
|
||||
COOKIE_DOMAIN=localhost
|
||||
INFRA_DIRECTUS_URL=http://localhost:8059
|
||||
INFRA_DIRECTUS_TOKEN=59fb8f4c1a51b18fe28ad947f713914e
|
||||
GATEKEEPER_ORIGIN=http://klz.localhost
|
||||
OPENROUTER_API_KEY=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
|
||||
# ────────────────────────────────────────────────────────────────────────────
|
||||
# Payload Infrastructure (Dockerized)
|
||||
# ────────────────────────────────────────────────────────────────────────────
|
||||
# The POSTGRES_URI and PAYLOAD_SECRET are automatically constructed and injected
|
||||
# by docker-compose.yml using these base DB credentials, so you don't need to
|
||||
# manually write the connection strings here.
|
||||
PAYLOAD_DB_NAME=payload
|
||||
PAYLOAD_DB_USER=payload
|
||||
PAYLOAD_DB_PASSWORD=120in09oenaoinsd9iaidon
|
||||
|
||||
12
.env.example
12
.env.example
@@ -10,7 +10,6 @@
|
||||
# ────────────────────────────────────────────────────────────────────────────
|
||||
NODE_ENV=development
|
||||
NEXT_PUBLIC_BASE_URL=http://localhost:3000
|
||||
DIRECTUS_PORT=8055
|
||||
# TARGET is used to differentiate between environments (testing, staging, production)
|
||||
# NEXT_PUBLIC_TARGET makes this information available to the frontend
|
||||
TARGET=development
|
||||
@@ -47,9 +46,18 @@ MAIL_RECIPIENTS=info@klz-cables.com
|
||||
LOG_LEVEL=info
|
||||
GATEKEEPER_PASSWORD=klz2026
|
||||
SENTRY_DSN=
|
||||
# For Directus Error Tracking
|
||||
# SENTRY_ENVIRONMENT is set automatically by CI
|
||||
|
||||
# ────────────────────────────────────────────────────────────────────────────
|
||||
# Payload Infrastructure (Dockerized)
|
||||
# ────────────────────────────────────────────────────────────────────────────
|
||||
# The POSTGRES_URI and PAYLOAD_SECRET are automatically constructed and injected
|
||||
# by docker-compose.yml using these base DB credentials, so you don't need to
|
||||
# manually write the connection strings here.
|
||||
PAYLOAD_DB_NAME=payload
|
||||
PAYLOAD_DB_USER=payload
|
||||
PAYLOAD_DB_PASSWORD=120in09oenaoinsd9iaidon
|
||||
|
||||
# ────────────────────────────────────────────────────────────────────────────
|
||||
# Deployment Configuration (CI/CD only)
|
||||
# ────────────────────────────────────────────────────────────────────────────
|
||||
|
||||
@@ -3,6 +3,10 @@ name: CI - Lint, Typecheck & Test
|
||||
on:
|
||||
pull_request:
|
||||
|
||||
concurrency:
|
||||
group: deploy-pipeline
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
quality-assurance:
|
||||
runs-on: docker
|
||||
@@ -16,20 +20,6 @@ jobs:
|
||||
version: 10
|
||||
run_install: false
|
||||
|
||||
- name: Get pnpm store directory
|
||||
id: pnpm-cache
|
||||
shell: bash
|
||||
run: |
|
||||
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_OUTPUT
|
||||
|
||||
- name: Setup pnpm cache
|
||||
uses: actions/cache@v4
|
||||
with:
|
||||
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
|
||||
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-pnpm-store-
|
||||
|
||||
- name: Setup Node.js
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
@@ -46,18 +36,9 @@ jobs:
|
||||
env:
|
||||
NPM_TOKEN: ${{ secrets.REGISTRY_PASS }}
|
||||
|
||||
- name: Setup Turbo cache
|
||||
uses: actions/cache@v4
|
||||
with:
|
||||
path: .turbo
|
||||
key: ${{ runner.os }}-turbo-${{ github.ref_name }}-${{ github.sha }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-turbo-${{ github.ref_name }}-
|
||||
${{ runner.os }}-turbo-
|
||||
|
||||
- name: 🧪 QA Checks
|
||||
env:
|
||||
TURBO_TELEMETRY_DISABLED: 1
|
||||
TURBO_TELEMETRY_DISABLED: "1"
|
||||
run: npx turbo run check:mdx lint typecheck test --cache-dir=".turbo"
|
||||
|
||||
- name: 🏗️ Build
|
||||
@@ -68,3 +49,4 @@ jobs:
|
||||
|
||||
- name: ♿ WCAG Sitemap Audit
|
||||
run: pnpm start-server-and-test start http://localhost:3000 "pnpm run check:wcag http://localhost:3000"
|
||||
# monitor trigger
|
||||
|
||||
@@ -17,7 +17,7 @@ env:
|
||||
PUPPETEER_SKIP_DOWNLOAD: "true"
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ (github.ref_type == 'tag' && !contains(github.ref_name, '-')) && 'prod' || (github.ref_name == 'main' && 'testing' || github.ref_name) }}
|
||||
group: deploy-pipeline
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
@@ -34,7 +34,6 @@ jobs:
|
||||
traefik_host: ${{ steps.determine.outputs.traefik_host }}
|
||||
traefik_rule: ${{ steps.determine.outputs.traefik_rule }}
|
||||
next_public_url: ${{ steps.determine.outputs.next_public_url }}
|
||||
directus_url: ${{ steps.determine.outputs.directus_url }}
|
||||
project_name: ${{ steps.determine.outputs.project_name }}
|
||||
short_sha: ${{ steps.determine.outputs.short_sha }}
|
||||
container:
|
||||
@@ -45,7 +44,7 @@ jobs:
|
||||
run: |
|
||||
echo "Purging old build layers and dangling images..."
|
||||
docker image prune -f
|
||||
docker builder prune -f --filter "until=6h"
|
||||
docker builder prune -f --filter "until=24h"
|
||||
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
@@ -102,9 +101,10 @@ jobs:
|
||||
echo "traefik_host=$PRIMARY_HOST"
|
||||
echo "traefik_rule=$TRAEFIK_RULE"
|
||||
echo "next_public_url=https://$PRIMARY_HOST"
|
||||
echo "directus_url=https://cms.$PRIMARY_HOST"
|
||||
if [[ "$TARGET" == "production" ]]; then
|
||||
echo "project_name=klz-cablescom"
|
||||
elif [[ "$TARGET" == "branch" ]]; then
|
||||
echo "project_name=$PRJ-branch-$SLUG"
|
||||
else
|
||||
echo "project_name=$PRJ-$TARGET"
|
||||
fi
|
||||
@@ -165,27 +165,20 @@ jobs:
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: 20
|
||||
|
||||
- name: 🔐 Registry Auth
|
||||
run: |
|
||||
echo "@mintel:registry=https://${{ vars.REGISTRY_HOST || 'npm.infra.mintel.me' }}" > .npmrc
|
||||
echo "//${{ vars.REGISTRY_HOST || 'npm.infra.mintel.me' }}/:_authToken=${{ secrets.REGISTRY_PASS }}" >> .npmrc
|
||||
- name: Install dependencies
|
||||
run: pnpm install --frozen-lockfile
|
||||
- name: Setup Turbo cache
|
||||
uses: actions/cache@v4
|
||||
with:
|
||||
path: .turbo
|
||||
key: ${{ runner.os }}-turbo-${{ github.ref_name }}-${{ github.sha }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-turbo-${{ github.ref_name }}-
|
||||
${{ runner.os }}-turbo-
|
||||
|
||||
- name: 🔒 Security Audit
|
||||
run: pnpm audit --audit-level high
|
||||
- name: 🧪 QA Checks
|
||||
if: github.event.inputs.skip_checks != 'true'
|
||||
env:
|
||||
TURBO_TELEMETRY_DISABLED: 1
|
||||
TURBO_TELEMETRY_DISABLED: "1"
|
||||
run: npx turbo run lint check:spell typecheck test --cache-dir=".turbo"
|
||||
|
||||
# ──────────────────────────────────────────────────────────────────────────────
|
||||
@@ -212,12 +205,9 @@ jobs:
|
||||
push: true
|
||||
provenance: false
|
||||
platforms: linux/arm64
|
||||
cache-from: type=gha,scope=nextjs-build-${{ needs.prepare.outputs.target }}
|
||||
cache-to: type=gha,mode=max,scope=nextjs-build-${{ needs.prepare.outputs.target }}
|
||||
build-args: |
|
||||
NEXT_PUBLIC_BASE_URL=${{ needs.prepare.outputs.next_public_url }}
|
||||
NEXT_PUBLIC_TARGET=${{ needs.prepare.outputs.target }}
|
||||
DIRECTUS_URL=${{ needs.prepare.outputs.directus_url }}
|
||||
UMAMI_WEBSITE_ID=${{ secrets.UMAMI_WEBSITE_ID || vars.UMAMI_WEBSITE_ID }}
|
||||
UMAMI_API_ENDPOINT=${{ secrets.UMAMI_API_ENDPOINT || vars.UMAMI_API_ENDPOINT || 'https://analytics.infra.mintel.me' }}
|
||||
NPM_TOKEN=${{ secrets.REGISTRY_PASS }}
|
||||
@@ -239,19 +229,13 @@ jobs:
|
||||
IMAGE_TAG: ${{ needs.prepare.outputs.image_tag }}
|
||||
PROJECT_NAME: ${{ needs.prepare.outputs.project_name }}
|
||||
NEXT_PUBLIC_BASE_URL: ${{ needs.prepare.outputs.next_public_url }}
|
||||
DIRECTUS_URL: ${{ needs.prepare.outputs.directus_url }}
|
||||
DIRECTUS_HOST: cms.${{ needs.prepare.outputs.traefik_host }}
|
||||
TRAEFIK_HOST: ${{ needs.prepare.outputs.traefik_host }}
|
||||
|
||||
# Secrets mapping (Directus)
|
||||
DIRECTUS_KEY: ${{ (needs.prepare.outputs.target == 'testing' && secrets.TESTING_DIRECTUS_KEY) || (needs.prepare.outputs.target == 'staging' && secrets.STAGING_DIRECTUS_KEY) || secrets.DIRECTUS_KEY || vars.DIRECTUS_KEY }}
|
||||
DIRECTUS_SECRET: ${{ (needs.prepare.outputs.target == 'testing' && secrets.TESTING_DIRECTUS_SECRET) || (needs.prepare.outputs.target == 'staging' && secrets.STAGING_DIRECTUS_SECRET) || secrets.DIRECTUS_SECRET || vars.DIRECTUS_SECRET }}
|
||||
DIRECTUS_ADMIN_EMAIL: ${{ (needs.prepare.outputs.target == 'testing' && secrets.TESTING_DIRECTUS_ADMIN_EMAIL) || (needs.prepare.outputs.target == 'staging' && secrets.STAGING_DIRECTUS_ADMIN_EMAIL) || secrets.DIRECTUS_ADMIN_EMAIL || vars.DIRECTUS_ADMIN_EMAIL || 'admin@mintel.me' }}
|
||||
DIRECTUS_ADMIN_PASSWORD: ${{ (needs.prepare.outputs.target == 'testing' && secrets.TESTING_DIRECTUS_ADMIN_PASSWORD) || (needs.prepare.outputs.target == 'staging' && secrets.STAGING_DIRECTUS_ADMIN_PASSWORD) || secrets.DIRECTUS_ADMIN_PASSWORD || vars.DIRECTUS_ADMIN_PASSWORD }}
|
||||
DIRECTUS_DB_NAME: ${{ secrets.DIRECTUS_DB_NAME || vars.DIRECTUS_DB_NAME || 'directus' }}
|
||||
DIRECTUS_DB_USER: ${{ secrets.DIRECTUS_DB_USER || vars.DIRECTUS_DB_USER || 'directus' }}
|
||||
DIRECTUS_DB_PASSWORD: ${{ (needs.prepare.outputs.target == 'testing' && secrets.TESTING_DIRECTUS_DB_PASSWORD) || (needs.prepare.outputs.target == 'staging' && secrets.STAGING_DIRECTUS_DB_PASSWORD) || secrets.DIRECTUS_DB_PASSWORD || vars.DIRECTUS_DB_PASSWORD || 'directus' }}
|
||||
DIRECTUS_API_TOKEN: ${{ (needs.prepare.outputs.target == 'testing' && secrets.TESTING_DIRECTUS_API_TOKEN) || (needs.prepare.outputs.target == 'staging' && secrets.STAGING_DIRECTUS_API_TOKEN) || secrets.DIRECTUS_API_TOKEN || vars.DIRECTUS_API_TOKEN }}
|
||||
# Secrets mapping (Payload CMS)
|
||||
PAYLOAD_SECRET: ${{ secrets.PAYLOAD_SECRET || vars.PAYLOAD_SECRET || 'you-need-to-set-a-payload-secret' }}
|
||||
PAYLOAD_DB_NAME: ${{ secrets.PAYLOAD_DB_NAME || vars.PAYLOAD_DB_NAME || 'payload' }}
|
||||
PAYLOAD_DB_USER: ${{ secrets.PAYLOAD_DB_USER || vars.PAYLOAD_DB_USER || 'payload' }}
|
||||
PAYLOAD_DB_PASSWORD: ${{ (needs.prepare.outputs.target == 'testing' && secrets.TESTING_PAYLOAD_DB_PASSWORD) || (needs.prepare.outputs.target == 'staging' && secrets.STAGING_PAYLOAD_DB_PASSWORD) || secrets.PAYLOAD_DB_PASSWORD || vars.PAYLOAD_DB_PASSWORD || 'payload' }}
|
||||
|
||||
# Secrets mapping (Mail)
|
||||
MAIL_HOST: ${{ secrets.SMTP_HOST || vars.SMTP_HOST }}
|
||||
@@ -313,21 +297,11 @@ jobs:
|
||||
echo "MAIL_FROM=$MAIL_FROM"
|
||||
echo "MAIL_RECIPIENTS=$MAIL_RECIPIENTS"
|
||||
echo ""
|
||||
echo "# Directus"
|
||||
echo "DIRECTUS_URL=$DIRECTUS_URL"
|
||||
echo "DIRECTUS_HOST=$DIRECTUS_HOST"
|
||||
echo "DIRECTUS_KEY=$DIRECTUS_KEY"
|
||||
echo "DIRECTUS_SECRET=$DIRECTUS_SECRET"
|
||||
echo "DIRECTUS_ADMIN_EMAIL=$DIRECTUS_ADMIN_EMAIL"
|
||||
echo "DIRECTUS_ADMIN_PASSWORD=$DIRECTUS_ADMIN_PASSWORD"
|
||||
echo "DIRECTUS_DB_NAME=$DIRECTUS_DB_NAME"
|
||||
echo "DIRECTUS_DB_USER=$DIRECTUS_DB_USER"
|
||||
echo "DIRECTUS_DB_PASSWORD=$DIRECTUS_DB_PASSWORD"
|
||||
echo "DIRECTUS_DB_CLIENT=pg"
|
||||
echo "DIRECTUS_DB_HOST=directus-db"
|
||||
echo "DIRECTUS_DB_PORT=5432"
|
||||
echo "DIRECTUS_API_TOKEN=$DIRECTUS_API_TOKEN"
|
||||
echo "INTERNAL_DIRECTUS_URL=http://directus:8055"
|
||||
echo "# Payload CMS"
|
||||
echo "PAYLOAD_SECRET=$PAYLOAD_SECRET"
|
||||
echo "PAYLOAD_DB_NAME=$PAYLOAD_DB_NAME"
|
||||
echo "PAYLOAD_DB_USER=$PAYLOAD_DB_USER"
|
||||
echo "PAYLOAD_DB_PASSWORD=$PAYLOAD_DB_PASSWORD"
|
||||
echo ""
|
||||
echo "# Gatekeeper"
|
||||
echo "GATEKEEPER_PASSWORD=$GATEKEEPER_PASSWORD"
|
||||
@@ -367,20 +341,22 @@ jobs:
|
||||
ssh-keyscan -H alpha.mintel.me >> ~/.ssh/known_hosts 2>/dev/null
|
||||
|
||||
# Transfer and Restart
|
||||
SITE_DIR="/home/deploy/sites/klz-cables.com"
|
||||
ssh root@alpha.mintel.me "mkdir -p $SITE_DIR/directus/schema $SITE_DIR/directus/uploads $SITE_DIR/directus/extensions"
|
||||
if [[ "$TARGET" == "production" ]]; then
|
||||
SITE_DIR="/home/deploy/sites/klz-cables.com"
|
||||
elif [[ "$TARGET" == "testing" ]]; then
|
||||
SITE_DIR="/home/deploy/sites/testing.klz-cables.com"
|
||||
else
|
||||
SITE_DIR="/home/deploy/sites/branch.klz-cables.com/${SLUG:-unknown}"
|
||||
fi
|
||||
ssh root@alpha.mintel.me "mkdir -p $SITE_DIR"
|
||||
|
||||
scp .env.deploy root@alpha.mintel.me:$SITE_DIR/$ENV_FILE
|
||||
scp docker-compose.yml root@alpha.mintel.me:$SITE_DIR/docker-compose.yml
|
||||
scp -r directus/schema root@alpha.mintel.me:$SITE_DIR/directus/
|
||||
|
||||
ssh root@alpha.mintel.me "cd $SITE_DIR && echo '${{ secrets.REGISTRY_PASS }}' | docker login registry.infra.mintel.me -u '${{ secrets.REGISTRY_USER }}' --password-stdin"
|
||||
ssh root@alpha.mintel.me "cd $SITE_DIR && docker compose -p '${{ needs.prepare.outputs.project_name }}' --env-file '$ENV_FILE' pull"
|
||||
ssh root@alpha.mintel.me "cd $SITE_DIR && docker compose -p '${{ needs.prepare.outputs.project_name }}' --env-file '$ENV_FILE' up -d --remove-orphans"
|
||||
|
||||
# Apply Directus Schema Snapshot if available
|
||||
ssh root@alpha.mintel.me "cd $SITE_DIR && if docker compose -p '${{ needs.prepare.outputs.project_name }}' --env-file '$ENV_FILE' exec -T directus ls /directus/schema/snapshot.yaml >/dev/null 2>&1; then echo '→ Applying Directus Schema Snapshot...' && docker compose -p '${{ needs.prepare.outputs.project_name }}' --env-file '$ENV_FILE' exec -T directus npx directus schema apply /directus/schema/snapshot.yaml --yes; fi"
|
||||
|
||||
ssh root@alpha.mintel.me "docker system prune -f --filter 'until=24h'"
|
||||
|
||||
- name: 🧹 Post-Deploy Cleanup (Runner)
|
||||
@@ -394,7 +370,7 @@ jobs:
|
||||
name: 🧪 Smoke Test
|
||||
needs: [prepare, deploy]
|
||||
continue-on-error: true
|
||||
if: needs.deploy.result == 'success'
|
||||
if: needs.deploy.result == 'success' && needs.prepare.outputs.target != 'branch'
|
||||
runs-on: docker
|
||||
container:
|
||||
image: catthehacker/ubuntu:act-latest
|
||||
@@ -425,9 +401,9 @@ jobs:
|
||||
# ──────────────────────────────────────────────────────────────────────────────
|
||||
lighthouse:
|
||||
name: ⚡ Lighthouse
|
||||
needs: [prepare, deploy]
|
||||
needs: [prepare, deploy, smoke_test]
|
||||
continue-on-error: true
|
||||
if: success() && needs.prepare.outputs.target != 'skip'
|
||||
if: success() && needs.prepare.outputs.target != 'skip' && needs.prepare.outputs.target != 'branch'
|
||||
runs-on: docker
|
||||
container:
|
||||
image: catthehacker/ubuntu:act-latest
|
||||
@@ -442,17 +418,13 @@ jobs:
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: 20
|
||||
|
||||
- name: 🔐 Registry Auth
|
||||
run: |
|
||||
echo "@mintel:registry=https://${{ vars.REGISTRY_HOST || 'npm.infra.mintel.me' }}" > .npmrc
|
||||
echo "//${{ vars.REGISTRY_HOST || 'npm.infra.mintel.me' }}/:_authToken=${{ secrets.REGISTRY_PASS }}" >> .npmrc
|
||||
- name: Install dependencies
|
||||
run: pnpm install --frozen-lockfile
|
||||
- name: Setup APT Cache
|
||||
uses: actions/cache@v4
|
||||
with:
|
||||
path: /var/cache/apt/archives
|
||||
key: apt-cache-${{ runner.os }}-${{ hashFiles('package.json') }}
|
||||
- name: 🔍 Install Chromium (Native & ARM64)
|
||||
run: |
|
||||
rm -f /etc/apt/apt.conf.d/docker-clean
|
||||
@@ -500,9 +472,9 @@ jobs:
|
||||
# ──────────────────────────────────────────────────────────────────────────────
|
||||
wcag:
|
||||
name: ♿ WCAG
|
||||
needs: [prepare, deploy, smoke_test]
|
||||
needs: [prepare, deploy, smoke_test, lighthouse]
|
||||
continue-on-error: true
|
||||
if: success() && needs.prepare.outputs.target != 'skip'
|
||||
if: success() && needs.prepare.outputs.target != 'skip' && needs.prepare.outputs.target != 'branch'
|
||||
runs-on: docker
|
||||
container:
|
||||
image: catthehacker/ubuntu:act-latest
|
||||
@@ -513,28 +485,17 @@ jobs:
|
||||
uses: pnpm/action-setup@v3
|
||||
with:
|
||||
version: 10
|
||||
- name: Setup Puppeteer cache
|
||||
uses: actions/cache@v4
|
||||
with:
|
||||
path: ~/.cache/puppeteer
|
||||
key: ${{ runner.os }}-puppeteer-${{ hashFiles('**/pnpm-lock.yaml') }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-puppeteer-
|
||||
- name: Setup Node.js
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: 20
|
||||
|
||||
- name: 🔐 Registry Auth
|
||||
run: |
|
||||
echo "@mintel:registry=https://${{ vars.REGISTRY_HOST || 'npm.infra.mintel.me' }}" > .npmrc
|
||||
echo "//${{ vars.REGISTRY_HOST || 'npm.infra.mintel.me' }}/:_authToken=${{ secrets.REGISTRY_PASS }}" >> .npmrc
|
||||
- name: Install dependencies
|
||||
run: pnpm install --frozen-lockfile
|
||||
- name: Setup APT Cache
|
||||
uses: actions/cache@v4
|
||||
with:
|
||||
path: /var/cache/apt/archives
|
||||
key: apt-cache-${{ runner.os }}-${{ hashFiles('package.json') }}
|
||||
- name: 🔍 Install Chromium (Native & ARM64)
|
||||
run: |
|
||||
rm -f /etc/apt/apt.conf.d/docker-clean
|
||||
@@ -582,9 +543,9 @@ jobs:
|
||||
# ──────────────────────────────────────────────────────────────────────────────
|
||||
quality_assertions:
|
||||
name: 🛡️ Quality Gates
|
||||
needs: [prepare, deploy, smoke_test]
|
||||
needs: [prepare, deploy, smoke_test, lighthouse, wcag]
|
||||
continue-on-error: true
|
||||
if: success() && needs.prepare.outputs.target != 'skip'
|
||||
if: success() && needs.prepare.outputs.target != 'skip' && needs.prepare.outputs.target != 'branch'
|
||||
runs-on: docker
|
||||
container:
|
||||
image: catthehacker/ubuntu:act-latest
|
||||
@@ -620,6 +581,11 @@ jobs:
|
||||
NEXT_PUBLIC_BASE_URL: ${{ needs.prepare.outputs.next_public_url }}
|
||||
GATEKEEPER_PASSWORD: ${{ secrets.GATEKEEPER_PASSWORD || 'klz2026' }}
|
||||
run: pnpm check:links
|
||||
- name: 🖼️ Dynamic Asset & Image Integrity Scan
|
||||
env:
|
||||
NEXT_PUBLIC_BASE_URL: ${{ needs.prepare.outputs.next_public_url }}
|
||||
GATEKEEPER_PASSWORD: ${{ secrets.GATEKEEPER_PASSWORD || 'klz2026' }}
|
||||
run: pnpm check:assets
|
||||
|
||||
# ──────────────────────────────────────────────────────────────────────────────
|
||||
# JOB 10: Notifications
|
||||
@@ -632,6 +598,10 @@ jobs:
|
||||
container:
|
||||
image: catthehacker/ubuntu:act-latest
|
||||
steps:
|
||||
- name: Setup Node.js
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: 20
|
||||
- name: 🔔 Gotify
|
||||
run: |
|
||||
STATUS="${{ needs.deploy.result }}"
|
||||
|
||||
11
.gitignore
vendored
11
.gitignore
vendored
@@ -1,18 +1,17 @@
|
||||
node_modules
|
||||
.next
|
||||
.DS_Store
|
||||
.pnpm-store
|
||||
public/uploads
|
||||
public/media
|
||||
|
||||
# Lighthouse CI
|
||||
.lighthouseci/
|
||||
lighthouserc.cjs
|
||||
.lighthouserc.json
|
||||
|
||||
# Directus
|
||||
# Legacy (Directus) cleanup
|
||||
directus/uploads
|
||||
!directus/extensions/
|
||||
!directus/schema/
|
||||
!directus/migrations/
|
||||
|
||||
.next-docker
|
||||
|
||||
@@ -26,4 +25,6 @@ directus/uploads
|
||||
|
||||
# Test Outputs
|
||||
html-errors*.json
|
||||
reference/
|
||||
reference/
|
||||
# Database backups
|
||||
backups/
|
||||
|
||||
3
.npmrc
Normal file
3
.npmrc
Normal file
@@ -0,0 +1,3 @@
|
||||
@mintel:registry=https://npm.infra.mintel.me/
|
||||
//npm.infra.mintel.me/:_authToken=${NPM_TOKEN}
|
||||
always-auth=true
|
||||
@@ -41,8 +41,7 @@ CMD ["pnpm", "dev:local"]
|
||||
# Build application
|
||||
# Stage 3: Builder (Production)
|
||||
FROM base AS builder
|
||||
RUN --mount=type=cache,target=/app/.next/cache,id=nextjs-cache \
|
||||
pnpm build
|
||||
RUN pnpm build
|
||||
|
||||
# Stage 3: Runner
|
||||
FROM registry.infra.mintel.me/mintel/runtime:v1.7.10 AS runner
|
||||
|
||||
18
Dockerfile.dev
Normal file
18
Dockerfile.dev
Normal file
@@ -0,0 +1,18 @@
|
||||
FROM node:20-alpine
|
||||
|
||||
# Install essential build tools if needed (e.g., for node-gyp)
|
||||
RUN apk add --no-cache libc6-compat python3 make g++
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
# Enable corepack for pnpm
|
||||
RUN corepack enable
|
||||
|
||||
# Pre-set the pnpm store directory
|
||||
ENV PNPM_HOME="/pnpm"
|
||||
ENV PATH="$PNPM_HOME:$PATH"
|
||||
|
||||
# Set up pnpm store configuration
|
||||
RUN pnpm config set store-dir /pnpm/store
|
||||
|
||||
EXPOSE 3000
|
||||
17
app/(payload)/admin/[[...segments]]/page.tsx
Normal file
17
app/(payload)/admin/[[...segments]]/page.tsx
Normal file
@@ -0,0 +1,17 @@
|
||||
import configPromise from '@payload-config';
|
||||
import { RootPage } from '@payloadcms/next/views';
|
||||
import { importMap } from '../importMap';
|
||||
|
||||
type Args = {
|
||||
params: Promise<{
|
||||
segments: string[];
|
||||
}>;
|
||||
searchParams: Promise<{
|
||||
[key: string]: string | string[];
|
||||
}>;
|
||||
};
|
||||
|
||||
const Page = ({ params, searchParams }: Args) =>
|
||||
RootPage({ config: configPromise, importMap, params, searchParams });
|
||||
|
||||
export default Page;
|
||||
53
app/(payload)/admin/importMap.js
Normal file
53
app/(payload)/admin/importMap.js
Normal file
@@ -0,0 +1,53 @@
|
||||
import { RscEntryLexicalCell as RscEntryLexicalCell_44fe37237e0ebf4470c9990d8cb7b07e } from '@payloadcms/richtext-lexical/rsc'
|
||||
import { RscEntryLexicalField as RscEntryLexicalField_44fe37237e0ebf4470c9990d8cb7b07e } from '@payloadcms/richtext-lexical/rsc'
|
||||
import { LexicalDiffComponent as LexicalDiffComponent_44fe37237e0ebf4470c9990d8cb7b07e } from '@payloadcms/richtext-lexical/rsc'
|
||||
import { BlocksFeatureClient as BlocksFeatureClient_e70f5e05f09f93e00b997edb1ef0c864 } from '@payloadcms/richtext-lexical/client'
|
||||
import { InlineToolbarFeatureClient as InlineToolbarFeatureClient_e70f5e05f09f93e00b997edb1ef0c864 } from '@payloadcms/richtext-lexical/client'
|
||||
import { HorizontalRuleFeatureClient as HorizontalRuleFeatureClient_e70f5e05f09f93e00b997edb1ef0c864 } from '@payloadcms/richtext-lexical/client'
|
||||
import { UploadFeatureClient as UploadFeatureClient_e70f5e05f09f93e00b997edb1ef0c864 } from '@payloadcms/richtext-lexical/client'
|
||||
import { BlockquoteFeatureClient as BlockquoteFeatureClient_e70f5e05f09f93e00b997edb1ef0c864 } from '@payloadcms/richtext-lexical/client'
|
||||
import { RelationshipFeatureClient as RelationshipFeatureClient_e70f5e05f09f93e00b997edb1ef0c864 } from '@payloadcms/richtext-lexical/client'
|
||||
import { LinkFeatureClient as LinkFeatureClient_e70f5e05f09f93e00b997edb1ef0c864 } from '@payloadcms/richtext-lexical/client'
|
||||
import { ChecklistFeatureClient as ChecklistFeatureClient_e70f5e05f09f93e00b997edb1ef0c864 } from '@payloadcms/richtext-lexical/client'
|
||||
import { OrderedListFeatureClient as OrderedListFeatureClient_e70f5e05f09f93e00b997edb1ef0c864 } from '@payloadcms/richtext-lexical/client'
|
||||
import { UnorderedListFeatureClient as UnorderedListFeatureClient_e70f5e05f09f93e00b997edb1ef0c864 } from '@payloadcms/richtext-lexical/client'
|
||||
import { IndentFeatureClient as IndentFeatureClient_e70f5e05f09f93e00b997edb1ef0c864 } from '@payloadcms/richtext-lexical/client'
|
||||
import { AlignFeatureClient as AlignFeatureClient_e70f5e05f09f93e00b997edb1ef0c864 } from '@payloadcms/richtext-lexical/client'
|
||||
import { HeadingFeatureClient as HeadingFeatureClient_e70f5e05f09f93e00b997edb1ef0c864 } from '@payloadcms/richtext-lexical/client'
|
||||
import { ParagraphFeatureClient as ParagraphFeatureClient_e70f5e05f09f93e00b997edb1ef0c864 } from '@payloadcms/richtext-lexical/client'
|
||||
import { InlineCodeFeatureClient as InlineCodeFeatureClient_e70f5e05f09f93e00b997edb1ef0c864 } from '@payloadcms/richtext-lexical/client'
|
||||
import { SuperscriptFeatureClient as SuperscriptFeatureClient_e70f5e05f09f93e00b997edb1ef0c864 } from '@payloadcms/richtext-lexical/client'
|
||||
import { SubscriptFeatureClient as SubscriptFeatureClient_e70f5e05f09f93e00b997edb1ef0c864 } from '@payloadcms/richtext-lexical/client'
|
||||
import { StrikethroughFeatureClient as StrikethroughFeatureClient_e70f5e05f09f93e00b997edb1ef0c864 } from '@payloadcms/richtext-lexical/client'
|
||||
import { UnderlineFeatureClient as UnderlineFeatureClient_e70f5e05f09f93e00b997edb1ef0c864 } from '@payloadcms/richtext-lexical/client'
|
||||
import { BoldFeatureClient as BoldFeatureClient_e70f5e05f09f93e00b997edb1ef0c864 } from '@payloadcms/richtext-lexical/client'
|
||||
import { ItalicFeatureClient as ItalicFeatureClient_e70f5e05f09f93e00b997edb1ef0c864 } from '@payloadcms/richtext-lexical/client'
|
||||
import { CollectionCards as CollectionCards_f9c02e79a4aed9a3924487c0cd4cafb1 } from '@payloadcms/next/rsc'
|
||||
|
||||
export const importMap = {
|
||||
"@payloadcms/richtext-lexical/rsc#RscEntryLexicalCell": RscEntryLexicalCell_44fe37237e0ebf4470c9990d8cb7b07e,
|
||||
"@payloadcms/richtext-lexical/rsc#RscEntryLexicalField": RscEntryLexicalField_44fe37237e0ebf4470c9990d8cb7b07e,
|
||||
"@payloadcms/richtext-lexical/rsc#LexicalDiffComponent": LexicalDiffComponent_44fe37237e0ebf4470c9990d8cb7b07e,
|
||||
"@payloadcms/richtext-lexical/client#BlocksFeatureClient": BlocksFeatureClient_e70f5e05f09f93e00b997edb1ef0c864,
|
||||
"@payloadcms/richtext-lexical/client#InlineToolbarFeatureClient": InlineToolbarFeatureClient_e70f5e05f09f93e00b997edb1ef0c864,
|
||||
"@payloadcms/richtext-lexical/client#HorizontalRuleFeatureClient": HorizontalRuleFeatureClient_e70f5e05f09f93e00b997edb1ef0c864,
|
||||
"@payloadcms/richtext-lexical/client#UploadFeatureClient": UploadFeatureClient_e70f5e05f09f93e00b997edb1ef0c864,
|
||||
"@payloadcms/richtext-lexical/client#BlockquoteFeatureClient": BlockquoteFeatureClient_e70f5e05f09f93e00b997edb1ef0c864,
|
||||
"@payloadcms/richtext-lexical/client#RelationshipFeatureClient": RelationshipFeatureClient_e70f5e05f09f93e00b997edb1ef0c864,
|
||||
"@payloadcms/richtext-lexical/client#LinkFeatureClient": LinkFeatureClient_e70f5e05f09f93e00b997edb1ef0c864,
|
||||
"@payloadcms/richtext-lexical/client#ChecklistFeatureClient": ChecklistFeatureClient_e70f5e05f09f93e00b997edb1ef0c864,
|
||||
"@payloadcms/richtext-lexical/client#OrderedListFeatureClient": OrderedListFeatureClient_e70f5e05f09f93e00b997edb1ef0c864,
|
||||
"@payloadcms/richtext-lexical/client#UnorderedListFeatureClient": UnorderedListFeatureClient_e70f5e05f09f93e00b997edb1ef0c864,
|
||||
"@payloadcms/richtext-lexical/client#IndentFeatureClient": IndentFeatureClient_e70f5e05f09f93e00b997edb1ef0c864,
|
||||
"@payloadcms/richtext-lexical/client#AlignFeatureClient": AlignFeatureClient_e70f5e05f09f93e00b997edb1ef0c864,
|
||||
"@payloadcms/richtext-lexical/client#HeadingFeatureClient": HeadingFeatureClient_e70f5e05f09f93e00b997edb1ef0c864,
|
||||
"@payloadcms/richtext-lexical/client#ParagraphFeatureClient": ParagraphFeatureClient_e70f5e05f09f93e00b997edb1ef0c864,
|
||||
"@payloadcms/richtext-lexical/client#InlineCodeFeatureClient": InlineCodeFeatureClient_e70f5e05f09f93e00b997edb1ef0c864,
|
||||
"@payloadcms/richtext-lexical/client#SuperscriptFeatureClient": SuperscriptFeatureClient_e70f5e05f09f93e00b997edb1ef0c864,
|
||||
"@payloadcms/richtext-lexical/client#SubscriptFeatureClient": SubscriptFeatureClient_e70f5e05f09f93e00b997edb1ef0c864,
|
||||
"@payloadcms/richtext-lexical/client#StrikethroughFeatureClient": StrikethroughFeatureClient_e70f5e05f09f93e00b997edb1ef0c864,
|
||||
"@payloadcms/richtext-lexical/client#UnderlineFeatureClient": UnderlineFeatureClient_e70f5e05f09f93e00b997edb1ef0c864,
|
||||
"@payloadcms/richtext-lexical/client#BoldFeatureClient": BoldFeatureClient_e70f5e05f09f93e00b997edb1ef0c864,
|
||||
"@payloadcms/richtext-lexical/client#ItalicFeatureClient": ItalicFeatureClient_e70f5e05f09f93e00b997edb1ef0c864,
|
||||
"@payloadcms/next/rsc#CollectionCards": CollectionCards_f9c02e79a4aed9a3924487c0cd4cafb1
|
||||
}
|
||||
14
app/(payload)/api/[...slug]/route.ts
Normal file
14
app/(payload)/api/[...slug]/route.ts
Normal file
@@ -0,0 +1,14 @@
|
||||
import config from '@payload-config';
|
||||
import {
|
||||
REST_GET,
|
||||
REST_OPTIONS,
|
||||
REST_PATCH,
|
||||
REST_POST,
|
||||
REST_DELETE,
|
||||
} from '@payloadcms/next/routes';
|
||||
|
||||
export const GET = REST_GET(config);
|
||||
export const POST = REST_POST(config);
|
||||
export const DELETE = REST_DELETE(config);
|
||||
export const PATCH = REST_PATCH(config);
|
||||
export const OPTIONS = REST_OPTIONS(config);
|
||||
4
app/(payload)/api/graphql/route.ts
Normal file
4
app/(payload)/api/graphql/route.ts
Normal file
@@ -0,0 +1,4 @@
|
||||
import config from '@payload-config';
|
||||
import { GRAPHQL_POST } from '@payloadcms/next/routes';
|
||||
|
||||
export const POST = GRAPHQL_POST(config);
|
||||
1
app/(payload)/custom.scss
Normal file
1
app/(payload)/custom.scss
Normal file
@@ -0,0 +1 @@
|
||||
/* Custom Payload CMS admin styles can go here. Do not import payloadcms/ui/scss/app.scss as it is handled by @payloadcms/next/css */
|
||||
31
app/(payload)/layout.tsx
Normal file
31
app/(payload)/layout.tsx
Normal file
@@ -0,0 +1,31 @@
|
||||
import configPromise from '@payload-config';
|
||||
import { RootLayout } from '@payloadcms/next/layouts';
|
||||
import React from 'react';
|
||||
|
||||
import '@payloadcms/next/css';
|
||||
import './custom.scss';
|
||||
import { handleServerFunctions } from '@payloadcms/next/layouts';
|
||||
import { importMap } from './admin/importMap';
|
||||
|
||||
type Args = {
|
||||
children: React.ReactNode;
|
||||
};
|
||||
|
||||
const serverFunction: any = async function (args: any) {
|
||||
'use server';
|
||||
return handleServerFunctions({
|
||||
...args,
|
||||
config: configPromise,
|
||||
importMap,
|
||||
});
|
||||
};
|
||||
|
||||
const Layout = ({ children }: Args) => {
|
||||
return (
|
||||
<RootLayout config={configPromise} importMap={importMap} serverFunction={serverFunction}>
|
||||
{children}
|
||||
</RootLayout>
|
||||
);
|
||||
};
|
||||
|
||||
export default Layout;
|
||||
@@ -1,10 +1,9 @@
|
||||
import { notFound } from 'next/navigation';
|
||||
import { MDXRemote } from 'next-mdx-remote/rsc';
|
||||
import { Container, Badge, Heading } from '@/components/ui';
|
||||
import { getTranslations, setRequestLocale } from 'next-intl/server';
|
||||
import { Metadata } from 'next';
|
||||
import { getPageBySlug, getAllPages } from '@/lib/pages';
|
||||
import { mdxComponents } from '@/components/blog/MDXComponents';
|
||||
import PayloadRichText from '@/components/PayloadRichText';
|
||||
import { SITE_URL } from '@/lib/schema';
|
||||
import TrackedLink from '@/components/analytics/TrackedLink';
|
||||
|
||||
@@ -15,20 +14,6 @@ interface PageProps {
|
||||
}>;
|
||||
}
|
||||
|
||||
export async function generateStaticParams() {
|
||||
const locales = ['en', 'de'];
|
||||
const params = [];
|
||||
|
||||
for (const locale of locales) {
|
||||
const pages = await getAllPages(locale);
|
||||
for (const page of pages) {
|
||||
params.push({ locale, slug: page.slug });
|
||||
}
|
||||
}
|
||||
|
||||
return params;
|
||||
}
|
||||
|
||||
export async function generateMetadata({ params }: PageProps): Promise<Metadata> {
|
||||
const { locale, slug } = await params;
|
||||
const pageData = await getPageBySlug(slug, locale);
|
||||
@@ -102,7 +87,7 @@ export default async function StandardPage({ params }: PageProps) {
|
||||
|
||||
{/* Main content with shared blog components */}
|
||||
<div className="prose prose-lg md:prose-xl max-w-none prose-headings:font-bold prose-headings:text-text-primary prose-p:text-text-secondary prose-p:leading-relaxed prose-a:text-primary prose-a:no-underline hover:prose-a:underline prose-img:rounded-2xl prose-img:shadow-2xl prose-blockquote:border-primary prose-blockquote:bg-primary/5 prose-blockquote:rounded-r-2xl prose-strong:text-primary">
|
||||
<MDXRemote source={pageData.content} components={mdxComponents} />
|
||||
<PayloadRichText data={pageData.content} />
|
||||
</div>
|
||||
|
||||
{/* Support Section */}
|
||||
|
||||
@@ -1,19 +1,19 @@
|
||||
import { notFound } from 'next/navigation';
|
||||
import JsonLd from '@/components/JsonLd';
|
||||
import { SITE_URL } from '@/lib/schema';
|
||||
import { MDXRemote } from 'next-mdx-remote/rsc';
|
||||
import { getPostBySlug, getAdjacentPosts, getReadingTime, getHeadings } from '@/lib/blog';
|
||||
import { getPostBySlug, getAdjacentPosts, getReadingTime } from '@/lib/blog';
|
||||
import { Metadata } from 'next';
|
||||
import Link from 'next/link';
|
||||
import Image from 'next/image';
|
||||
import PostNavigation from '@/components/blog/PostNavigation';
|
||||
import PowerCTA from '@/components/blog/PowerCTA';
|
||||
import TableOfContents from '@/components/blog/TableOfContents';
|
||||
import { mdxComponents } from '@/components/blog/MDXComponents';
|
||||
import { Heading } from '@/components/ui';
|
||||
import { setRequestLocale } from 'next-intl/server';
|
||||
import BlogEngagementTracker from '@/components/analytics/BlogEngagementTracker';
|
||||
|
||||
// Payload CMS Imports
|
||||
import PayloadRichText from '@/components/PayloadRichText';
|
||||
|
||||
interface BlogPostProps {
|
||||
params: Promise<{
|
||||
locale: string;
|
||||
@@ -60,7 +60,8 @@ export default async function BlogPost({ params }: BlogPostProps) {
|
||||
notFound();
|
||||
}
|
||||
|
||||
const headings = getHeadings(post.content);
|
||||
// Convert Lexical content into a plain string to estimate reading time roughly
|
||||
const rawTextContent = JSON.stringify(post.content);
|
||||
|
||||
return (
|
||||
<article className="bg-white min-h-screen font-sans selection:bg-primary/10 selection:text-primary">
|
||||
@@ -68,7 +69,7 @@ export default async function BlogPost({ params }: BlogPostProps) {
|
||||
title={post.frontmatter.title}
|
||||
slug={slug}
|
||||
category={post.frontmatter.category}
|
||||
readingTime={getReadingTime(post.content)}
|
||||
readingTime={getReadingTime(rawTextContent)}
|
||||
/>
|
||||
|
||||
{/* Featured Image Header */}
|
||||
@@ -76,12 +77,15 @@ export default async function BlogPost({ params }: BlogPostProps) {
|
||||
<div className="relative w-full h-[70vh] min-h-[500px] overflow-hidden group">
|
||||
<div className="absolute inset-0 transition-transform duration-[3s] ease-out scale-110 group-hover:scale-100">
|
||||
<Image
|
||||
src={`${post.frontmatter.featuredImage}?ar=16:9`}
|
||||
src={post.frontmatter.featuredImage.split('?')[0]}
|
||||
alt={post.frontmatter.title}
|
||||
fill
|
||||
priority
|
||||
className="object-cover"
|
||||
sizes="100vw"
|
||||
style={{
|
||||
objectPosition: `${post.frontmatter.focalX ?? 50}% ${post.frontmatter.focalY ?? 50}%`,
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
<div className="absolute inset-0 bg-gradient-to-t from-neutral-dark via-neutral-dark/40 to-transparent" />
|
||||
@@ -109,7 +113,7 @@ export default async function BlogPost({ params }: BlogPostProps) {
|
||||
})}
|
||||
</time>
|
||||
<span className="w-1 h-1 bg-white/30 rounded-full" />
|
||||
<span>{getReadingTime(post.content)} min read</span>
|
||||
<span>{getReadingTime(rawTextContent)} min read</span>
|
||||
{(new Date(post.frontmatter.date) > new Date() ||
|
||||
post.frontmatter.public === false) && (
|
||||
<>
|
||||
@@ -146,7 +150,7 @@ export default async function BlogPost({ params }: BlogPostProps) {
|
||||
})}
|
||||
</time>
|
||||
<span className="w-1 h-1 bg-neutral-400 rounded-full" />
|
||||
<span>{getReadingTime(post.content)} min read</span>
|
||||
<span>{getReadingTime(rawTextContent)} min read</span>
|
||||
{(new Date(post.frontmatter.date) > new Date() ||
|
||||
post.frontmatter.public === false) && (
|
||||
<>
|
||||
@@ -175,9 +179,9 @@ export default async function BlogPost({ params }: BlogPostProps) {
|
||||
</div>
|
||||
)}
|
||||
|
||||
{/* Main content with enhanced styling */}
|
||||
{/* Main content with enhanced styling rendering Payload Lexical */}
|
||||
<div className="prose prose-lg md:prose-xl max-w-none prose-headings:font-bold prose-headings:text-text-primary prose-p:text-text-secondary prose-p:leading-relaxed prose-a:text-primary prose-a:no-underline hover:prose-a:underline prose-img:rounded-2xl prose-img:shadow-2xl prose-blockquote:border-primary prose-blockquote:bg-primary/5 prose-blockquote:rounded-r-2xl prose-strong:text-primary">
|
||||
<MDXRemote source={post.content} components={mdxComponents} />
|
||||
<PayloadRichText data={post.content} />
|
||||
</div>
|
||||
|
||||
{/* Power CTA */}
|
||||
@@ -220,10 +224,10 @@ export default async function BlogPost({ params }: BlogPostProps) {
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{/* Right Column: Sticky Sidebar */}
|
||||
{/* Right Column: Sticky Sidebar - Temporarily Hidden without ToC */}
|
||||
<aside className="sticky-narrative-sidebar hidden lg:block">
|
||||
<div className="space-y-12">
|
||||
<TableOfContents headings={headings} locale={locale} />
|
||||
{/* Future Payload Table of Contents Implementation */}
|
||||
</div>
|
||||
</aside>
|
||||
</div>
|
||||
@@ -262,8 +266,8 @@ export default async function BlogPost({ params }: BlogPostProps) {
|
||||
'@id': `${SITE_URL}/${locale}/blog/${slug}`,
|
||||
},
|
||||
articleSection: post.frontmatter.category,
|
||||
wordCount: post.content.split(/\s+/).length,
|
||||
timeRequired: `PT${getReadingTime(post.content)}M`,
|
||||
wordCount: rawTextContent.split(/\s+/).length,
|
||||
timeRequired: `PT${getReadingTime(rawTextContent)}M`,
|
||||
} as any
|
||||
}
|
||||
/>
|
||||
|
||||
@@ -63,7 +63,7 @@ export default async function BlogIndex({ params }: BlogIndexProps) {
|
||||
{featuredPost && featuredPost.frontmatter.featuredImage && (
|
||||
<>
|
||||
<Image
|
||||
src={featuredPost.frontmatter.featuredImage}
|
||||
src={featuredPost.frontmatter.featuredImage.split('?')[0]}
|
||||
alt={featuredPost.frontmatter.title}
|
||||
fill
|
||||
className="absolute inset-0 w-full h-full object-cover opacity-40 md:opacity-60"
|
||||
@@ -164,7 +164,7 @@ export default async function BlogIndex({ params }: BlogIndexProps) {
|
||||
{post.frontmatter.featuredImage && (
|
||||
<div className="relative h-48 md:h-72 overflow-hidden">
|
||||
<Image
|
||||
src={post.frontmatter.featuredImage}
|
||||
src={post.frontmatter.featuredImage.split('?')[0]}
|
||||
alt={post.frontmatter.title}
|
||||
fill
|
||||
className="w-full h-full object-cover transition-transform duration-1000 group-hover:scale-110"
|
||||
|
||||
@@ -29,6 +29,10 @@ export async function generateMetadata(props: {
|
||||
|
||||
const baseUrl = process.env.CI ? 'http://klz.localhost' : SITE_URL;
|
||||
return {
|
||||
title: {
|
||||
template: '%s | KLZ Cables',
|
||||
default: 'KLZ Cables | Ihr Partner für Kabel & Leitungen',
|
||||
},
|
||||
metadataBase: new URL(baseUrl),
|
||||
manifest: '/manifest.webmanifest',
|
||||
alternates: {
|
||||
@@ -128,7 +132,11 @@ export default async function Layout(props: {
|
||||
const feedbackEnabled = process.env.NEXT_PUBLIC_FEEDBACK_ENABLED === 'true';
|
||||
|
||||
return (
|
||||
<html lang={safeLocale} className={`scroll-smooth overflow-x-hidden ${inter.variable}`}>
|
||||
<html
|
||||
lang={safeLocale}
|
||||
className={`scroll-smooth overflow-x-hidden ${inter.variable}`}
|
||||
data-scroll-behavior="smooth"
|
||||
>
|
||||
<head>
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossOrigin="anonymous" />
|
||||
|
||||
@@ -11,9 +11,19 @@ export default function NotFound() {
|
||||
const { trackEvent } = useAnalytics();
|
||||
|
||||
useEffect(() => {
|
||||
const errorUrl = typeof window !== 'undefined' ? window.location.pathname : 'unknown';
|
||||
trackEvent(AnalyticsEvents.ERROR, {
|
||||
type: '404_not_found',
|
||||
path: typeof window !== 'undefined' ? window.location.pathname : 'unknown',
|
||||
path: errorUrl,
|
||||
});
|
||||
|
||||
// Explicitly send the 404 to Sentry so we have visibility into broken links
|
||||
import('@sentry/nextjs').then((Sentry) => {
|
||||
Sentry.withScope((scope) => {
|
||||
scope.setTag('status_code', '404');
|
||||
scope.setTag('path', errorUrl);
|
||||
Sentry.captureMessage(`Route Not Found: ${errorUrl}`, 'warning');
|
||||
});
|
||||
});
|
||||
}, [trackEvent]);
|
||||
|
||||
|
||||
@@ -8,7 +8,6 @@ export const contentType = 'image/png';
|
||||
export const runtime = 'nodejs';
|
||||
|
||||
export default async function Image({ params }: { params: Promise<{ locale: string }> }) {
|
||||
console.log('🖼️ OG Image Handler Called');
|
||||
const { locale } = await params;
|
||||
const t = await getTranslations({ locale, namespace: 'Index.meta' });
|
||||
const fonts = await getOgFonts();
|
||||
|
||||
@@ -12,11 +12,11 @@ import { mapFileSlugToTranslated, mapSlugToFileSlug } from '@/lib/slugs';
|
||||
import { Metadata } from 'next';
|
||||
import { getTranslations, setRequestLocale } from 'next-intl/server';
|
||||
import { getProductOGImageMetadata } from '@/lib/metadata';
|
||||
import { MDXRemote } from 'next-mdx-remote/rsc';
|
||||
import Image from 'next/image';
|
||||
import Link from 'next/link';
|
||||
import { notFound } from 'next/navigation';
|
||||
import ProductEngagementTracker from '@/components/analytics/ProductEngagementTracker';
|
||||
import PayloadRichText from '@/components/PayloadRichText';
|
||||
|
||||
interface ProductPageProps {
|
||||
params: Promise<{
|
||||
@@ -53,24 +53,13 @@ export async function generateMetadata({ params }: ProductPageProps): Promise<Me
|
||||
title: categoryTitle,
|
||||
description: categoryDesc,
|
||||
alternates: {
|
||||
canonical: `${SITE_URL}/${locale}/products/${productSlug}`,
|
||||
canonical: `${SITE_URL}/${locale}/${await mapFileSlugToTranslated('products', locale)}/${productSlug}`,
|
||||
languages: {
|
||||
de: `${SITE_URL}/de/products/${await mapFileSlugToTranslated(productSlug, 'de')}`,
|
||||
en: `${SITE_URL}/en/products/${await mapFileSlugToTranslated(productSlug, 'en')}`,
|
||||
'x-default': `${SITE_URL}/en/products/${await mapFileSlugToTranslated(productSlug, 'en')}`,
|
||||
de: `${SITE_URL}/de/${await mapFileSlugToTranslated('products', 'de')}/${await mapFileSlugToTranslated(productSlug, 'de')}`,
|
||||
en: `${SITE_URL}/en/${await mapFileSlugToTranslated('products', 'en')}/${await mapFileSlugToTranslated(productSlug, 'en')}`,
|
||||
'x-default': `${SITE_URL}/en/${await mapFileSlugToTranslated('products', 'en')}/${await mapFileSlugToTranslated(productSlug, 'en')}`,
|
||||
},
|
||||
},
|
||||
openGraph: {
|
||||
title: `${categoryTitle} | KLZ Cables`,
|
||||
description: categoryDesc,
|
||||
url: `${SITE_URL}/${locale}/products/${productSlug}`,
|
||||
images: getProductOGImageMetadata(fileSlug, categoryTitle, locale),
|
||||
},
|
||||
twitter: {
|
||||
card: 'summary_large_image',
|
||||
title: `${categoryTitle} | KLZ Cables`,
|
||||
description: categoryDesc,
|
||||
},
|
||||
};
|
||||
}
|
||||
|
||||
@@ -81,15 +70,15 @@ export async function generateMetadata({ params }: ProductPageProps): Promise<Me
|
||||
title: product.frontmatter.title,
|
||||
description: product.frontmatter.description,
|
||||
alternates: {
|
||||
canonical: `${SITE_URL}/${locale}/products/${slug.join('/')}`,
|
||||
canonical: `${SITE_URL}/${locale}/${await mapFileSlugToTranslated('products', locale)}/${slug.join('/')}`,
|
||||
languages: {
|
||||
de: `${SITE_URL}/de/products/${await mapFileSlugToTranslated(slug[0], 'de')}/${await mapFileSlugToTranslated(productSlug, 'de')}`,
|
||||
en: `${SITE_URL}/en/products/${await mapFileSlugToTranslated(slug[0], 'en')}/${await mapFileSlugToTranslated(productSlug, 'en')}`,
|
||||
'x-default': `${SITE_URL}/en/products/${await mapFileSlugToTranslated(slug[0], 'en')}/${await mapFileSlugToTranslated(productSlug, 'en')}`,
|
||||
de: `${SITE_URL}/de/${await mapFileSlugToTranslated('products', 'de')}/${await mapFileSlugToTranslated(slug[0], 'de')}/${await mapFileSlugToTranslated(productSlug, 'de')}`,
|
||||
en: `${SITE_URL}/en/${await mapFileSlugToTranslated('products', 'en')}/${await mapFileSlugToTranslated(slug[0], 'en')}/${await mapFileSlugToTranslated(productSlug, 'en')}`,
|
||||
'x-default': `${SITE_URL}/en/${await mapFileSlugToTranslated('products', 'en')}/${await mapFileSlugToTranslated(slug[0], 'en')}/${await mapFileSlugToTranslated(productSlug, 'en')}`,
|
||||
},
|
||||
},
|
||||
openGraph: {
|
||||
title: `${product.frontmatter.title} | KLZ Cables`,
|
||||
title: product.frontmatter.title,
|
||||
description: product.frontmatter.description,
|
||||
type: 'website',
|
||||
url: `${SITE_URL}/${locale}/products/${slug.join('/')}`,
|
||||
@@ -97,90 +86,19 @@ export async function generateMetadata({ params }: ProductPageProps): Promise<Me
|
||||
},
|
||||
twitter: {
|
||||
card: 'summary_large_image',
|
||||
title: `${product.frontmatter.title} | KLZ Cables`,
|
||||
title: product.frontmatter.title,
|
||||
description: product.frontmatter.description,
|
||||
},
|
||||
};
|
||||
}
|
||||
|
||||
const components = {
|
||||
ProductTechnicalData,
|
||||
ProductTabs,
|
||||
p: (props: any) => (
|
||||
<p
|
||||
{...props}
|
||||
className="text-lg md:text-xl text-text-secondary leading-relaxed mb-8 font-medium"
|
||||
/>
|
||||
),
|
||||
h1: (props: any) => (
|
||||
<div className="relative mb-16">
|
||||
<h2
|
||||
{...props}
|
||||
className="text-3xl md:text-4xl font-black text-primary tracking-tighter uppercase mb-6"
|
||||
/>
|
||||
<div className="w-20 h-1.5 bg-accent rounded-full" />
|
||||
</div>
|
||||
),
|
||||
h2: (props: any) => (
|
||||
<h3
|
||||
{...props}
|
||||
className="text-2xl md:text-3xl font-black text-primary mb-10 tracking-tight uppercase"
|
||||
/>
|
||||
),
|
||||
h3: (props: any) => (
|
||||
<h4
|
||||
{...props}
|
||||
className="text-xl md:text-2xl font-black text-primary mb-8 tracking-tight uppercase"
|
||||
/>
|
||||
),
|
||||
ul: (props: any) => <ul {...props} className="list-none pl-0 mb-10" />,
|
||||
section: (props: any) => <div {...props} className="block" />,
|
||||
li: (props: any) => (
|
||||
<li className="flex items-start gap-4 group mb-4 last:mb-0">
|
||||
<div className="mt-2.5 w-2 h-2 rounded-full bg-accent flex-shrink-0 group-hover:scale-125 transition-transform" />
|
||||
<span
|
||||
{...props}
|
||||
className="text-lg md:text-xl text-text-secondary leading-relaxed font-medium"
|
||||
/>
|
||||
</li>
|
||||
),
|
||||
strong: (props: any) => <strong {...props} className="font-black text-primary" />,
|
||||
table: (props: any) => (
|
||||
<div className="overflow-x-auto my-20 rounded-[32px] border border-neutral-dark/10 shadow-xl bg-white p-1">
|
||||
<table {...props} className="min-w-full divide-y divide-neutral-dark/10" />
|
||||
</div>
|
||||
),
|
||||
th: (props: any) => (
|
||||
<th
|
||||
{...props}
|
||||
className="px-8 py-6 bg-neutral-light/50 text-left text-[10px] font-black uppercase tracking-[0.25em] text-primary/60"
|
||||
/>
|
||||
),
|
||||
td: (props: any) => (
|
||||
<td
|
||||
{...props}
|
||||
className="px-8 py-6 text-text-secondary border-t border-neutral-dark/5 text-lg md:text-xl font-medium"
|
||||
/>
|
||||
),
|
||||
hr: () => <hr className="my-24 border-t-2 border-neutral-dark/5" />,
|
||||
blockquote: (props: any) => (
|
||||
<div className="my-20 p-10 md:p-16 bg-primary-dark rounded-[40px] relative overflow-hidden group">
|
||||
<div className="absolute top-0 right-0 w-64 h-64 bg-accent/10 rounded-full -translate-y-1/2 translate-x-1/2 blur-3xl group-hover:bg-accent/20 transition-colors duration-700" />
|
||||
<div
|
||||
className="relative z-10 italic text-2xl md:text-3xl text-white/90 leading-relaxed font-black tracking-tight"
|
||||
{...props}
|
||||
/>
|
||||
</div>
|
||||
),
|
||||
};
|
||||
|
||||
export default async function ProductPage({ params }: ProductPageProps) {
|
||||
const { locale, slug } = await params;
|
||||
setRequestLocale(locale);
|
||||
const productSlug = slug[slug.length - 1];
|
||||
const t = await getTranslations('Products');
|
||||
const productsSlug = await mapFileSlugToTranslated('products', locale);
|
||||
|
||||
// Check if it's a category page
|
||||
const categories = [
|
||||
'low-voltage-cables',
|
||||
'medium-voltage-cables',
|
||||
@@ -198,14 +116,12 @@ export default async function ProductPage({ params }: ProductPageProps) {
|
||||
? t(`categories.${categoryKey}.title`)
|
||||
: fileSlug;
|
||||
|
||||
// Filter products for this category
|
||||
const filteredProducts = allProducts.filter((p) =>
|
||||
p.frontmatter.categories.some(
|
||||
(cat) => cat.toLowerCase().replace(/\s+/g, '-') === fileSlug || cat === categoryTitle,
|
||||
),
|
||||
);
|
||||
|
||||
// Get translated product slugs
|
||||
const productsWithTranslatedSlugs = await Promise.all(
|
||||
filteredProducts.map(async (p) => ({
|
||||
...p,
|
||||
@@ -220,7 +136,7 @@ export default async function ProductPage({ params }: ProductPageProps) {
|
||||
<div className="max-w-4xl animate-slide-up">
|
||||
<nav className="flex items-center mb-8 text-white/40 text-sm font-bold uppercase tracking-widest">
|
||||
<Link
|
||||
href={`/${locale}/${await mapFileSlugToTranslated('products', locale)}`}
|
||||
href={`/${locale}/${productsSlug}`}
|
||||
className="hover:text-accent transition-colors"
|
||||
>
|
||||
{t.has('breadcrumb') ? t('breadcrumb') : 'Products'}
|
||||
@@ -242,7 +158,7 @@ export default async function ProductPage({ params }: ProductPageProps) {
|
||||
{productsWithTranslatedSlugs.map((product) => (
|
||||
<Link
|
||||
key={product.slug}
|
||||
href={`/${locale}/products/${productSlug}/${product.translatedSlug}`}
|
||||
href={`/${locale}/${productsSlug}/${productSlug}/${product.translatedSlug}`}
|
||||
className="group block bg-white rounded-[32px] overflow-hidden shadow-sm hover:shadow-2xl transition-all duration-500 border border-neutral-dark/5"
|
||||
>
|
||||
<Card tag="article" className="premium-card-reset">
|
||||
@@ -256,7 +172,6 @@ export default async function ProductPage({ params }: ProductPageProps) {
|
||||
className="object-contain p-8 transition-transform duration-700 group-hover:scale-110 z-10"
|
||||
sizes="(max-width: 768px) 100vw, (max-width: 1024px) 50vw, 33vw"
|
||||
/>
|
||||
{/* Subtle reflection/shadow effect */}
|
||||
<div className="absolute bottom-4 left-1/2 -translate-x-1/2 w-2/3 h-4 bg-black/5 blur-xl rounded-full" />
|
||||
</>
|
||||
)}
|
||||
@@ -313,17 +228,14 @@ export default async function ProductPage({ params }: ProductPageProps) {
|
||||
notFound();
|
||||
}
|
||||
|
||||
// Extract technical data for schema
|
||||
const technicalDataMatch = product.content.match(
|
||||
/technicalData=\{<ProductTechnicalData data=\{(.*?)\}\s*\/>\}/s,
|
||||
);
|
||||
// Extract technical data natively from the Lexical AST for Schema.org
|
||||
let technicalItems = [];
|
||||
if (technicalDataMatch) {
|
||||
try {
|
||||
const data = JSON.parse(technicalDataMatch[1]);
|
||||
technicalItems = data.technicalItems || [];
|
||||
} catch (e) {
|
||||
console.error('Failed to parse technical data for schema', e);
|
||||
if (product.content?.root?.children) {
|
||||
const productTabsBlock = product.content.root.children.find(
|
||||
(node: any) => node.type === 'block' && node.fields?.blockType === 'productTabs',
|
||||
);
|
||||
if (productTabsBlock && productTabsBlock.fields?.technicalItems) {
|
||||
technicalItems = productTabsBlock.fields.technicalItems;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -338,6 +250,37 @@ export default async function ProductPage({ params }: ProductPageProps) {
|
||||
? t(`categories.${categoryKey}.title`)
|
||||
: categoryFileSlug;
|
||||
|
||||
// Split content into Description and Technical Data
|
||||
const rootChildren = product.content?.root?.children || [];
|
||||
const technicalBlocks = rootChildren.filter(
|
||||
(node: any) =>
|
||||
node.type === 'block' &&
|
||||
(node.fields?.blockType === 'productTabs' ||
|
||||
node.fields?.blockType === 'productTechnicalData'),
|
||||
);
|
||||
const descriptionChildren = rootChildren.filter(
|
||||
(node: any) =>
|
||||
!(
|
||||
node.type === 'block' &&
|
||||
(node.fields?.blockType === 'productTabs' ||
|
||||
node.fields?.blockType === 'productTechnicalData')
|
||||
),
|
||||
);
|
||||
|
||||
const descriptionContent = {
|
||||
root: {
|
||||
...product.content.root,
|
||||
children: descriptionChildren,
|
||||
},
|
||||
};
|
||||
|
||||
const technicalContent = {
|
||||
root: {
|
||||
...product.content.root,
|
||||
children: technicalBlocks,
|
||||
},
|
||||
};
|
||||
|
||||
const sidebar = (
|
||||
<ProductSidebar
|
||||
productName={product.frontmatter.title}
|
||||
@@ -346,23 +289,6 @@ export default async function ProductPage({ params }: ProductPageProps) {
|
||||
/>
|
||||
);
|
||||
|
||||
const productComponents = {
|
||||
...components,
|
||||
ProductTabs: (props: any) => <ProductTabs {...props} sidebar={sidebar} />,
|
||||
};
|
||||
|
||||
// Pre-process content to convert raw HTML tags to Markdown so they use our custom components
|
||||
const processedContent = product.content
|
||||
.replace(/<h1[^>]*>(.*?)<\/h1>/gs, '\n# $1\n') // Maps to our custom h1 (which renders h2)
|
||||
.replace(/<h2[^>]*>(.*?)<\/h2>/gs, '\n## $1\n') // Maps to our custom h2 (which renders h3)
|
||||
.replace(/<h3[^>]*>(.*?)<\/h3>/gs, '\n### $1\n') // Maps to our custom h3 (which renders h4)
|
||||
.replace(/<p[^>]*>(.*?)<\/p>/gs, '\n$1\n')
|
||||
.replace(/<ul[^>]*>(.*?)<\/ul>/gs, '\n$1\n')
|
||||
.replace(/<li[^>]*>(.*?)<\/li>/gs, '\n- $1\n')
|
||||
.replace(/<strong[^>]*>(.*?)<\/strong>/gs, '**$1**')
|
||||
.replace(/<section[^>]*>/gs, '')
|
||||
.replace(/<\/section>/gs, '');
|
||||
|
||||
return (
|
||||
<div className="flex flex-col min-h-screen bg-white relative">
|
||||
{/* Product Hero */}
|
||||
@@ -381,14 +307,14 @@ export default async function ProductPage({ params }: ProductPageProps) {
|
||||
<div className="max-w-4xl animate-slide-up">
|
||||
<nav className="flex items-center mb-12 text-white/40 text-[10px] font-black uppercase tracking-[0.2em]">
|
||||
<Link
|
||||
href={`/${locale}/${await mapFileSlugToTranslated('products', locale)}`}
|
||||
href={`/${locale}/${productsSlug}`}
|
||||
className="hover:text-accent transition-colors"
|
||||
>
|
||||
{t.has('breadcrumb') ? t('breadcrumb') : 'Products'}
|
||||
</Link>
|
||||
<span className="mx-4 opacity-20">/</span>
|
||||
<Link
|
||||
href={`/${locale}/products/${categorySlug}`}
|
||||
href={`/${locale}/${productsSlug}/${categorySlug}`}
|
||||
className="hover:text-accent transition-colors"
|
||||
>
|
||||
{categoryTitle}
|
||||
@@ -442,6 +368,7 @@ export default async function ProductPage({ params }: ProductPageProps) {
|
||||
src={product.frontmatter.images[0]}
|
||||
alt={product.frontmatter.title}
|
||||
fill
|
||||
sizes="(max-width: 768px) 100vw, (max-width: 1200px) 50vw, 33vw"
|
||||
className="object-contain transition-transform duration-1000 hover:scale-105"
|
||||
priority
|
||||
/>
|
||||
@@ -460,6 +387,7 @@ export default async function ProductPage({ params }: ProductPageProps) {
|
||||
src={img}
|
||||
alt=""
|
||||
fill
|
||||
sizes="128px"
|
||||
className="object-contain p-4 transition-transform duration-700 group-hover:scale-110"
|
||||
/>
|
||||
</div>
|
||||
@@ -470,64 +398,74 @@ export default async function ProductPage({ params }: ProductPageProps) {
|
||||
</div>
|
||||
)}
|
||||
|
||||
<div className="relative">
|
||||
<div className="w-full">
|
||||
{/* Main Content Area */}
|
||||
<div className="max-w-none">
|
||||
<MDXRemote source={processedContent} components={productComponents} />
|
||||
<div className="grid grid-cols-1 lg:grid-cols-12 gap-12 lg:gap-20">
|
||||
{/* Description Area Next to Sidebar */}
|
||||
<div className="lg:col-span-8">
|
||||
<div className="max-w-none prose prose-primary prose-lg md:prose-xl mb-16 pb-16 border-b border-neutral-dark/5">
|
||||
<PayloadRichText data={descriptionContent} />
|
||||
</div>
|
||||
|
||||
{/* Datasheet Download Section - Only for Medium Voltage for now */}
|
||||
{categoryFileSlug === 'medium-voltage-cables' && datasheetPath && (
|
||||
<div className="mt-24 pt-24 border-t-2 border-neutral-dark/5">
|
||||
<div className="mb-12">
|
||||
<h2 className="text-3xl md:text-4xl font-black text-primary tracking-tighter uppercase mb-4">
|
||||
{t('downloadDatasheet')}
|
||||
</h2>
|
||||
<div className="h-1.5 w-24 bg-accent rounded-full" />
|
||||
</div>
|
||||
<DatasheetDownload datasheetPath={datasheetPath} />
|
||||
</div>
|
||||
)}
|
||||
|
||||
{/* Structured Data */}
|
||||
<JsonLd
|
||||
id={`jsonld-${product.slug}`}
|
||||
data={
|
||||
{
|
||||
'@context': 'https://schema.org',
|
||||
'@type': 'Product',
|
||||
name: product.frontmatter.title,
|
||||
description: product.frontmatter.description,
|
||||
sku: product.frontmatter.sku || product.slug.toUpperCase(),
|
||||
image: product.frontmatter.images?.[0]
|
||||
? `${SITE_URL}${product.frontmatter.images[0]}`
|
||||
: undefined,
|
||||
brand: {
|
||||
'@type': 'Brand',
|
||||
name: 'KLZ Cables',
|
||||
},
|
||||
offers: {
|
||||
'@type': 'Offer',
|
||||
availability: 'https://schema.org/InStock',
|
||||
priceCurrency: 'EUR',
|
||||
url: `${SITE_URL}/${locale}/products/${slug.join('/')}`,
|
||||
itemCondition: 'https://schema.org/NewCondition',
|
||||
},
|
||||
additionalProperty: technicalItems.map((item: any) => ({
|
||||
'@type': 'PropertyValue',
|
||||
name: item.label,
|
||||
value: item.value,
|
||||
})),
|
||||
category: product.frontmatter.categories.join(', '),
|
||||
mainEntityOfPage: {
|
||||
'@type': 'WebPage',
|
||||
'@id': `${SITE_URL}/${locale}/products/${slug.join('/')}`,
|
||||
},
|
||||
} as any
|
||||
}
|
||||
/>
|
||||
</div>
|
||||
|
||||
{/* Sidebar Column */}
|
||||
<div className="lg:col-span-4 lg:sticky lg:top-32 h-fit">{sidebar}</div>
|
||||
</div>
|
||||
|
||||
{/* Full-width Technical Data Below */}
|
||||
<div className="mt-16 pt-16 border-t-0">
|
||||
<div className="max-w-none prose prose-primary prose-lg md:prose-xl">
|
||||
<PayloadRichText data={technicalContent} />
|
||||
</div>
|
||||
|
||||
{/* Datasheet Download Section */}
|
||||
{categoryFileSlug === 'medium-voltage-cables' && datasheetPath && (
|
||||
<div className="mt-16 pt-16 border-t-2 border-neutral-dark/5">
|
||||
<div className="mb-8">
|
||||
<h2 className="text-3xl md:text-4xl font-black text-primary tracking-tighter uppercase mb-4">
|
||||
{t('downloadDatasheet')}
|
||||
</h2>
|
||||
<div className="h-1.5 w-24 bg-accent rounded-full" />
|
||||
</div>
|
||||
<DatasheetDownload datasheetPath={datasheetPath} />
|
||||
</div>
|
||||
)}
|
||||
|
||||
{/* Structured Data (Hidden) */}
|
||||
<JsonLd
|
||||
id={`jsonld-${product.slug}`}
|
||||
data={
|
||||
{
|
||||
'@context': 'https://schema.org',
|
||||
'@type': 'Product',
|
||||
name: product.frontmatter.title,
|
||||
description: product.frontmatter.description,
|
||||
sku: product.frontmatter.sku || product.slug.toUpperCase(),
|
||||
image: product.frontmatter.images?.[0]
|
||||
? `${SITE_URL}${product.frontmatter.images[0]}`
|
||||
: undefined,
|
||||
brand: {
|
||||
'@type': 'Brand',
|
||||
name: 'KLZ Cables',
|
||||
},
|
||||
offers: {
|
||||
'@type': 'Offer',
|
||||
availability: 'https://schema.org/InStock',
|
||||
priceCurrency: 'EUR',
|
||||
url: `${SITE_URL}/${locale}/${await mapFileSlugToTranslated('products', locale)}/${slug.join('/')}`,
|
||||
itemCondition: 'https://schema.org/NewCondition',
|
||||
},
|
||||
additionalProperty: technicalItems.map((item: any) => ({
|
||||
'@type': 'PropertyValue',
|
||||
name: item.label,
|
||||
value: item.value,
|
||||
})),
|
||||
category: product.frontmatter.categories.join(', '),
|
||||
mainEntityOfPage: {
|
||||
'@type': 'WebPage',
|
||||
'@id': `${SITE_URL}/${locale}/${await mapFileSlugToTranslated('products', locale)}/${slug.join('/')}`,
|
||||
},
|
||||
} as any
|
||||
}
|
||||
/>
|
||||
</div>
|
||||
|
||||
{/* Related Products Section */}
|
||||
|
||||
@@ -236,7 +236,7 @@ export default async function ProductsPage({ params }: ProductsPageProps) {
|
||||
className="group whitespace-nowrap w-full md:w-auto md:h-16 md:px-10 md:text-xl"
|
||||
>
|
||||
{t('cta.button')}
|
||||
<span className="ml-4 transition-transform group-hover:translate-x-2">
|
||||
<span className="ml-2 md:ml-4 transition-transform group-hover:translate-x-2">
|
||||
→
|
||||
</span>
|
||||
</Button>
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
'use server';
|
||||
|
||||
import client, { ensureAuthenticated } from '@/lib/directus';
|
||||
import { createItem } from '@directus/sdk';
|
||||
import { sendEmail } from '@/lib/mail/mailer';
|
||||
import { render, ContactFormNotification, ConfirmationMessage } from '@mintel/mail';
|
||||
import React from 'react';
|
||||
@@ -41,31 +39,30 @@ export async function sendContactFormAction(formData: FormData) {
|
||||
return { success: false, error: 'Missing required fields' };
|
||||
}
|
||||
|
||||
// 1. Save to Directus
|
||||
// 1. Save to CMS
|
||||
try {
|
||||
await ensureAuthenticated();
|
||||
if (productName) {
|
||||
await client.request(
|
||||
createItem('product_requests', {
|
||||
product_name: productName,
|
||||
email,
|
||||
message,
|
||||
}),
|
||||
);
|
||||
logger.info('Product request stored in Directus');
|
||||
} else {
|
||||
await client.request(
|
||||
createItem('contact_submissions', {
|
||||
name,
|
||||
email,
|
||||
message,
|
||||
}),
|
||||
);
|
||||
logger.info('Contact submission stored in Directus');
|
||||
}
|
||||
const { getPayload } = await import('payload');
|
||||
const configPromise = (await import('@payload-config')).default;
|
||||
const payload = await getPayload({ config: configPromise });
|
||||
|
||||
await payload.create({
|
||||
collection: 'form-submissions',
|
||||
data: {
|
||||
name,
|
||||
email,
|
||||
message,
|
||||
type: productName ? 'product_quote' : 'contact',
|
||||
productName: productName || undefined,
|
||||
},
|
||||
});
|
||||
|
||||
logger.info('Successfully saved form submission to Payload CMS', {
|
||||
type: productName ? 'product_quote' : 'contact',
|
||||
email,
|
||||
});
|
||||
} catch (error) {
|
||||
logger.error('Failed to store submission in Directus', { error });
|
||||
services.errors.captureException(error, { action: 'directus_store_submission' });
|
||||
logger.error('Failed to store submission in Payload CMS', { error });
|
||||
services.errors.captureException(error, { action: 'payload_store_submission' });
|
||||
}
|
||||
|
||||
// 2. Send Emails
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
import { checkHealth } from '@/lib/directus';
|
||||
import { NextResponse } from 'next/server';
|
||||
|
||||
export const dynamic = 'force-dynamic';
|
||||
|
||||
export async function GET() {
|
||||
const health = await checkHealth();
|
||||
return NextResponse.json(health, { status: health.status === 'ok' ? 200 : 503 });
|
||||
// Payload is embedded within the Next.js app, so if this route responds, the CMS is up.
|
||||
// Further DB health checks can be implemented via Payload Local API later.
|
||||
return NextResponse.json({ status: 'ok', message: 'Payload CMS is embedded.' }, { status: 200 });
|
||||
}
|
||||
|
||||
@@ -17,6 +17,11 @@ export async function POST(request: NextRequest) {
|
||||
const logger = services.logger.child({ component: 'sentry-relay' });
|
||||
|
||||
try {
|
||||
// Prevent 403 Forbidden console noise in local dev
|
||||
if (process.env.NODE_ENV === 'development') {
|
||||
return NextResponse.json({ status: 'ignored_in_dev' }, { status: 200 });
|
||||
}
|
||||
|
||||
const envelope = await request.text();
|
||||
|
||||
// Sentry envelopes can contain multiple parts separated by newlines
|
||||
|
||||
@@ -3,6 +3,7 @@ import { MetadataRoute } from 'next';
|
||||
import { getAllProductsMetadata } from '@/lib/mdx';
|
||||
import { getAllPostsMetadata } from '@/lib/blog';
|
||||
import { getAllPagesMetadata } from '@/lib/pages';
|
||||
import { mapFileSlugToTranslated } from '@/lib/slugs';
|
||||
|
||||
export const revalidate = 3600; // Revalidate every hour
|
||||
|
||||
@@ -12,28 +13,45 @@ export default async function sitemap(): Promise<MetadataRoute.Sitemap> {
|
||||
: config.baseUrl || 'https://klz-cables.com';
|
||||
const locales = ['de', 'en'];
|
||||
|
||||
const routes = [
|
||||
'',
|
||||
'/blog',
|
||||
'/contact',
|
||||
'/team',
|
||||
'/products',
|
||||
'/products/low-voltage-cables',
|
||||
'/products/medium-voltage-cables',
|
||||
'/products/high-voltage-cables',
|
||||
'/products/solar-cables',
|
||||
];
|
||||
|
||||
const sitemapEntries: MetadataRoute.Sitemap = [];
|
||||
|
||||
for (const locale of locales) {
|
||||
// Helper to generate localized URL Segment
|
||||
const getLocalizedRoute = async (pageKey: string) => {
|
||||
if (pageKey === '') return '';
|
||||
const translated = await mapFileSlugToTranslated(pageKey, locale);
|
||||
return `/${translated}`;
|
||||
};
|
||||
|
||||
// Static routes
|
||||
for (const route of routes) {
|
||||
const staticPages = ['', 'blog', 'contact', 'team', 'products'];
|
||||
for (const page of staticPages) {
|
||||
const localizedRoute = await getLocalizedRoute(page);
|
||||
sitemapEntries.push({
|
||||
url: `${baseUrl}/${locale}${route}`,
|
||||
url: `${baseUrl}/${locale}${localizedRoute}`,
|
||||
lastModified: new Date(),
|
||||
changeFrequency: route === '' ? 'daily' : 'weekly',
|
||||
priority: route === '' ? 1 : 0.8,
|
||||
changeFrequency: page === '' ? 'daily' : 'weekly',
|
||||
priority: page === '' ? 1 : 0.8,
|
||||
});
|
||||
}
|
||||
|
||||
// Categories routes
|
||||
const productCategories = [
|
||||
'low-voltage-cables',
|
||||
'medium-voltage-cables',
|
||||
'high-voltage-cables',
|
||||
'solar-cables',
|
||||
];
|
||||
|
||||
const translatedProducts = await mapFileSlugToTranslated('products', locale);
|
||||
|
||||
for (const category of productCategories) {
|
||||
const translatedCategory = await mapFileSlugToTranslated(category, locale);
|
||||
sitemapEntries.push({
|
||||
url: `${baseUrl}/${locale}/${translatedProducts}/${translatedCategory}`,
|
||||
lastModified: new Date(),
|
||||
changeFrequency: 'weekly',
|
||||
priority: 0.8,
|
||||
});
|
||||
}
|
||||
|
||||
@@ -44,8 +62,11 @@ export default async function sitemap(): Promise<MetadataRoute.Sitemap> {
|
||||
|
||||
const category =
|
||||
product.frontmatter.categories[0]?.toLowerCase().replace(/\s+/g, '-') || 'other';
|
||||
const translatedCategory = await mapFileSlugToTranslated(category, locale);
|
||||
const translatedSlug = await mapFileSlugToTranslated(product.slug, locale);
|
||||
|
||||
sitemapEntries.push({
|
||||
url: `${baseUrl}/${locale}/products/${category}/${product.slug}`,
|
||||
url: `${baseUrl}/${locale}/${translatedProducts}/${translatedCategory}/${translatedSlug}`,
|
||||
lastModified: new Date(),
|
||||
changeFrequency: 'monthly',
|
||||
priority: 0.7,
|
||||
@@ -53,12 +74,15 @@ export default async function sitemap(): Promise<MetadataRoute.Sitemap> {
|
||||
}
|
||||
|
||||
// Blog posts
|
||||
const translatedBlog = await mapFileSlugToTranslated('blog', locale);
|
||||
const postsMetadata = await getAllPostsMetadata(locale);
|
||||
for (const post of postsMetadata) {
|
||||
if (!post.frontmatter || !post.slug) continue;
|
||||
|
||||
const translatedSlug = await mapFileSlugToTranslated(post.slug, locale);
|
||||
|
||||
sitemapEntries.push({
|
||||
url: `${baseUrl}/${locale}/blog/${post.slug}`,
|
||||
url: `${baseUrl}/${locale}/${translatedBlog}/${translatedSlug}`,
|
||||
lastModified: new Date(post.frontmatter.date),
|
||||
changeFrequency: 'monthly',
|
||||
priority: 0.6,
|
||||
@@ -70,8 +94,10 @@ export default async function sitemap(): Promise<MetadataRoute.Sitemap> {
|
||||
for (const page of pagesMetadata) {
|
||||
if (!page.slug) continue;
|
||||
|
||||
const translatedSlug = await mapFileSlugToTranslated(page.slug, locale);
|
||||
|
||||
sitemapEntries.push({
|
||||
url: `${baseUrl}/${locale}/${page.slug}`,
|
||||
url: `${baseUrl}/${locale}/${translatedSlug}`,
|
||||
lastModified: new Date(),
|
||||
changeFrequency: 'monthly',
|
||||
priority: 0.5,
|
||||
|
||||
@@ -19,6 +19,11 @@ export async function POST(request: NextRequest) {
|
||||
const logger = services.logger.child({ component: 'umami-smart-proxy' });
|
||||
|
||||
try {
|
||||
// Prevent 400 Bad Request console noise in local dev
|
||||
if (process.env.NODE_ENV === 'development') {
|
||||
return NextResponse.json({ status: 'ignored_in_dev' }, { status: 200 });
|
||||
}
|
||||
|
||||
const body = await request.json();
|
||||
const { type, payload } = body;
|
||||
|
||||
|
||||
39
check-data.ts
Normal file
39
check-data.ts
Normal file
@@ -0,0 +1,39 @@
|
||||
import { getPayload } from 'payload';
|
||||
import configPromise from '@payload-config';
|
||||
|
||||
async function checkData() {
|
||||
try {
|
||||
const payload = await getPayload({ config: configPromise });
|
||||
|
||||
const { docs: posts } = await payload.find({ collection: 'posts', limit: 3 });
|
||||
const { docs: products } = await payload.find({ collection: 'products', limit: 3 });
|
||||
const { docs: pages } = await payload.find({ collection: 'pages', limit: 3 });
|
||||
|
||||
const checkDocs = (name: string, docs: any[]) => {
|
||||
console.log(`\n----- ${name.toUpperCase()} -----`);
|
||||
docs.forEach((p) => {
|
||||
console.log(`ID: ${p.id}, Slug: ${p.slug}`);
|
||||
if (Array.isArray(p.content)) {
|
||||
console.log(
|
||||
'Content is ARRAY (Slate format!)',
|
||||
JSON.stringify(p.content).substring(0, 100),
|
||||
);
|
||||
} else if (p.content && p.content.root) {
|
||||
console.log('Content is Lexical format.');
|
||||
} else {
|
||||
console.log('Content is UNKNOWN format.');
|
||||
console.log(JSON.stringify(p.content).substring(0, 100));
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
checkDocs('posts', posts);
|
||||
checkDocs('products', products);
|
||||
checkDocs('pages', pages);
|
||||
} catch (err) {
|
||||
console.error(err);
|
||||
}
|
||||
process.exit(0);
|
||||
}
|
||||
|
||||
checkData();
|
||||
@@ -38,6 +38,7 @@ export default function Footer() {
|
||||
alt="KLZ Vertriebs GmbH"
|
||||
width={150}
|
||||
height={40}
|
||||
style={{ width: 'auto' }}
|
||||
className="h-10 w-auto transition-transform duration-500 group-hover:scale-110"
|
||||
/>
|
||||
</Link>
|
||||
@@ -246,7 +247,6 @@ export default function Footer() {
|
||||
<div className="flex gap-8">
|
||||
<Link
|
||||
href="/en"
|
||||
locale="en"
|
||||
className="hover:text-white transition-colors"
|
||||
onClick={() =>
|
||||
trackEvent(AnalyticsEvents.TOGGLE_SWITCH, {
|
||||
@@ -261,7 +261,6 @@ export default function Footer() {
|
||||
</Link>
|
||||
<Link
|
||||
href="/de"
|
||||
locale="de"
|
||||
className="hover:text-white transition-colors"
|
||||
onClick={() =>
|
||||
trackEvent(AnalyticsEvents.TOGGLE_SWITCH, {
|
||||
|
||||
@@ -84,11 +84,47 @@ export default function Header() {
|
||||
}
|
||||
}, [isMobileMenuOpen]);
|
||||
|
||||
// Function to get path for a different locale
|
||||
// Function to get path for a different locale with segment translation
|
||||
const getPathForLocale = (newLocale: string) => {
|
||||
const segments = pathname.split('/');
|
||||
const originLocale = segments[1] || 'en';
|
||||
|
||||
// Translation map for localized URL segments
|
||||
const segmentMap: Record<string, Record<string, string>> = {
|
||||
de: {
|
||||
produkte: 'products',
|
||||
impressum: 'legal-notice',
|
||||
datenschutz: 'privacy-policy',
|
||||
agbs: 'terms',
|
||||
niederspannungskabel: 'low-voltage-cables',
|
||||
mittelspannungskabel: 'medium-voltage-cables',
|
||||
hochspannungskabel: 'high-voltage-cables',
|
||||
solarkabel: 'solar-cables',
|
||||
},
|
||||
en: {
|
||||
products: 'produkte',
|
||||
'legal-notice': 'impressum',
|
||||
'privacy-policy': 'datenschutz',
|
||||
terms: 'agbs',
|
||||
'low-voltage-cables': 'niederspannungskabel',
|
||||
'medium-voltage-cables': 'mittelspannungskabel',
|
||||
'high-voltage-cables': 'hochspannungskabel',
|
||||
'solar-cables': 'solarkabel',
|
||||
},
|
||||
};
|
||||
|
||||
// Replace the locale segment
|
||||
segments[1] = newLocale;
|
||||
return segments.join('/');
|
||||
|
||||
// Translate other segments if they exist in our map
|
||||
const translatedSegments = segments.map((segment, index) => {
|
||||
if (index <= 1) return segment; // Skip empty and locale segments
|
||||
|
||||
const mapping = segmentMap[originLocale as keyof typeof segmentMap];
|
||||
return mapping && mapping[segment] ? mapping[segment] : segment;
|
||||
});
|
||||
|
||||
return translatedSegments.join('/');
|
||||
};
|
||||
|
||||
const menuItems = [
|
||||
@@ -132,6 +168,7 @@ export default function Header() {
|
||||
alt={t('home')}
|
||||
width={120}
|
||||
height={120}
|
||||
style={{ width: 'auto' }}
|
||||
className="h-10 md:h-14 w-auto transition-all duration-500 group-hover:scale-110"
|
||||
priority
|
||||
/>
|
||||
|
||||
236
components/PayloadRichText.tsx
Normal file
236
components/PayloadRichText.tsx
Normal file
@@ -0,0 +1,236 @@
|
||||
import { defaultJSXConverters, RichText } from '@payloadcms/richtext-lexical/react';
|
||||
import type { JSXConverters } from '@payloadcms/richtext-lexical/react';
|
||||
import Image from 'next/image';
|
||||
|
||||
// Import all custom React components that were previously mapped via MDX
|
||||
import StickyNarrative from '@/components/blog/StickyNarrative';
|
||||
import ComparisonGrid from '@/components/blog/ComparisonGrid';
|
||||
import VisualLinkPreview from '@/components/blog/VisualLinkPreview';
|
||||
import TechnicalGrid from '@/components/blog/TechnicalGrid';
|
||||
import HighlightBox from '@/components/blog/HighlightBox';
|
||||
import AnimatedImage from '@/components/blog/AnimatedImage';
|
||||
import ChatBubble from '@/components/blog/ChatBubble';
|
||||
import PowerCTA from '@/components/blog/PowerCTA';
|
||||
import { Callout } from '@/components/ui/Callout';
|
||||
import Stats from '@/components/blog/Stats';
|
||||
import SplitHeading from '@/components/blog/SplitHeading';
|
||||
import ProductTabs from '@/components/ProductTabs';
|
||||
import ProductTechnicalData from '@/components/ProductTechnicalData';
|
||||
|
||||
const jsxConverters: JSXConverters = {
|
||||
...defaultJSXConverters,
|
||||
// Let the default converters handle text nodes to preserve valid formatting
|
||||
// If the text node contains raw HTML (from messy migrations), render it as HTML instead of escaping it
|
||||
text: ({ node }: any) => {
|
||||
const text = node.text;
|
||||
if (text && (text.includes('<') || text.includes('data-start'))) {
|
||||
return <span dangerouslySetInnerHTML={{ __html: text }} />;
|
||||
}
|
||||
|
||||
if (node.format === 1) return <strong>{text}</strong>;
|
||||
if (node.format === 2) return <em>{text}</em>;
|
||||
return <span>{text}</span>;
|
||||
},
|
||||
// Scale headings to prevent multiple H1s (H1 -> H2, etc)
|
||||
h1: ({ children }: any) => <h2 className="text-3xl md:text-4xl font-bold my-6">{children}</h2>,
|
||||
h2: ({ children }: any) => <h3 className="text-2xl md:text-3xl font-bold my-5">{children}</h3>,
|
||||
h3: ({ children }: any) => <h4 className="text-xl md:text-2xl font-bold my-4">{children}</h4>,
|
||||
|
||||
blocks: {
|
||||
// ... preserved existing blocks ...
|
||||
// Map the custom Payload Blocks created in src/payload/blocks to their React components
|
||||
// Payload Lexical exposes blocks using the 'block-[slug]' pattern
|
||||
stickyNarrative: ({ node }: any) => (
|
||||
<StickyNarrative title={node.fields.title} items={node.fields.items} />
|
||||
),
|
||||
'block-stickyNarrative': ({ node }: any) => (
|
||||
<StickyNarrative title={node.fields.title} items={node.fields.items} />
|
||||
),
|
||||
comparisonGrid: ({ node }: any) => (
|
||||
<ComparisonGrid
|
||||
title={node.fields.title}
|
||||
leftLabel={node.fields.leftLabel}
|
||||
rightLabel={node.fields.rightLabel}
|
||||
items={node.fields.items}
|
||||
/>
|
||||
),
|
||||
'block-comparisonGrid': ({ node }: any) => (
|
||||
<ComparisonGrid
|
||||
title={node.fields.title}
|
||||
leftLabel={node.fields.leftLabel}
|
||||
rightLabel={node.fields.rightLabel}
|
||||
items={node.fields.items}
|
||||
/>
|
||||
),
|
||||
visualLinkPreview: ({ node }: any) => (
|
||||
<VisualLinkPreview
|
||||
url={node.fields.url}
|
||||
title={node.fields.title}
|
||||
summary={node.fields.summary}
|
||||
image={node.fields.image?.sizes?.card?.url || node.fields.image?.url}
|
||||
/>
|
||||
),
|
||||
'block-visualLinkPreview': ({ node }: any) => (
|
||||
<VisualLinkPreview
|
||||
url={node.fields.url}
|
||||
title={node.fields.title}
|
||||
summary={node.fields.summary}
|
||||
image={node.fields.image?.sizes?.card?.url || node.fields.image?.url}
|
||||
/>
|
||||
),
|
||||
technicalGrid: ({ node }: any) => (
|
||||
<TechnicalGrid title={node.fields.title} items={node.fields.items} />
|
||||
),
|
||||
'block-technicalGrid': ({ node }: any) => {
|
||||
console.log('[PayloadRichText] Rendering block-technicalGrid:', node.fields.title);
|
||||
return <TechnicalGrid title={node.fields.title} items={node.fields.items} />;
|
||||
},
|
||||
highlightBox: ({ node }: any) => (
|
||||
<HighlightBox title={node.fields.title} color={node.fields.color}>
|
||||
<RichText data={node.fields.content} converters={jsxConverters} />
|
||||
</HighlightBox>
|
||||
),
|
||||
'block-highlightBox': ({ node }: any) => (
|
||||
<HighlightBox title={node.fields.title} color={node.fields.color}>
|
||||
<RichText data={node.fields.content} converters={jsxConverters} />
|
||||
</HighlightBox>
|
||||
),
|
||||
animatedImage: ({ node }: any) => (
|
||||
<AnimatedImage
|
||||
src={node.fields.src}
|
||||
alt={node.fields.alt}
|
||||
width={node.fields.width}
|
||||
height={node.fields.height}
|
||||
/>
|
||||
),
|
||||
'block-animatedImage': ({ node }: any) => (
|
||||
<AnimatedImage
|
||||
src={node.fields.src}
|
||||
alt={node.fields.alt}
|
||||
width={node.fields.width}
|
||||
height={node.fields.height}
|
||||
/>
|
||||
),
|
||||
chatBubble: ({ node }: any) => (
|
||||
<ChatBubble
|
||||
author={node.fields.author}
|
||||
avatar={node.fields.avatar}
|
||||
role={node.fields.role}
|
||||
align={node.fields.align}
|
||||
>
|
||||
<RichText data={node.fields.content} converters={jsxConverters} />
|
||||
</ChatBubble>
|
||||
),
|
||||
'block-chatBubble': ({ node }: any) => (
|
||||
<ChatBubble
|
||||
author={node.fields.author}
|
||||
avatar={node.fields.avatar}
|
||||
role={node.fields.role}
|
||||
align={node.fields.align}
|
||||
>
|
||||
<RichText data={node.fields.content} converters={jsxConverters} />
|
||||
</ChatBubble>
|
||||
),
|
||||
powerCTA: ({ node }: any) => <PowerCTA locale={node.fields.locale} />,
|
||||
'block-powerCTA': ({ node }: any) => <PowerCTA locale={node.fields.locale} />,
|
||||
callout: ({ node }: any) => (
|
||||
<Callout type={node.fields.type} title={node.fields.title}>
|
||||
<RichText data={node.fields.content} converters={jsxConverters} />
|
||||
</Callout>
|
||||
),
|
||||
'block-callout': ({ node }: any) => (
|
||||
<Callout type={node.fields.type} title={node.fields.title}>
|
||||
<RichText data={node.fields.content} converters={jsxConverters} />
|
||||
</Callout>
|
||||
),
|
||||
stats: ({ node }: any) => <Stats stats={node.fields.stats} />,
|
||||
'block-stats': ({ node }: any) => <Stats stats={node.fields.stats} />,
|
||||
splitHeading: ({ node }: any) => (
|
||||
<SplitHeading id={node.fields.id} level={node.fields.level}>
|
||||
{node.fields.title}
|
||||
</SplitHeading>
|
||||
),
|
||||
'block-splitHeading': ({ node }: any) => (
|
||||
<SplitHeading id={node.fields.id} level={node.fields.level}>
|
||||
{node.fields.title}
|
||||
</SplitHeading>
|
||||
),
|
||||
productTabs: ({ node }: any) => (
|
||||
<ProductTabs
|
||||
technicalData={
|
||||
<ProductTechnicalData
|
||||
data={{
|
||||
technicalItems: node.fields.technicalItems,
|
||||
voltageTables: node.fields.voltageTables,
|
||||
}}
|
||||
/>
|
||||
}
|
||||
>
|
||||
<></>
|
||||
</ProductTabs>
|
||||
),
|
||||
'block-productTabs': ({ node }: any) => (
|
||||
<ProductTabs
|
||||
technicalData={
|
||||
<ProductTechnicalData
|
||||
data={{
|
||||
technicalItems: node.fields.technicalItems,
|
||||
voltageTables: node.fields.voltageTables,
|
||||
}}
|
||||
/>
|
||||
}
|
||||
>
|
||||
{node.fields.content && <RichText data={node.fields.content} converters={jsxConverters} />}
|
||||
</ProductTabs>
|
||||
),
|
||||
},
|
||||
// Custom converter for the Payload "upload" Lexical node (Media collection)
|
||||
// This natively reconstructs Next.js <Image /> tags pointing to the focal-point cropped sizes
|
||||
upload: ({ node }: any) => {
|
||||
// Attempt to extract the highly optimized 'card' generated size from Payload, fallback to raw url
|
||||
let src = node?.value?.sizes?.card?.url || node?.value?.url;
|
||||
const alt = node?.value?.alt || 'Blog Post Media';
|
||||
|
||||
if (!src) return null;
|
||||
|
||||
// Strip legacy imgproxy query parameters (e.g. ?ar=16:9) that crash Next.js 14+ localPatterns
|
||||
if (src.includes('?')) {
|
||||
src = src.split('?')[0];
|
||||
}
|
||||
|
||||
// Fallback dimensions if unmapped or loading from raw
|
||||
const width = node?.value?.sizes?.card?.width || 800;
|
||||
const height = node?.value?.sizes?.card?.height || 600;
|
||||
|
||||
return (
|
||||
<figure className="my-8 md:my-12 relative w-full rounded-2xl md:rounded-[32px] overflow-hidden shadow-xl md:shadow-2xl">
|
||||
<Image
|
||||
src={src}
|
||||
alt={alt}
|
||||
width={width}
|
||||
height={height}
|
||||
className="w-full object-cover transition-transform duration-700 hover:scale-105"
|
||||
sizes="(max-width: 768px) 100vw, (max-width: 1200px) 75vw, 60vw"
|
||||
style={{
|
||||
objectPosition: `${node?.value?.focalX ?? 50}% ${node?.value?.focalY ?? 50}%`,
|
||||
}}
|
||||
/>
|
||||
{node?.value?.caption && (
|
||||
<figcaption className="p-4 bg-neutral-dark text-white/80 text-sm text-center italic border-t border-white/10">
|
||||
{node.value.caption}
|
||||
</figcaption>
|
||||
)}
|
||||
</figure>
|
||||
);
|
||||
},
|
||||
};
|
||||
|
||||
export default function PayloadRichText({ data }: { data: any }) {
|
||||
if (!data) return null;
|
||||
|
||||
return (
|
||||
<div className="article-content max-w-none">
|
||||
<RichText data={data} converters={jsxConverters} />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
@@ -35,7 +35,7 @@ export default function ProductSidebar({
|
||||
<div className="relative w-full aspect-[16/10] mb-6 rounded-2xl overflow-hidden bg-white/5 backdrop-blur-md p-4 border border-white/10 z-10 group">
|
||||
<div className="relative w-full h-full transition-transform duration-1000 ease-out group-hover:scale-105">
|
||||
<Image
|
||||
src={productImage}
|
||||
src={productImage.split('?')[0]}
|
||||
alt={productName}
|
||||
fill
|
||||
className="object-contain p-2 drop-shadow-[0_20px_30px_rgba(0,0,0,0.4)]"
|
||||
|
||||
@@ -130,12 +130,14 @@ export default function ProductTechnicalData({ data }: ProductTechnicalDataProps
|
||||
<td className="px-3 py-2 text-xs font-bold text-primary sticky left-0 bg-white group-hover:bg-neutral-light/50 z-10 whitespace-nowrap">
|
||||
{row.configuration}
|
||||
</td>
|
||||
{row.cells.map((cell, cellIdx) => (
|
||||
{row.cells.map((cell: any, cellIdx: number) => (
|
||||
<td
|
||||
key={cellIdx}
|
||||
className="px-3 py-2 text-xs text-text-secondary whitespace-nowrap"
|
||||
>
|
||||
{cell}
|
||||
{typeof cell === 'object' && cell !== null && 'value' in cell
|
||||
? cell.value
|
||||
: cell}
|
||||
</td>
|
||||
))}
|
||||
</tr>
|
||||
|
||||
@@ -2,6 +2,7 @@ import { getAllProducts } from '@/lib/mdx';
|
||||
import { getTranslations } from 'next-intl/server';
|
||||
import Image from 'next/image';
|
||||
import { RelatedProductLink } from './RelatedProductLink';
|
||||
import { mapFileSlugToTranslated } from '@/lib/slugs';
|
||||
|
||||
interface RelatedProductsProps {
|
||||
currentSlug: string;
|
||||
@@ -16,6 +17,7 @@ export default async function RelatedProducts({
|
||||
}: RelatedProductsProps) {
|
||||
const products = await getAllProducts(locale);
|
||||
const t = await getTranslations('Products');
|
||||
const productsSlug = await mapFileSlugToTranslated('products', locale);
|
||||
|
||||
// Filter products: same category, not current product
|
||||
const related = products
|
||||
@@ -27,6 +29,34 @@ export default async function RelatedProducts({
|
||||
|
||||
if (related.length === 0) return null;
|
||||
|
||||
// Pre-calculate translated slugs for related products
|
||||
const relatedWithTranslatedSlugs = await Promise.all(
|
||||
related.map(async (product) => {
|
||||
// Find the category slug for the link
|
||||
const categorySlugs = [
|
||||
'low-voltage-cables',
|
||||
'medium-voltage-cables',
|
||||
'high-voltage-cables',
|
||||
'solar-cables',
|
||||
];
|
||||
const catFileSlug =
|
||||
categorySlugs.find((slug) => {
|
||||
const key = slug.replace(/-cables$/, '').replace(/-([a-z])/g, (g) => g[1].toUpperCase());
|
||||
const title = t(`categories.${key}.title`);
|
||||
return product.frontmatter.categories.some(
|
||||
(cat) => cat.toLowerCase().replace(/\s+/g, '-') === slug || cat === title,
|
||||
);
|
||||
}) || 'low-voltage-cables';
|
||||
|
||||
const catSlug = await mapFileSlugToTranslated(catFileSlug, locale);
|
||||
|
||||
return {
|
||||
...product,
|
||||
catSlug,
|
||||
};
|
||||
}),
|
||||
);
|
||||
|
||||
return (
|
||||
<div className="">
|
||||
<div className="flex items-end justify-between mb-12">
|
||||
@@ -39,29 +69,11 @@ export default async function RelatedProducts({
|
||||
</div>
|
||||
|
||||
<div className="grid grid-cols-1 md:grid-cols-3 gap-8">
|
||||
{related.map((product) => {
|
||||
// Find the category slug for the link
|
||||
const categorySlugs = [
|
||||
'low-voltage-cables',
|
||||
'medium-voltage-cables',
|
||||
'high-voltage-cables',
|
||||
'solar-cables',
|
||||
];
|
||||
const catSlug =
|
||||
categorySlugs.find((slug) => {
|
||||
const key = slug
|
||||
.replace(/-cables$/, '')
|
||||
.replace(/-([a-z])/g, (g) => g[1].toUpperCase());
|
||||
const title = t(`categories.${key}.title`);
|
||||
return product.frontmatter.categories.some(
|
||||
(cat) => cat.toLowerCase().replace(/\s+/g, '-') === slug || cat === title,
|
||||
);
|
||||
}) || 'low-voltage-cables';
|
||||
|
||||
{relatedWithTranslatedSlugs.map((product) => {
|
||||
return (
|
||||
<RelatedProductLink
|
||||
key={product.slug}
|
||||
href={`/${locale}/products/${catSlug}/${product.slug}`}
|
||||
href={`/${locale}/${productsSlug}/${product.catSlug}/${product.slug}`}
|
||||
productSlug={product.slug}
|
||||
productTitle={product.frontmatter.title}
|
||||
className="group block bg-white rounded-[32px] overflow-hidden shadow-sm hover:shadow-2xl transition-all duration-500 border border-neutral-dark/5"
|
||||
@@ -70,7 +82,7 @@ export default async function RelatedProducts({
|
||||
{product.frontmatter.images?.[0] ? (
|
||||
<>
|
||||
<Image
|
||||
src={product.frontmatter.images[0]}
|
||||
src={product.frontmatter.images[0].split('?')[0]}
|
||||
alt={product.frontmatter.title}
|
||||
fill
|
||||
className="object-contain p-4 transition-transform duration-700 group-hover:scale-110 z-10"
|
||||
|
||||
@@ -29,10 +29,14 @@ export default function TrackedLink({
|
||||
const { trackEvent } = useAnalytics();
|
||||
|
||||
const handleClick = (e: React.MouseEvent) => {
|
||||
trackEvent(eventName, {
|
||||
href,
|
||||
...eventProperties,
|
||||
});
|
||||
try {
|
||||
trackEvent(eventName, {
|
||||
href,
|
||||
...eventProperties,
|
||||
});
|
||||
} catch (_e) {
|
||||
// Analytics tracking should not block navigation, so we catch and ignore errors.
|
||||
}
|
||||
if (onClick) onClick();
|
||||
};
|
||||
|
||||
|
||||
@@ -34,7 +34,7 @@ export default function AnimatedImage({
|
||||
}
|
||||
});
|
||||
},
|
||||
{ threshold: 0.1 }
|
||||
{ threshold: 0.1 },
|
||||
);
|
||||
|
||||
if (containerRef.current) {
|
||||
@@ -45,15 +45,17 @@ export default function AnimatedImage({
|
||||
}, []);
|
||||
|
||||
return (
|
||||
<div
|
||||
<div
|
||||
ref={containerRef}
|
||||
className={`relative overflow-hidden rounded-2xl shadow-2xl my-16 group ${className}`}
|
||||
>
|
||||
<div className={`
|
||||
<div
|
||||
className={`
|
||||
absolute inset-0 bg-primary/10 z-10 pointer-events-none transition-opacity duration-1000
|
||||
${isLoaded && isInView ? 'opacity-0' : 'opacity-100'}
|
||||
`} />
|
||||
|
||||
`}
|
||||
/>
|
||||
|
||||
<Image
|
||||
src={src}
|
||||
alt={alt}
|
||||
@@ -67,17 +69,9 @@ export default function AnimatedImage({
|
||||
onLoad={() => setIsLoaded(true)}
|
||||
priority={priority}
|
||||
/>
|
||||
|
||||
|
||||
{/* Subtle reflection overlay */}
|
||||
<div className="absolute inset-0 bg-gradient-to-tr from-white/5 to-transparent opacity-0 group-hover:opacity-100 transition-opacity duration-700 pointer-events-none" />
|
||||
|
||||
{alt && (
|
||||
<div className="absolute bottom-0 left-0 right-0 p-6 bg-gradient-to-t from-black/60 to-transparent translate-y-full group-hover:translate-y-0 transition-transform duration-500">
|
||||
<p className="text-sm text-white font-medium italic">
|
||||
{alt}
|
||||
</p>
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -31,7 +31,7 @@ export default function PostNavigation({
|
||||
{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}?ar=16:9)` }}
|
||||
style={{ backgroundImage: `url(${prev.frontmatter.featuredImage.split('?')[0]})` }}
|
||||
/>
|
||||
) : (
|
||||
<div className="absolute inset-0 bg-neutral-100" />
|
||||
@@ -82,7 +82,7 @@ export default function PostNavigation({
|
||||
{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}?ar=16:9)` }}
|
||||
style={{ backgroundImage: `url(${next.frontmatter.featuredImage.split('?')[0]})` }}
|
||||
/>
|
||||
) : (
|
||||
<div className="absolute inset-0 bg-neutral-100" />
|
||||
|
||||
@@ -29,7 +29,7 @@ export default function VisualLinkPreview({ url, title, summary, image }: Visual
|
||||
<div className="relative w-full md:w-64 h-48 md:h-auto flex-shrink-0 bg-neutral-50 overflow-hidden">
|
||||
{image ? (
|
||||
<Image
|
||||
src={image}
|
||||
src={image.split('?')[0]}
|
||||
alt={title}
|
||||
fill
|
||||
unoptimized
|
||||
|
||||
@@ -43,7 +43,7 @@ export default async function RecentPosts({ locale }: RecentPostsProps) {
|
||||
{post.frontmatter.featuredImage && (
|
||||
<div className="relative h-64 overflow-hidden">
|
||||
<Image
|
||||
src={`${post.frontmatter.featuredImage}?ar=16:9`}
|
||||
src={post.frontmatter.featuredImage.split('?')[0]}
|
||||
alt={post.frontmatter.title}
|
||||
fill
|
||||
className="w-full h-full object-cover transition-transform duration-700 group-hover:scale-110"
|
||||
|
||||
@@ -26,7 +26,7 @@ export function Button({
|
||||
...props
|
||||
}: ButtonProps) {
|
||||
const baseStyles =
|
||||
'inline-flex items-center justify-center rounded-full font-semibold transition-all duration-500 ease-out focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-primary focus-visible:ring-offset-2 disabled:opacity-50 disabled:pointer-events-none active:scale-95 hover:-translate-y-1 hover:scale-[1.02] relative overflow-hidden group/btn isolate';
|
||||
'inline-flex items-center justify-center whitespace-nowrap rounded-full font-semibold transition-all duration-500 ease-out focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-primary focus-visible:ring-offset-2 disabled:opacity-50 disabled:pointer-events-none active:scale-95 hover:-translate-y-1 hover:scale-[1.02] relative overflow-hidden group/btn isolate';
|
||||
|
||||
const variants = {
|
||||
primary: 'bg-primary text-white shadow-md hover:shadow-primary/30 hover:shadow-2xl',
|
||||
@@ -45,8 +45,8 @@ export function Button({
|
||||
const sizes = {
|
||||
sm: 'h-9 px-4 text-sm md:text-base',
|
||||
md: 'h-11 px-6 text-base md:text-lg',
|
||||
lg: 'h-14 px-8 text-base md:text-lg',
|
||||
xl: 'h-16 px-10 text-lg md:text-xl',
|
||||
lg: 'h-14 px-5 md:px-8 text-base md:text-lg',
|
||||
xl: 'h-16 px-6 md:px-10 text-lg md:text-xl',
|
||||
};
|
||||
|
||||
const styles = cn(baseStyles, variants[variant], sizes[size], className);
|
||||
|
||||
@@ -1,115 +0,0 @@
|
||||
---
|
||||
title: AGB
|
||||
excerpt: Liefer- und Zahlungsbedingungen der KLZ Vertriebs GmbH.
|
||||
featuredImage: null
|
||||
locale: de
|
||||
---
|
||||
|
||||
*Stand Januar 2026*
|
||||
|
||||
## 1. Allgemeines
|
||||
|
||||
Diese Liefer- und Zahlungsbedingungen (L&Z) der KLZ Vertriebs GmbH gelten ausschließlich; entgegenstehende oder von unseren Bedingungen abweichende Bedingungen des Kunden erkennen wir nicht an, es sei denn, wir hätten ausdrücklich schriftlich ihrer Geltung zugestimmt. Unsere L&Z gelten auch dann, wenn wir in Kenntnis entgegenstehender oder von unseren L&Z abweichender Bedingungen des Bestellers die Lieferung an diesen vorbehaltlos ausführen. Unsere L&Z gelten nur gegenüber Unternehmern im Sinn von § 310 Abs. 1 BGB sowie juristischen Personen des öffentlichen Rechts oder öffentlich-rechtliches Sondervermögen.
|
||||
|
||||
Nebenabreden, Vorbehalte, Änderungen, Ergänzungen usw. bedürfen zu ihrer Wirksamkeit unserer schriftlichen Bestätigung.
|
||||
|
||||
Hinweise auf die Geltung gesetzlicher Vorschriften haben nur klarstellende Bedeutung. Auch ohne eine derartige Klarstellung gelten daher die gesetzlichen Vorschriften, soweit sie in diesen L&Z nicht unmittelbar abgeändert oder ausdrücklich ausgeschlossen werden.
|
||||
|
||||
## 2. Angebote
|
||||
|
||||
Sofern nicht ausdrücklich als bindend bezeichnet, sind unsere Angebote freibleibend; die Bestellung des Kunden ist als Angebot gemäß § 145 BGB zu qualifizieren.
|
||||
|
||||
## 3. Preise
|
||||
|
||||
Die Preise gelten für den in unseren Angeboten und Auftragsbestätigungen aufgeführten Leistungs- und Lieferumfang. Mehrleistungen werden gesondert berechnet. Die Hohlpreise verstehen sich in Euro zuzüglich Metallzuschlag, gegebenenfalls Verpackung, auftragsspezifischer Schnittkosten und der gesetzlichen Mehrwertsteuer.
|
||||
|
||||
## 4. Metallnotierung
|
||||
|
||||
Basis zur Kupferabrechnung ist die Notierung „LME Copper official price cash offer“, Durchschnitt des Liefervormonats zuzüglich der dann aktuellen von uns benannten Kupfer-Prämie.
|
||||
Basis zur Aluminiumabrechnung ist die Notierung „LME Aluminium official price cash offer“, Durchschnitt des Liefervormonats zuzüglich der dann von uns benannten Aluminium-Prämie. USD werden auf Basis des EUR/USD LME-FX-Rate (MTLE) in EUR umgerechnet. Die entsprechenden Notierungen können Sie der Web-Seite [www.westmetall.com](https://www.westmetall.com) entnehmen. Die Prämienzuschläge können stark variieren und KLZ behält sich das Recht vor, diese fristgerecht anzupassen, ungeachtet der Angebotslegung.
|
||||
|
||||
## 5. Metallzahl
|
||||
|
||||
Die von uns ausgewiesene Metallzahl ist eine rein kaufmännische Berechnungsgröße für den Metallinhalt, die in die Berechnung des Gesamtpreises eines Kabels eingeht. Damit entsprechen wir Ihrem Wunsch eine Vergleichbarkeit in ihrem System auf Hohlpreisbasis zu ermöglichen. Die Metallzahl gibt damit nicht das Gewicht des tatsächlich im Kabel enthaltenen Leitermetalls an. Sie ist ein rein kalkulatorischer Berechnungsfaktor, der jedoch keine unmittelbaren Rückschlüsse auf die im Kabel verwendeten Kupfer- bzw. Aluminiummengen zulässt. Wir weisen ausdrücklich darauf hin, final nur den Vollpreis für Vergleichszwecke heranzuziehen. Soweit Sie es wünschen andere Metallzahlen zu Grunde zu legen, sind wir gerne dazu bereit, das Angebot in den Bestandteilen umzurechnen. Bei jeglicher Änderung bleibt aber der Vollpreis der gleiche Betrag.
|
||||
|
||||
## 6. Auftragsänderung / Auftragsstorno
|
||||
|
||||
Nach Auftragsbestätigung werden Änderungen an bestätigten Aufträgen nur nach Prüfung und gesonderter ausdrücklicher Zustimmung durch uns akzeptiert. Wir behalten uns bei allen Auftragsänderungen das Recht vor, einen durch die Änderung entstandenen Mehraufwand, wie z.B. Bearbeitungskosten oder Entsorgungskosten in Rechnung zu stellen.
|
||||
|
||||
## 7. Eigentumsvorbehalt
|
||||
|
||||
Wir behalten uns an den von uns gelieferten Waren – nachfolgend: Vorbehaltsware – bis zur vollständigen Begleichung aller unserer Forderungen aus den Geschäftsbeziehungen mit dem Besteller, das Eigentum vor. Der Eigentumsvorbehalt bleibt auch dann bestehen, wenn einzelne Forderungen in eine laufende Rechnung aufgenommen werden (Kontokorrentvorbehalt).
|
||||
|
||||
## 8. Zahlungsbedingungen | Aufrechnung | Zurückbehaltungsrechte
|
||||
|
||||
Unsere Rechnungen sind 10 Tage nach Rechnungsdatum ohne jeden Abzug zahlbar. Rechnungsstellung bzw. Datum ist grundsätzlich der Tag der Übergabe an den Spediteur soweit wir aus unseren deutschen Lägern liefern. Ansonsten gilt bei Direktimporten der Tag der Verzollung, der zeitnah zum Anliefertag liegt. Bei Nichteinhaltung der vereinbarten Zahlungsbedingungen sind wir berechtigt, Zinsen in Höhe von 7 %-Punkten über dem Basiszinssatz zu berechnen; das Recht zur Geltendmachung weitergehender Schäden, insbesondere nachgewiesener höherer Zinsen, bleibt hiervon unberührt.
|
||||
|
||||
## 9. Liefervorbehalt | Teillieferungen
|
||||
|
||||
Sämtliche Lieferzusagen unsererseits stehen, sofern nichts anderes ausdrücklich schriftlich vereinbart ist, unter dem Vorbehalt der richtigen und rechtzeitigen Belieferung durch unsere Produzenten. Wir behalten uns jederzeit Teillieferungen vor. Darüber hinaus behalten wir uns branchenübliche Über- oder Unterlieferungen bis zu 10 % der bestellten Menge vor.
|
||||
|
||||
## 10. Lieferfristen und Liefertermine
|
||||
|
||||
Die Lieferfrist wird individuell vereinbart bzw. von uns bei Annahme der Bestellung angegeben. Sofern wir verbindliche Lieferfristen aus Gründen, die wir nicht zu vertreten haben, nicht einhalten können (Nichtverfügbarkeit der Leistung), werden wir den Besteller hierüber unverzüglich informieren und gleichzeitig die voraussichtliche, neue Lieferfrist mitteilen. Ist die Leistung auch innerhalb der neuen Lieferfrist nicht verfügbar, sind wir berechtigt, ganz oder teilweise vom Vertrag zurückzutreten. Eine bereits erbrachte Gegenleistung des Bestellers werden wir unverzüglich erstatten. Nichtverfügbarkeit der Leistung liegt beispielsweise vor bei nicht rechtzeitiger Selbstbelieferung durch unseren Zulieferer, wenn wir ein kongruentes Deckungsgeschäft abgeschlossen haben, bei sonstigen Störungen in der Lieferkette etwa aufgrund höherer Gewalt oder wenn wir im Einzelfall zur Beschaffung nicht verpflichtet sind.
|
||||
|
||||
Der Eintritt unseres Lieferverzugs bestimmt sich nach den gesetzlichen Vorschriften. In jedem Fall ist aber eine Mahnung durch den Käufer erforderlich.
|
||||
|
||||
Die gesetzlichen Rechte bleiben im Übrigen unberührt.
|
||||
|
||||
Fixgeschäfte setzen die ausdrückliche schriftliche Bezeichnung als solche voraus. Ansonsten ist der Besteller stets verpflichtet, uns schriftlich eine angemessene Nachfrist zu setzen, wenn von uns zugesagte Termine und/ oder Fristen nicht einhalten werden. Wird auch die Nachfrist nicht eingehalten, ist der Besteller berechtigt, vom Vertrag zurückzutreten.
|
||||
|
||||
Im Fall höherer Gewalt und/oder sonstiger von uns nicht vorhersehbarer außergewöhnlicher und/oder unverschuldeter Umstände, auch wenn sie bei unserem Vorlieferanten eintreten, verlängert sich eine von uns zugesagte Lieferfrist bis zur Behebung des vorerwähnten Ereignisses. Ist dieser Zeitpunkt nicht überblickbar, sind sowohl der Besteller als auch wir berechtigt, von dem abgeschlossenen Vertrag zurückzutreten. In diesem Fall sind beiderseits Schadensersatzansprüche ausgeschlossen. Wir verpflichten uns, bei Bekanntwerden vorerwähnter Umstände den Besteller hiervon unverzüglich zu benachrichtigen.
|
||||
|
||||
Ist die Einhaltung eines Termins davon abhängig, dass uns seitens des Bestellers bestimmte Angaben und/oder Pläne, Freigabeerklärungen oder ähnliches erteilt werden, beginnt die Lieferfrist erst von dem Zeitpunkt an zu laufen, zu dem uns die vollständigen Angaben des Bestellers schriftlich vorliegen. Wird die Anlieferung auf Wunsch des Bestellers über den vertraglich vorgesehenen Zeitpunkt hinausgeschoben, kann von uns beginnend mit einer Frist von frühestens 10 Werktagen nach Anzeige der Versandbereitschaft dem Besteller ein Lagergeld in Höhe von 2 % des Rechnungsbetrages für jeden angefangenen Monat, maximal jedoch 10 % insgesamt berechnet werden.
|
||||
|
||||
## 11. Abrufaufträge
|
||||
|
||||
Wird uns ein Abrufauftrag erteilt und werden über die Abruftermine keine gesonderten schriftlichen Vereinbarungen getroffen, ist der Besteller verpflichtet, uns die einzelnen Abruftermine so mitzuteilen, dass zwischen Eingang der Abrufmitteilung bei uns und Auslieferung mindestens 14 Werktage und die letzte Auslieferung spätestens 90 Tage nach unserer Auftragsbestätigung liegt.
|
||||
|
||||
## 12. Maß- und Gewichtsangaben
|
||||
|
||||
Alle Angaben über Durchmesser, Gewicht, technische Gestaltung, Herstellung und Umfang der von uns zu liefernden Ware stehen unter dem Vorbehalt der Abweichung innerhalb der handelsüblichen zulässigen Toleranzen. Darüber hinaus behalten wir uns Änderungen, die einer technischen Verbesserung dienen, jederzeit vor. Farbabweichungen und/oder Abweichungen in der äußeren Beschaffenheit der von uns zu liefernden Ware, die jedoch deren Qualität und technische Wirksamkeit unbeeinflusst lässt, begründen keine Mängelhaftungsansprüche des Bestellers.
|
||||
|
||||
## 13. Gefahrübergang und -tragung
|
||||
|
||||
Die Lieferung erfolgt DAP frei Bestimmungsort Deutschland, wo auch der Erfüllungsort für die Lieferung und eine etwaige Nacherfüllung ist.
|
||||
|
||||
Wird die bestellte Ware von uns versandbereit gestellt und/oder verzögert sich die Versendung und/oder der Abruf aus Gründen, die vom Besteller zu vertreten sind, sind wir berechtigt, Ersatz des hieraus entstehenden Schadens einschließlich Mehraufwendungen für Einlagerungen zu verlangen. Hierfür berechnen wir eine pauschale Entschädigung i.H. von 2% des Rechnungsbetrages für jeden angefangenen Monat, maximal jedoch 10 % insgesamt beginnend mit der Lieferfrist bzw. – mangels einer Lieferfrist – mit der Mitteilung der Versandbereitschaft der Ware.
|
||||
|
||||
Der Nachweis eines höheren Schadens und unsere gesetzlichen Ansprüche (insbesondere Ersatz von Mehraufwendungen, angemessene Entschädigung, Kündigung) bleiben unberührt; die Pauschale ist aber auf weitergehende Geldansprüche anzurechnen. Dem Besteller bleibt der Nachweis gestattet, dass uns überhaupt kein oder nur ein wesentlich geringerer Schaden als vorstehende Pauschale entstanden ist. Rücksendungen an uns, die nicht vorher von uns schriftlich bestätigt worden sind, erfolgen auf alleinige Gefahr des Bestellers.
|
||||
|
||||
## 14. Mängelhaftung
|
||||
|
||||
Wir haften nur dann für die Einhaltung objektiver Anforderungen an der Ware, wenn und soweit zwischen dem Besteller und uns keine Beschaffenheitsvereinbarung getroffen wurde. Die einzuhaltenden subjektiven Anforderungen gehen den einzuhaltenden objektiven Anforderungen vor. Im Zweifel ergeben sich die vereinbarten Anforderungen an die Ware aus dem von uns bereitgestellten Datenblatt. Einzelne, nicht immer auszuschließende marginale Abweichungen, dürfen durch Reparaturen, wie zum Beispiel Mantelmanschetten nachgebessert werden.
|
||||
|
||||
Jedwede Mängelhaftungsansprüche des Bestellers setzen voraus, dass dieser die ihm übersandte Ware unverzüglich, d. h. in der Regel sofort bei Anlieferung (noch in Anwesenheit des Transporteurs) auf ihre ordnungsgemäße Beschaffenheit hin überprüft und uns zu verzeichnende sichtbare Mängel unmittelbar nach Erhalt der Ware und verdeckte Mängel unmittelbar nach deren Feststellung schriftlich mitteilt. Soweit ein rechtzeitig gerügter, nicht nur unerheblicher Mangel der Kaufsache vorliegt, sind wir nach unserer Wahl zur Mangelbeseitigung oder zur Ersatzlieferung (Nacherfüllung) berechtigt.
|
||||
|
||||
Wir übernehmen im Rahmen der Nacherfüllung in keinem Fall Ein- oder Ausbaukosten, wenn und soweit die Mangelhaftigkeit der Ware zum Zeitpunkt des Einbaus dem Besteller bekannt oder grob fahrlässig unbekannt geblieben ist.
|
||||
|
||||
Sind wir zur Mangelbeseitigung/Ersatzlieferung nicht bereit oder nicht in der Lage oder verzögert sich diese über angemessene Fristen hinaus aus Gründen, die wir zu vertreten haben, oder schlägt sie in sonstiger Weise fehl, so ist der Besteller nach seiner Wahl berechtigt, vom Vertrag zurückzutreten oder eine entsprechende Minderung des Kaufpreises zu verlangen.
|
||||
|
||||
Weitergehende Ansprüche des Bestellers, gleich aus welchem Rechtsgrund, sind nach näherer Maßgabe der Regelungen in nachstehender Ziffer 15 ausgeschlossen bzw. beschränkt.
|
||||
|
||||
Die Verjährungsfristen für Mängelhaftungsansprüche beträgt 24 Monate ab Übergabe der Ware.
|
||||
|
||||
Sollte es bei einer Mängelrüge zu unterschiedlichen Meinungen bezüglich des Kabelschaden kommen, gilt hier im Zweifelsfall nur die Expertise des VDE-Instituts selbst. Andere, auch akkreditierte Testlabore, akzeptieren wir nicht.
|
||||
|
||||
Wir weisen ausdrücklich daraufhin, dass beim Verlegen des Kabels in den Gräben oder in Rohren, bzw. in Bauwerke eine ständige Sichtkontrolle durch den Kabelverleger vorzunehmen ist, ob Auffälligkeiten zu vermerken sind. Eine spätere Reklamation, die fahrlässiges Verhalten vermuten lässt, schränkt sich damit ein. Dies gilt auch bei der Annahme der Ware, wo offensichtliche Beschädigungen direkt zu kommunizieren sind. Spätere Ansprüche nach Akzeptanz einer einwandfreien Belieferung sind detailliert zu beweisen.
|
||||
|
||||
## 15. Schadenersatz | Gesamthaftung
|
||||
|
||||
Wir haften unbeschränkt nur für Vorsatz und grobe Fahrlässigkeit sowie für Schäden aus einer Verletzung von Leben, Körper oder Gesundheit, die auf mindestens fahrlässiger Pflichtverletzung unsererseits oder unserer gesetzlichen Vertreter oder Erfüllungsgehilfen beruhen; ebenso haften wir unbeschränkt im Fall von uns übernommenen bzw. abgegebenen Garantien und Zusicherungen, sofern ein davon umfasster Mangel unsere Haftung auslöst sowie im Fall einer Haftung nach dem Produkthaftungsgesetz oder sonstigen Gefährdungshaftungstatbeständen. Im Fall sonstiger schuldhafter Verletzung wesentlicher Vertragspflichten („Kardinalpflichten“) ist unsere verbleibende Haftung auf den vertragstypischen vorhersehbaren Schaden beschränkt. Mangelfolgeschäden sowie entgangener Gewinn schließen wir grundsätzlich aus.
|
||||
|
||||
## 16. Kabeltrommeln
|
||||
|
||||
Unsere Kabel werden auf stabilen Vollholztrommeln geliefert. Auf Wunsch vermitteln wir Ihnen Partner, die diese Trommeln gegen eine Gebühr abholen.
|
||||
|
||||
## 17. Sonstiges
|
||||
|
||||
Es gilt ausschließlich das Recht der Bundesrepublik Deutschland unter Ausschluss des UN-Kaufrechts (CISG). Gerichtsstand ist nach unserer Wahl Stuttgart, der Erfüllungsort der Lieferverpflichtung oder das für den Sitz des Bestellers zuständige Gericht, sofern der Besteller Kaufmann, juristische Person des öffentlichen Rechts oder öffentlich-rechtliches Sondervermögen ist oder keinen allgemeinen Gerichtsstand im Inland hat.
|
||||
|
||||
Mit der Veröffentlichung der vorliegenden L&Z im Internet werden alle von uns früher verwendeten Bedingungen gegenstandslos.
|
||||
|
||||
Remshalden, 28.1.2026
|
||||
|
||||
[Download als PDF](/AGB-KLZ-1-2026.pdf)
|
||||
@@ -1,18 +0,0 @@
|
||||
---
|
||||
title: Blog – Deutsch
|
||||
excerpt: >-
|
||||
[vc_column column_padding=”no-extra-padding”
|
||||
column_padding_tablet=”inherit”
|
||||
column_padding_phone=”inherit”
|
||||
column_padding_position=”all”
|
||||
column_element_direction_desktop=”default”
|
||||
column_element_spacing=”default”
|
||||
desktop_text_alignment=”default”
|
||||
tablet_text_alignment=”default”
|
||||
phone_text_alignment=”default”…
|
||||
featuredImage: null
|
||||
locale: de
|
||||
---
|
||||
# Blog – Deutsch
|
||||
|
||||
[recent_posts style=”single_large_featured” large_featured_padding=”8%” button_color=”Accent-Color” button_arrow_style=”default” load_in_animation=”none” single_large_featured_content_side_spacing=”default” single_large_featured_content_alignment=”middle” large_featured_content_max_width=”default” bg_overlay=”solid_color” large_featured_heading_tag=”h2″ category=”all” order=”DESC” orderby=”rand” image_loading=”default” blog_remove_post_author=”true”]
|
||||
@@ -1,59 +0,0 @@
|
||||
---
|
||||
title: Datenschutzerklärung
|
||||
excerpt: Informationen zum Umgang mit Ihren persönlichen Daten bei der KLZ Vertriebs GmbH.
|
||||
featuredImage: null
|
||||
locale: de
|
||||
---
|
||||
|
||||
## 1. Datenschutz auf einen Blick
|
||||
|
||||
### Allgemeine Hinweise
|
||||
Die folgenden Hinweise geben einen einfachen Überblick darüber, was mit Ihren personenbezogenen Daten passiert, wenn Sie unsere Website besuchen. Personenbezogene Daten sind alle Daten, mit denen Sie persönlich identifiziert werden können. Ausführliche Informationen zum Thema Datenschutz entnehmen Sie unserer unten aufgeführten Datenschutzerklärung.
|
||||
|
||||
---
|
||||
|
||||
## 2. Allgemeine Hinweise und Pflichtinformationen
|
||||
|
||||
### Datenschutz
|
||||
Die Betreiber dieser Seiten nehmen den Schutz Ihrer persönlichen Daten sehr ernst. Wir behandeln Ihre personenbezogenen Daten vertraulich und entsprechend der gesetzlichen Datenschutzvorschriften sowie dieser Datenschutzerklärung.
|
||||
|
||||
Wenn Sie diese Website nutzen, werden verschiedene personenbezogene Daten erhoben. Personenbezogene Daten sind Daten, mit denen Sie persönlich identifiziert werden können. Diese Datenschutzerklärung erläutert, welche Daten wir erheben und wofür wir sie nutzen. Sie erläutert auch, wie und zu welchem Zweck dies geschieht.
|
||||
|
||||
Wir weisen darauf hin, dass die Datenübertragung im Internet (z. B. bei der Kommunikation per E-Mail) Sicherheitslücken aufweisen kann. Ein lückenloser Schutz der Daten vor dem Zugriff durch Dritte ist nicht möglich.
|
||||
|
||||
---
|
||||
|
||||
### Widerruf Ihrer Einwilligung zur Datenverarbeitung
|
||||
Viele Datenverarbeitungsvorgänge sind nur mit Ihrer ausdrücklichen Einwilligung möglich. Sie können eine bereits erteilte Einwilligung jederzeit widerrufen. Dazu reicht eine formlose Mitteilung per E-Mail an uns. Die Rechtmäßigkeit der bis zum Widerruf erfolgten Datenverarbeitung bleibt vom Widerruf unberührt.
|
||||
|
||||
---
|
||||
|
||||
### Beschwerderecht bei der zuständigen Aufsichtsbehörde
|
||||
Im Falle von Verstößen gegen das Datenschutzrecht steht dem Betroffenen ein Beschwerderecht bei der zuständigen Aufsichtsbehörde zu. Die zuständige Aufsichtsbehörde für Datenschutzfragen ist der Datenschutzbeauftragte des Bundeslandes, in dem unser Unternehmen seinen Sitz hat. Eine Liste der Datenschutzbeauftragten sowie deren Kontaktdaten können Sie folgendem Link entnehmen:
|
||||
[https://www.bfdi.bund.de/DE/Infothek/Anschriften_Links/anschriften_links-node.html](https://www.bfdi.bund.de/DE/Infothek/Anschriften_Links/anschriften_links-node.html).
|
||||
|
||||
---
|
||||
|
||||
### Recht auf Datenübertragbarkeit
|
||||
Sie haben das Recht, Daten, die wir auf Grundlage Ihrer Einwilligung oder zur Erfüllung eines Vertrags automatisiert verarbeiten, an sich oder an einen Dritten in einem gängigen, maschinenlesbaren Format aushändigen zu lassen. Sofern Sie die direkte Übertragung der Daten an einen anderen Verantwortlichen verlangen, erfolgt dies nur, soweit es technisch machbar ist.
|
||||
|
||||
---
|
||||
|
||||
### Auskunft, Sperrung, Löschung
|
||||
Im Rahmen der geltenden gesetzlichen Bestimmungen haben Sie jederzeit das Recht auf unentgeltliche Auskunft über Ihre gespeicherten personenbezogenen Daten, deren Herkunft und Empfänger sowie den Zweck der Datenverarbeitung. Gegebenenfalls haben Sie ein Recht auf Berichtigung, Sperrung oder Löschung dieser Daten. Hierzu sowie zu weiteren Fragen zum Thema personenbezogene Daten können Sie sich jederzeit unter der im Impressum angegebenen Adresse an uns wenden.
|
||||
|
||||
---
|
||||
|
||||
### Widerspruch gegen Werbe-E-Mails
|
||||
Der Nutzung von im Rahmen der Impressumspflicht veröffentlichten Kontaktdaten zur Übersendung von nicht ausdrücklich angeforderter Werbung und Informationsmaterialien wird hiermit widersprochen. Die Betreiber der Seiten behalten sich ausdrücklich rechtliche Schritte im Falle der unverlangten Zusendung von Werbeinformationen, etwa durch Spam-E-Mails, vor.
|
||||
|
||||
---
|
||||
|
||||
## 3. Datenerfassung in unserem Unternehmen
|
||||
|
||||
### Datenübermittlung bei Vertragsschluss für Dienstleistungen und digitale Inhalte
|
||||
Wir übermitteln personenbezogene Daten an Dritte nur dann, wenn dies im Rahmen der Vertragsabwicklung notwendig ist, z. B. an das mit der Zahlungsabwicklung beauftragte Kreditinstitut.
|
||||
|
||||
Eine weitergehende Übermittlung der Daten erfolgt nicht bzw. nur dann, wenn Sie der Übermittlung ausdrücklich zugestimmt haben. Eine Weitergabe Ihrer Daten an Dritte ohne ausdrückliche Einwilligung, etwa zu Werbezwecken, erfolgt nicht.
|
||||
|
||||
Rechtsgrundlage für die Datenverarbeitung ist Art. 6 Abs. 1 lit. b DSGVO, der die Verarbeitung von Daten zur Erfüllung eines Vertrags oder vorvertraglicher Maßnahmen gestattet.
|
||||
@@ -1,26 +0,0 @@
|
||||
---
|
||||
title: Impressum
|
||||
excerpt: Rechtliche Informationen und Kontaktdaten der KLZ Vertriebs GmbH.
|
||||
featuredImage: null
|
||||
locale: de
|
||||
---
|
||||
|
||||
## Verantwortlich für den Inhalt
|
||||
Michael Bodemer
|
||||
|
||||
**KLZ Vertriebs GmbH**
|
||||
Raiffeisenstraße 22
|
||||
73630 Remshalden
|
||||
Deutschland
|
||||
|
||||
## Kontakt
|
||||
E-Mail: [info@klz-cables.com](mailto:info@klz-cables.com)
|
||||
Web: [www.klz-cables.com](https://www.klz-cables.com)
|
||||
|
||||
## Registereintrag
|
||||
Amtsgericht Stuttgart
|
||||
HRB-Nr. 798037
|
||||
Gerichtsstand: Stuttgart
|
||||
|
||||
## Urheberrecht
|
||||
Alle auf dieser Website veröffentlichten Texte, Bilder und sonstigen Informationen unterliegen dem Urheberrecht, sofern nicht anders angegeben. Jegliche Vervielfältigung, Verbreitung, Speicherung, Übermittlung, Nachbildung oder Weitergabe der Inhalte ist ohne vorherige schriftliche Genehmigung ausdrücklich untersagt. Für weitere Informationen wenden Sie sich bitte an die oben genannte Adresse.
|
||||
@@ -1,9 +0,0 @@
|
||||
---
|
||||
title: Produkte
|
||||
excerpt: ''
|
||||
featuredImage: null
|
||||
locale: de
|
||||
---
|
||||
# Produkte
|
||||
|
||||
null
|
||||
@@ -1,18 +0,0 @@
|
||||
---
|
||||
title: Blog – English
|
||||
excerpt: >-
|
||||
[vc_column column_padding=”no-extra-padding”
|
||||
column_padding_tablet=”inherit”
|
||||
column_padding_phone=”inherit”
|
||||
column_padding_position=”all”
|
||||
column_element_direction_desktop=”default”
|
||||
column_element_spacing=”default”
|
||||
desktop_text_alignment=”default”
|
||||
tablet_text_alignment=”default”
|
||||
phone_text_alignment=”default”…
|
||||
featuredImage: null
|
||||
locale: en
|
||||
---
|
||||
# Blog – English
|
||||
|
||||
[recent_posts style=”single_large_featured” large_featured_padding=”8%” button_color=”Accent-Color” button_arrow_style=”default” load_in_animation=”none” single_large_featured_content_side_spacing=”default” single_large_featured_content_alignment=”middle” large_featured_content_max_width=”default” bg_overlay=”solid_color” large_featured_heading_tag=”h2″ category=”all” order=”DESC” orderby=”rand” image_loading=”default” blog_remove_post_author=”true”]
|
||||
@@ -1,26 +0,0 @@
|
||||
---
|
||||
title: Legal Notice
|
||||
excerpt: Legal information and contact details for KLZ Vertriebs GmbH.
|
||||
featuredImage: null
|
||||
locale: en
|
||||
---
|
||||
|
||||
## Responsible for the content
|
||||
Michael Bodemer
|
||||
|
||||
**KLZ Vertriebs GmbH**
|
||||
Raiffeisenstraße 22
|
||||
73630 Remshalden
|
||||
Germany
|
||||
|
||||
## Contact
|
||||
Email: [info@klz-cables.com](mailto:info@klz-cables.com)
|
||||
Web: [www.klz-cables.com](https://www.klz-cables.com)
|
||||
|
||||
## Registration
|
||||
Local Court Stuttgart
|
||||
HRB-Nr. 798037
|
||||
Place of jurisdiction: Stuttgart
|
||||
|
||||
## Copyright
|
||||
All texts, images and other information published on the website are subject to copyright unless otherwise indicated. Any duplication, distribution, storage, transmission, reproduction or forwarding of the contents without written permission is expressly prohibited. For further information, please contact the above address.
|
||||
@@ -1,36 +0,0 @@
|
||||
---
|
||||
title: Privacy Policy
|
||||
excerpt: Information on how we handle your personal data at KLZ Vertriebs GmbH.
|
||||
featuredImage: null
|
||||
locale: en
|
||||
---
|
||||
|
||||
## 1. Data protection at a glance
|
||||
|
||||
### General information
|
||||
The following information provides a simple overview of what happens to your personal data when you visit our website. Personal data are all data with which you can be personally identified. For detailed information on the subject of data protection, please refer to our data protection declaration listed below this text.
|
||||
|
||||
## 2. General notes and compulsory information
|
||||
|
||||
### Data protection
|
||||
The operators of these pages take the protection of your personal data very seriously. We treat your personal data confidentially and in accordance with the legal data protection regulations and this data protection declaration. When you use this website, various personal data is collected. Personal data is data with which you can be personally identified. This privacy policy explains what data we collect and what we use it for. It also explains how we do this and for what purpose. We would like to point out that data transmission over the Internet (e.g. communication by e-mail) can have security gaps. It is not possible to completely protect data from access by third parties.
|
||||
|
||||
### Revocation of your consent to data processing
|
||||
Many data processing operations are only possible with your express consent. You can revoke a previously granted consent at any time. For this purpose, an informal notification by e-mail to us is sufficient. The lawfulness of the data processing that took place up to the revocation remains unaffected by the revocation.
|
||||
|
||||
### Right of appeal to the competent supervisory authority
|
||||
In the event of violations of data protection law, the person concerned has a right of appeal to the competent supervisory authority. The competent supervisory authority for data protection issues is the data protection commissioner of the federal state in which our company is located. A list of the data protection officers and their contact details can be found at the following link: [https://www.bfdi.bund.de/DE/Infothek/Anschriften_Links/anschriften_links-node.html](https://www.bfdi.bund.de/DE/Infothek/Anschriften_Links/anschriften_links-node.html).
|
||||
|
||||
### Right to data transferability
|
||||
You have the right to have data which we process automatically on the basis of your consent or in fulfilment of a contract handed over to you or to a third party in a common, machine-readable format. If you request the direct transfer of the data to another responsible party, this will only be done to the extent that it is technically feasible.
|
||||
|
||||
### Information, blocking, deletion
|
||||
Within the framework of the applicable legal provisions, you have the right at any time to receive information free of charge about your stored personal data, its origin and recipients and the purpose of the data processing and, if applicable, a right to correct, block or delete this data. For this purpose, as well as for further questions regarding personal data, you can contact us at any time at the address given in the imprint.
|
||||
|
||||
### Contradiction against advertising mails
|
||||
The use of contact data published within the scope of the imprint obligation for the transmission of not expressly requested advertising and information material is hereby contradicted. The operators of the site expressly reserve the right to take legal action in the event of unsolicited sending of advertising information, such as through spam e-mails.
|
||||
|
||||
## 3. Data collection in our company
|
||||
|
||||
### Data transfer upon conclusion of the contract for services and digital contents
|
||||
We only transfer personal data to third parties if this is necessary within the scope of processing the contract, e.g. to the credit institution commissioned with processing payments. Any further transmission of data will not take place or only if you have expressly agreed to the transmission. Your data will not be passed on to third parties without your express consent, for example for advertising purposes. The basis for data processing is Art. 6 Par. 1 letter b DSGVO, which permits the processing of data for the fulfilment of a contract or pre-contractual measures.
|
||||
@@ -1,9 +0,0 @@
|
||||
---
|
||||
title: Products
|
||||
excerpt: ''
|
||||
featuredImage: null
|
||||
locale: en
|
||||
---
|
||||
# Products
|
||||
|
||||
null
|
||||
@@ -1,116 +0,0 @@
|
||||
---
|
||||
title: Terms
|
||||
excerpt: Delivery and Payment Terms of KLZ Vertriebs GmbH.
|
||||
featuredImage: null
|
||||
locale: en
|
||||
---
|
||||
|
||||
*Status January 2026*
|
||||
|
||||
## 1. General
|
||||
|
||||
These delivery and payment terms (DPT) of KLZ Vertriebs GmbH apply exclusively; contrary or deviating conditions of the customer are not recognized by us, unless we have expressly agreed in writing to their validity. Our DPT also apply if we execute the delivery to the customer without reservation in knowledge of contrary or deviating conditions of the order. Our DPT only apply to entrepreneurs within the meaning of § 310 (1) BGB as well as legal persons of public law or public-law special assets.
|
||||
|
||||
Side agreements, reservations, changes, supplements, etc. require our written confirmation for their validity.
|
||||
|
||||
References to the applicability of legal provisions have only clarifying significance. Even without such clarification, the legal provisions therefore apply, insofar as they are not directly amended or expressly excluded in these DPT.
|
||||
|
||||
## 2. Offers
|
||||
|
||||
Unless expressly designated as binding, our offers are non-binding; the customer's order is to be qualified as an offer according to § 145 BGB.
|
||||
|
||||
## 3. Prices
|
||||
|
||||
The prices apply to the scope of services and deliveries listed in our offers and order confirmations. Additional services will be charged separately. The hollow prices are in Euro plus metal surcharge, if applicable packaging, order-specific cutting costs and the statutory value-added tax.
|
||||
|
||||
## 4. Metal quotation
|
||||
|
||||
Basis for copper billing is the quotation "LME Copper official price cash offer", average of the delivery month plus the then current copper premium named by us.
|
||||
|
||||
Basis for aluminum billing is the quotation "LME Aluminium official price cash offer", average of the delivery month plus the then current aluminum premium named by us. USD are converted to EUR on the basis of the EUR/USD LME-FX-Rate (MTLE). The corresponding quotations can be taken from the website [www.westmetall.com](https://www.westmetall.com). The premium surcharges can vary strongly and KLZ reserves the right to adjust these in due time, regardless of the offer submission.
|
||||
|
||||
## 5. Metal number
|
||||
|
||||
The metal number indicated by us is a purely commercial calculation figure for the metal content, which goes into the calculation of the total price of a cable. Thereby we comply with your wish to enable comparability in your system on hollow price basis. The metal number does not indicate the weight of the conductor metal actually contained in the cable. It is a purely calculatory calculation factor, however, which does not allow any direct conclusions on the copper or aluminum quantities used in the cable. We expressly point out that only the full price should be used for comparison purposes. Insofar as you wish to use other metal numbers as a basis, we are happy to recalculate the offer in its components. However, the full price remains the same amount in any change.
|
||||
|
||||
## 6. Order change / Order cancellation
|
||||
|
||||
After order confirmation, changes to confirmed orders are only accepted after examination and separate express consent by us. We reserve the right in all order changes to charge the additional effort caused by the change, such as processing costs or disposal costs in the bill.
|
||||
|
||||
## 7. Retention of title
|
||||
|
||||
We retain title to the goods delivered by us – hereinafter: reserved goods – until full settlement of all our claims from the business relationship with the orderer. The retention of title also remains in effect if individual claims are included in a running account (current account reservation).
|
||||
|
||||
## 8. Payment terms | Offsetting | Right of retention
|
||||
|
||||
Our invoices are payable 10 days after invoice date without any deduction. Invoicing or date is basically the day of handover to the forwarder as far as we deliver from our German warehouses. Otherwise, in the case of direct imports, the day of customs clearance, which is close to the delivery day, applies. In case of non-compliance with the agreed payment terms, we are entitled to calculate interest at a rate of 7 percentage points above the base interest rate; the right to assert further damages, in particular proven higher interest, remains unaffected by this.
|
||||
|
||||
## 9. Delivery reservation | Partial deliveries
|
||||
|
||||
All delivery promises on our part are subject, unless otherwise expressly agreed in writing, to the reservation of correct and timely delivery by our producers. We reserve the right to partial deliveries at any time. In addition, we reserve the right to industry-standard over- or underdeliveries up to 10% of the ordered quantity.
|
||||
|
||||
## 10. Delivery periods and dates
|
||||
|
||||
The delivery period is individually agreed or stated by us upon acceptance of the order. If we cannot meet binding delivery periods for reasons for which we are not responsible (non-availability of the service), we will inform the customer of this immediately and at the same time communicate the expected new delivery period. If the service is also not available within the new delivery period, we are entitled to withdraw from the contract in whole or in part. An already rendered consideration of the customer will be refunded immediately. Non-availability of the service exists, for example, in case of non-timely self-supply by our supplier, if we have concluded a congruent covering transaction, in case of other disruptions in the supply chain due to force majeure or if we are not obliged to procure in individual cases.
|
||||
|
||||
The occurrence of our delivery delay is determined according to the legal provisions. In any case, however, a dunning by the buyer is required.
|
||||
|
||||
The legal rights remain otherwise unaffected.
|
||||
|
||||
Fixed transactions require the express written designation as such. Otherwise, the orderer is always obliged to set us a reasonable grace period in writing if promised dates and/or periods are not met. If the grace period is also not met, the orderer is entitled to withdraw from the contract.
|
||||
|
||||
In case of force majeure and/or other unforeseeable extraordinary and/or unavoidable circumstances, even if they occur at our supplier, a promised delivery period is extended until the remediation of the aforementioned event. If this point in time is not foreseeable, both the orderer and we are entitled to withdraw from the concluded contract. In this case, both sides' claims for damages are excluded. We undertake, upon becoming aware of the aforementioned circumstances, to inform the orderer hereof immediately to notify.
|
||||
|
||||
If compliance with a date depends on the orderer providing certain information and/or plans, release declarations or similar, the delivery period only begins to run from the point in time at which the complete information of the orderer is available to us in writing. If the delivery is postponed beyond the contractually foreseen point in time at the request of the orderer, we can, starting with a period of at least 10 working days after notification of readiness for shipment, charge the orderer a storage fee of 2% of the invoice amount for each month started, however maximum 10% in total.
|
||||
|
||||
## 11. Call-off orders
|
||||
|
||||
If a call-off order is issued to us and no separate written agreements are made about the call-off dates, the orderer is obliged to inform us of the individual call-off dates in such a way that between receipt of the call-off notification with us and delivery at least 14 working days and the last delivery at the latest 90 days after our order confirmation lie.
|
||||
|
||||
## 12. Dimension and weight specifications
|
||||
|
||||
All information about diameter, weight, technical design, manufacture and scope of the goods to be delivered by us are subject to the reservation of deviation within the commercially usual permissible tolerances. Furthermore, we reserve the right to make changes that serve technical improvement at any time. Color deviations and/or deviations in the external characteristics of the goods to be delivered by us, which however leave their quality and technical effectiveness unaffected, do not give rise to any claims for defects by the orderer.
|
||||
|
||||
## 13. Transfer of risk and burden
|
||||
|
||||
Delivery is made DAP free destination Germany, where the place of performance for delivery and any subsequent performance is also located.
|
||||
|
||||
If the ordered goods are made ready for shipment by us and/or the dispatch and/or the call-off is delayed for reasons for which the orderer is responsible, we are entitled to demand compensation for the damage resulting therefrom including additional expenses for storage. For this, we calculate a flat-rate compensation of 2% of the invoice amount for each month started, however maximum 10% in total, starting with the delivery period or – lacking a delivery period – with the notification of readiness for shipment of the goods.
|
||||
|
||||
Proof of higher damage and our legal claims (in particular compensation for additional expenses, reasonable compensation, termination) remain unaffected; the flat-rate is however to be credited against further monetary claims. The orderer is permitted to prove that no damage or only a substantially lower damage than the aforementioned flat-rate has arisen for us. Returns to us, which have not been confirmed by us in writing beforehand, are at the sole risk of the orderer.
|
||||
|
||||
## 14. Liability for defects
|
||||
|
||||
We are only liable for compliance with objective requirements for the goods if and insofar as no quality agreement has been concluded between the orderer and us. The subjective requirements to be met take precedence over the objective requirements to be met. In case of doubt, the agreed requirements for the goods result from the data sheet provided by us. Individual, not always unavoidable marginal deviations may be remedied by repairs, such as sleeve cuffs.
|
||||
|
||||
Any claims for defects by the orderer presuppose that the orderer checks the goods sent to him immediately, i.e. usually immediately upon delivery (still in the presence of the carrier) for their proper condition and notifies us of visible defects to be recorded immediately after receipt of the goods and hidden defects immediately after their discovery in writing. Insofar as a timely, not only insignificant defect of the purchase item exists, we are entitled at our choice to remedy the defect or to make an replacement delivery (subsequent performance).
|
||||
|
||||
We do not assume any installation or removal costs within the scope of subsequent performance, if and insofar as the defectiveness of the goods was known to the orderer at the time of installation or grossly negligent unknown remained.
|
||||
|
||||
If we are not willing or able to remedy the defect/make a replacement delivery or if this is delayed beyond reasonable periods for reasons for which we are responsible, or if it fails in any other way, the orderer is entitled at his choice to withdraw from the contract or to demand a corresponding reduction of the purchase price.
|
||||
|
||||
Further claims of the orderer, regardless of the legal basis, are excluded or limited according to the detailed provisions in the following item 15.
|
||||
|
||||
The limitation periods for claims for defects are 24 months from delivery of the goods.
|
||||
|
||||
If there are different opinions regarding cable damage in the event of a defect notification, only the expertise of the VDE Institute itself applies in case of doubt. We do not accept other, even accredited test laboratories.
|
||||
|
||||
We expressly point out that when laying the cable in the trench or in pipes, or in buildings, a constant visual inspection must be carried out by the cable layer to check for any noticeable features. A later complaint that suggests negligent behavior is thus restricted. This also applies to the acceptance of the goods, where obvious damage must be communicated directly. Subsequent claims after acceptance of a faultless delivery must be proven in detail.
|
||||
|
||||
## 15. Damages | Total liability
|
||||
|
||||
We are liable without limitation only for intent and gross negligence as well as for damage resulting from a violation of life, body or health, which is based on at least negligent breach of duty on our part or on the part of our legal representatives or vicarious agents; we are also liable without limitation in the case of guarantees and assurances assumed or given by us, insofar as a defect covered by them triggers our liability, as well as in the case of liability under the Product Liability Act or other risk liability provisions. In the case of other culpable violation of essential contractual obligations ("cardinal obligations"), our remaining liability is limited to the contract-typical foreseeable damage. Consequential damages as well as lost profits are fundamentally excluded.
|
||||
|
||||
## 16. Cable drums
|
||||
|
||||
Our cables are delivered on stable solid wood drums. Upon request, we will mediate partners who will pick up these drums for a fee.
|
||||
|
||||
## 17. Other
|
||||
|
||||
Only the law of the Federal Republic of Germany applies, excluding the UN Convention on Contracts for the International Sale of Goods (CISG). The place of jurisdiction is at our choice Stuttgart, the place of performance for the delivery obligation or the court responsible for the seat of the orderer, provided the orderer is a merchant, a legal person under public law or a public-law special asset or has no general place of jurisdiction in Germany.
|
||||
|
||||
With the publication of these DPT on the Internet, all previously used conditions of ours become void.
|
||||
|
||||
Remshalden, January 28, 2026
|
||||
|
||||
[Download as PDF](/AGB-KLZ-1-2026.pdf)
|
||||
@@ -242,11 +242,11 @@ locale: de
|
||||
]
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
|
||||
<h2>Technische Übersicht</h2>
|
||||
<p>Die <strong>N2X(F)K2Y-Hochspannungskabelserie</strong> ist speziell für den Einsatz in Hochspannungsanwendungen konzipiert, wobei sie eine optimale Leistung durch die Verwendung von hochleitfähigem Kupfer und einer fortschrittlichen XLPE-Isolierung bietet. Diese Kombination gewährleistet eine hohe Durchschlagsfestigkeit und eine effiziente Thermozyklierung unter verschiedenen Betriebsbedingungen.</p>
|
||||
</section>
|
||||
<section>
|
||||
|
||||
|
||||
<h2>Technische Leistung und Konstruktion</h2>
|
||||
<p>Die Kabel der N2X(F)K2Y-Serie sind für ihre hohe <strong>Strombelastbarkeit</strong> und <strong>Kurzschlussstromfestigkeit</strong> bekannt, was sie zu einer zuverlässigen Wahl für kritische Infrastrukturen macht. Die <strong>elektromagnetische Verträglichkeit</strong> wird durch eine sorgfältige Konstruktion sichergestellt, die Spannungsinduzierungen minimiert und die Signalintegrität in komplexen Installationsszenarien bewahrt.</p>
|
||||
<ul>
|
||||
@@ -254,11 +254,11 @@ locale: de
|
||||
<li>XLPE-Isolierung für verbesserte dielektrische Stärke und thermische Beständigkeit</li>
|
||||
<li>Entwickelt für Verlegung in <strong>Kleeblattformation</strong> und <strong>Erdverlegung</strong>, optimiert für mechanische Stabilität und Wärmeableitung</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section>
|
||||
|
||||
|
||||
<h2>Normen und Konformität</h2>
|
||||
<p>Die Kabel entsprechen den internationalen Normen, einschließlich <strong>IEC-Konformität</strong> und <strong>CPR-Klassifizierung</strong>, und sind mit der <strong>CE-Kennzeichnung</strong> versehen. Diese Zertifizierungen bestätigen die Eignung der Kabel für den Einsatz unter den anspruchsvollsten Bedingungen und garantieren eine hohe Sicherheit und Zuverlässigkeit.</p>
|
||||
<p>Verfügbar in mehreren Konfigurationen, um den unterschiedlichen Anforderungen der Projekte gerecht zu werden, bietet die N2X(F)K2Y-Serie eine flexible Lösung für Hochspannungsanwendungen.</p>
|
||||
</section>
|
||||
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -210,11 +210,11 @@ locale: de
|
||||
]
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
|
||||
<h2>Technische Übersicht</h2>
|
||||
<p>Die <strong>N2X(F)KLD2Y-Hochspannungskabel Serie 2</strong> sind speziell für den Einsatz in Hochspannungsanwendungen konzipiert, wobei sie eine optimale Leistung durch die Verwendung von hochleitfähigen Kupferleitern und einer fortschrittlichen XLPE-Isolierung bieten. Diese Kabelserie ist besonders geeignet für anspruchsvolle industrielle Umgebungen, wo hohe Durchschlagsfestigkeit und Thermozyklierungsfähigkeit erforderlich sind.</p>
|
||||
</section>
|
||||
<section>
|
||||
|
||||
|
||||
<h2>Technische Leistung und Konstruktion</h2>
|
||||
<p>Die Kabel der Serie N2X(F)KLD2Y sind für ihre hohe <strong>Strombelastbarkeit</strong> und ausgezeichnete <strong>Kurzschlussstromfestigkeit</strong> bekannt. Die spezielle Konstruktion mit Kupferleitern und XLPE-Isolierung sorgt für eine hohe <strong>Durchschlagsfestigkeit</strong> und verbesserte <strong>thermische Eigenschaften</strong>, was sie ideal für den Einsatz in Hochspannungsnetzen macht.</p>
|
||||
<ul>
|
||||
@@ -222,14 +222,14 @@ locale: de
|
||||
<li>XLPE-Isolierung bietet erhöhte thermische Beständigkeit und Langlebigkeit</li>
|
||||
<li>Entwickelt für Installationen in <strong>Kleeblattformation</strong>, <strong>Erdverlegung</strong> und auf <strong>Kabeltrassen</strong></li>
|
||||
</ul>
|
||||
</section>
|
||||
<section>
|
||||
|
||||
|
||||
<h2>EMV und Normkonformität</h2>
|
||||
<p>Die Kabelserie erfüllt strenge Anforderungen an die <strong>elektromagnetische Verträglichkeit</strong> (EMV), minimiert Spannungsinduzierungen und sorgt für eine zuverlässige Funktion in elektromagnetisch anspruchsvollen Umgebungen. Die Einhaltung der <strong>IEC-Normen</strong>, <strong>CPR-Klassifizierung</strong> und die <strong>CE-Kennzeichnung</strong> bestätigen die hohe Qualität und Sicherheit dieser Kabelserie.</p>
|
||||
<ul>
|
||||
<li>Konformität mit internationalen und europäischen Standards für Sicherheit und Leistung</li>
|
||||
<li>Optimierte Abschirmtechniken zur Reduzierung von elektromagnetischen Störungen</li>
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -915,13 +915,13 @@ locale: de
|
||||
]
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h3 data-start="508" data-end="571">Flexibel im Einsatz – unter Erde, Wasser und auf Pritschen</h3>
|
||||
<p data-start="573" data-end="950">Das <strong data-start="577" data-end="591">N2XS(FL)2Y</strong> ist konzipiert für die <strong data-start="615" data-end="698">Verlegung im Erdreich, in Kabelkanälen, in Rohren, im Freien und in Innenräumen</strong>. Es entspricht der Norm <strong data-start="723" data-end="736">IEC 60840</strong> und lässt sich individuell auf projektspezifische Anforderungen anpassen. Typisch eingesetzt wird es in <strong data-start="841" data-end="906">Übertragungsnetzen, Umspannwerken und großen Industrieanlagen</strong>, wo maximale Zuverlässigkeit gefordert ist.</p>
|
||||
<h3 data-start="952" data-end="975">Technischer Aufbau</h3>
|
||||
<p data-start="977" data-end="1539">Das Kabel verfügt über einen <strong data-start="1006" data-end="1062">mehrdrähtigen Kupferleiter (Klasse 2 nach IEC 60228)</strong>. Die Isolation besteht aus <strong data-start="1090" data-end="1123">vernetztem Polyethylen (XLPE)</strong>, eingebettet zwischen einer <strong data-start="1152" data-end="1180">leitfähigen Innenschicht</strong> und einer <strong data-start="1191" data-end="1232">leitfähigen äußeren Isolationsschicht</strong>. Eine <strong data-start="1239" data-end="1265">quellfähige Bandierung</strong> sorgt gemeinsam mit <strong data-start="1286" data-end="1334">Kupferdrähten und einer offenen Kupferwendel</strong> für eine effektive Abschirmung. Der Außenmantel besteht aus <strong data-start="1395" data-end="1401">PE</strong>, das mit einer <strong data-start="1417" data-end="1451">Aluminiumkaschierung (Alucopo)</strong> fest verbunden ist – optimaler Schutz gegen <strong data-start="1496" data-end="1538">mechanische Belastung und Feuchtigkeit</strong>.</p>
|
||||
<h3 data-start="1541" data-end="1561">Einsatzmerkmale</h3>
|
||||
<p data-start="1563" data-end="1902">Das N2XS(FL)2Y ist <strong data-start="1582" data-end="1611">wasserdicht, erdverlegbar</strong> und mechanisch belastbar – und dank seiner <strong data-start="1655" data-end="1700">mehrschichtigen Schirm- und Quellstruktur</strong> besonders für kritische Hochspannungsanwendungen geeignet. Die elektrische Leistungsfähigkeit wird projektbezogen berechnet – so lässt sich das Kabel exakt an die Anforderungen im Netzbetrieb anpassen.</p>
|
||||
</section>
|
||||
|
||||
<h3>Flexibel im Einsatz – unter Erde, Wasser und auf Pritschen</h3>
|
||||
<p>Das <strong>N2XS(FL)2Y</strong> ist konzipiert für die <strong>Verlegung im Erdreich, in Kabelkanälen, in Rohren, im Freien und in Innenräumen</strong>. Es entspricht der Norm <strong>IEC 60840</strong> und lässt sich individuell auf projektspezifische Anforderungen anpassen. Typisch eingesetzt wird es in <strong>Übertragungsnetzen, Umspannwerken und großen Industrieanlagen</strong>, wo maximale Zuverlässigkeit gefordert ist.</p>
|
||||
<h3>Technischer Aufbau</h3>
|
||||
<p>Das Kabel verfügt über einen <strong>mehrdrähtigen Kupferleiter (Klasse 2 nach IEC 60228)</strong>. Die Isolation besteht aus <strong>vernetztem Polyethylen (XLPE)</strong>, eingebettet zwischen einer <strong>leitfähigen Innenschicht</strong> und einer <strong>leitfähigen äußeren Isolationsschicht</strong>. Eine <strong>quellfähige Bandierung</strong> sorgt gemeinsam mit <strong>Kupferdrähten und einer offenen Kupferwendel</strong> für eine effektive Abschirmung. Der Außenmantel besteht aus <strong>PE</strong>, das mit einer <strong>Aluminiumkaschierung (Alucopo)</strong> fest verbunden ist – optimaler Schutz gegen <strong>mechanische Belastung und Feuchtigkeit</strong>.</p>
|
||||
<h3>Einsatzmerkmale</h3>
|
||||
<p>Das N2XS(FL)2Y ist <strong>wasserdicht, erdverlegbar</strong> und mechanisch belastbar – und dank seiner <strong>mehrschichtigen Schirm- und Quellstruktur</strong> besonders für kritische Hochspannungsanwendungen geeignet. Die elektrische Leistungsfähigkeit wird projektbezogen berechnet – so lässt sich das Kabel exakt an die Anforderungen im Netzbetrieb anpassen.</p>
|
||||
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -242,11 +242,11 @@ locale: de
|
||||
]
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
|
||||
<h2>Technische Übersicht</h2>
|
||||
<p>Die <strong>NA2X(F)K2Y-Hochspannungskabelserie</strong> ist speziell für den Einsatz in Hochspannungsanwendungen entwickelt worden, wobei sie sich durch eine hohe Strombelastbarkeit und exzellente Kurzschlussstromfestigkeit auszeichnet. Diese Kabel sind mit einer fortschrittlichen XLPE-Isolierung ausgestattet, die eine hohe Durchschlagsfestigkeit und Thermozyklierungsfähigkeit bietet.</p>
|
||||
</section>
|
||||
<section>
|
||||
|
||||
|
||||
<h2>Installations- und Konstruktionsmerkmale</h2>
|
||||
<p>Die NA2X(F)K2Y-Kabel sind für verschiedene Verlegeverfahren wie Erdverlegung, Kabeltrassen-Montage und Kleeblattformation geeignet. Diese Flexibilität in der Installation macht sie zu einer bevorzugten Wahl für vielfältige industrielle Anwendungen.</p>
|
||||
<ul>
|
||||
@@ -254,14 +254,14 @@ locale: de
|
||||
<li>XLPE-Isolierung gewährleistet eine verbesserte thermische Beständigkeit und Langlebigkeit unter extremen Betriebsbedingungen.</li>
|
||||
<li>Die Kabelkonstruktion unterstützt die Einhaltung der EMV-Anforderungen und minimiert die Risiken der Spannungsinduzierung.</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section>
|
||||
|
||||
|
||||
<h2>Normen und Zertifizierungen</h2>
|
||||
<p>Die Einhaltung internationaler und regionaler Normen ist für die NA2X(F)K2Y-Kabelserie von entscheidender Bedeutung. Diese Produkte sind vollständig IEC-konform und tragen die CE-Kennzeichnung, was ihre Qualität und Sicherheit in verschiedenen Anwendungsbereichen bestätigt.</p>
|
||||
<ul>
|
||||
<li>CPR-Klassifizierung sorgt für die Einhaltung strenger europäischer Sicherheitsstandards.</li>
|
||||
<li>Die Kabelserie erfüllt die Anforderungen für hohe Spannungsklassen und bietet zuverlässige Leistung in anspruchsvollen Umgebungen.</li>
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -220,11 +220,11 @@ locale: de
|
||||
]
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
|
||||
<h2>Technische Übersicht</h2>
|
||||
<p>Die <strong>NA2X(F)KLD2Y-Hochspannungskabelserie</strong> ist für den Einsatz in Hochspannungsanwendungen konzipiert und bietet eine optimale Lösung für anspruchsvolle industrielle Umgebungen. Mit ihrer fortschrittlichen XLPE-Isolierung und Kupferleitern erfüllt sie hohe Anforderungen an die <strong>Durchschlagsfestigkeit</strong> und <strong>Thermozyklierung</strong>.</p>
|
||||
</section>
|
||||
<section>
|
||||
|
||||
|
||||
<h2>Technische Leistung und Konstruktion</h2>
|
||||
<p>Die Kabelserie ist entwickelt, um eine hohe <strong>Strombelastbarkeit</strong> und <strong>Kurzschlussstromfestigkeit</strong> zu gewährleisten. Die Verwendung von hochreinem Kupfer maximiert die Leitfähigkeit und unterstützt effiziente Energieübertragung. Die XLPE-Isolierung bietet eine hervorragende thermische Beständigkeit und ermöglicht den Einsatz in verschiedenen thermischen Bedingungen.</p>
|
||||
<ul>
|
||||
@@ -232,8 +232,8 @@ locale: de
|
||||
<li>Optimierte Kabelgeometrie zur Unterstützung der <strong>elektromagnetischen Verträglichkeit</strong> (EMV)</li>
|
||||
<li>Effektive Spannungsinduzierungsreduktion durch spezielle Abschirmtechniken</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section>
|
||||
|
||||
|
||||
<h2>Installations- und Normkonformität</h2>
|
||||
<p>Die NA2X(F)KLD2Y-Kabelserie unterstützt diverse Verlegeverfahren wie <strong>Erdverlegung</strong>, <strong>Kabeltrassen-Montage</strong> und <strong>Kleeblattformation</strong>, was ihre Vielseitigkeit in der praktischen Anwendung unterstreicht. Sie entspricht den internationalen Normen, inklusive <strong>IEC-Konformität</strong>, <strong>CPR-Klassifizierung</strong> und trägt die <strong>CE-Kennzeichnung</strong>.</p>
|
||||
<ul>
|
||||
@@ -241,6 +241,6 @@ locale: de
|
||||
<li>Einhaltung strenger internationaler und europäischer Standards</li>
|
||||
<li>Verfügbar in mehreren Konfigurationen, um spezifische Anforderungen zu erfüllen</li>
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -779,13 +779,13 @@ locale: de
|
||||
]
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h3 data-start="443" data-end="505">Ideal für Hochspannungsanwendungen im Erdreich und im Freien</h3>
|
||||
<p data-start="507" data-end="867">Das <strong data-start="511" data-end="526">NA2XS(FL)2Y</strong> erfüllt die Anforderungen der <strong data-start="557" data-end="570">IEC 60840</strong> und eignet sich für die <strong data-start="595" data-end="669">Verlegung im Erdreich, in Kabelkanälen, in Innenräumen, in Rohren und im Freien</strong>. Es wird projektbezogen gefertigt und kommt insbesondere in <strong data-start="725" data-end="798">Übertragungsnetzen, Versorgungs-Infrastrukturen und Umspannwerken</strong> zum Einsatz, wo Sicherheit und Langlebigkeit an erster Stelle stehen.</p>
|
||||
<h3 data-start="869" data-end="904">Aufbau und technische Merkmale</h3>
|
||||
<p data-start="906" data-end="1465">Im Kern verfügt das Kabel über einen <strong data-start="927" data-end="975">verdichteten, mehrdrähtigen Aluminiumleiter</strong> nach <strong data-start="981" data-end="994">IEC 60228</strong>, eingebettet in eine <strong data-start="1016" data-end="1043">leitfähige Innenschicht</strong>, eine <strong data-start="1050" data-end="1068">VPE-Isolierung</strong> und eine <strong data-start="1078" data-end="1128">fest verbundene, extrudierte Außenschicht</strong>. Die Kombination aus <strong data-start="1150" data-end="1177">quellfähigem Band</strong>, <strong data-start="1179" data-end="1219">Kupferschirmung mit offener Wendel</strong> und einer zusätzlichen <strong data-start="1239" data-end="1263">quellfähigen Bewicklung</strong> schützt das Kabel effektiv vor Feuchtigkeitseintritt. Der schwarze <strong data-start="1336" data-end="1396">PE-Mantel mit fest verschweißter Aluminiumbandierung (Alucopo)</strong> dient sowohl als mechanischer Schutz als auch als <strong data-start="1444" data-end="1464">Querwassersperre</strong>.</p>
|
||||
<h3 data-start="1467" data-end="1505">Eigenschaften und Anwendungsvorteile</h3>
|
||||
<p data-start="1507" data-end="1827">Das NA2XS(FL)2Y ist <strong data-start="1527" data-end="1543">für die direkte Erdverlegung geeignet</strong>, <strong data-start="1545" data-end="1569">mechanisch robust</strong> und bietet durch seinen <strong data-start="1594" data-end="1625">teilentladungsfreien Aufbau</strong> sowie die wasserabweisende Konstruktion eine exzellente Betriebssicherheit. Es wird projektspezifisch konfiguriert und lässt sich flexibel einsetzen – von städtischen Energieprojekten bis hin zu großen Industrieanlagen.</p>
|
||||
</section>
|
||||
|
||||
<h3>Ideal für Hochspannungsanwendungen im Erdreich und im Freien</h3>
|
||||
<p>Das <strong>NA2XS(FL)2Y</strong> erfüllt die Anforderungen der <strong>IEC 60840</strong> und eignet sich für die <strong>Verlegung im Erdreich, in Kabelkanälen, in Innenräumen, in Rohren und im Freien</strong>. Es wird projektbezogen gefertigt und kommt insbesondere in <strong>Übertragungsnetzen, Versorgungs-Infrastrukturen und Umspannwerken</strong> zum Einsatz, wo Sicherheit und Langlebigkeit an erster Stelle stehen.</p>
|
||||
<h3>Aufbau und technische Merkmale</h3>
|
||||
<p>Im Kern verfügt das Kabel über einen <strong>verdichteten, mehrdrähtigen Aluminiumleiter</strong> nach <strong>IEC 60228</strong>, eingebettet in eine <strong>leitfähige Innenschicht</strong>, eine <strong>VPE-Isolierung</strong> und eine <strong>fest verbundene, extrudierte Außenschicht</strong>. Die Kombination aus <strong>quellfähigem Band</strong>, <strong>Kupferschirmung mit offener Wendel</strong> und einer zusätzlichen <strong>quellfähigen Bewicklung</strong> schützt das Kabel effektiv vor Feuchtigkeitseintritt. Der schwarze <strong>PE-Mantel mit fest verschweißter Aluminiumbandierung (Alucopo)</strong> dient sowohl als mechanischer Schutz als auch als <strong>Querwassersperre</strong>.</p>
|
||||
<h3>Eigenschaften und Anwendungsvorteile</h3>
|
||||
<p>Das NA2XS(FL)2Y ist <strong>für die direkte Erdverlegung geeignet</strong>, <strong>mechanisch robust</strong> und bietet durch seinen <strong>teilentladungsfreien Aufbau</strong> sowie die wasserabweisende Konstruktion eine exzellente Betriebssicherheit. Es wird projektspezifisch konfiguriert und lässt sich flexibel einsetzen – von städtischen Energieprojekten bis hin zu großen Industrieanlagen.</p>
|
||||
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -956,13 +956,13 @@ locale: de
|
||||
]
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h3 data-start="451" data-end="502">Für Erdverlegung und anspruchsvolle Umgebungen</h3>
|
||||
<p data-start="504" data-end="901">Das <strong data-start="508" data-end="518">N2XS2Y</strong> erfüllt die Normen <strong data-start="538" data-end="558">DIN VDE 0276-620</strong>, <strong data-start="560" data-end="573">HD 620 S2</strong> und <strong data-start="578" data-end="591">IEC 60502</strong>. Es eignet sich zur <strong data-start="612" data-end="725">Verlegung in Innenräumen, Kabelkanälen, im Freien, im Wasser, auf Kabelpritschen und insbesondere im Erdreich</strong>. Aufgrund seines widerstandsfähigen Mantels wird es häufig in <strong data-start="788" data-end="841">Industrieanlagen, Kraftwerken und Schaltstationen</strong> eingesetzt, wo Stabilität und Langlebigkeit gefordert sind.</p>
|
||||
<h3 data-start="903" data-end="926">Technischer Aufbau</h3>
|
||||
<p data-start="928" data-end="1367">Der Leiter besteht aus <strong data-start="951" data-end="984">blankem, mehrdrähtigem Kupfer</strong> (Klasse 2), umgeben von einer <strong data-start="1015" data-end="1038">inneren Leitschicht</strong> und einer <strong data-start="1049" data-end="1067">VPE-Isolierung</strong> mit festhaftender äußerer Leitschicht. Die Abschirmung erfolgt über eine <strong data-start="1141" data-end="1187">Kupferdraht-Umspinnung mit Querleitwendeln</strong>. Zusätzlich ist das Kabel mit einer <strong data-start="1224" data-end="1250">leitfähigen Bandierung</strong> versehen und besitzt einen <strong data-start="1278" data-end="1301">schwarzen PE-Mantel</strong> (Typ DMP2), der vor Feuchtigkeit und mechanischem Abrieb schützt.</p>
|
||||
<h3 data-start="1369" data-end="1402">Merkmale und Einsatzvorteile</h3>
|
||||
<p data-start="1404" data-end="1766">Das N2XS2Y ist <strong data-start="1419" data-end="1435">erdverlegbar</strong>, <strong data-start="1437" data-end="1465">silikon- und cadmiumfrei</strong> sowie <strong data-start="1472" data-end="1493">nicht flammwidrig</strong>. Es ist für Temperaturen bis <strong data-start="1523" data-end="1544">+90 °C im Betrieb</strong> und <strong data-start="1549" data-end="1579">+250 °C im Kurzschlussfall</strong> ausgelegt. Dank seines <strong data-start="1603" data-end="1635">teilentladungsfreien Aufbaus</strong> bietet es ein hohes Maß an Sicherheit und ist besonders gut für Netze mit hoher Belastung und schwieriger Trassenführung geeignet.</p>
|
||||
</section>
|
||||
|
||||
<h3>Für Erdverlegung und anspruchsvolle Umgebungen</h3>
|
||||
<p>Das <strong>N2XS2Y</strong> erfüllt die Normen <strong>DIN VDE 0276-620</strong>, <strong>HD 620 S2</strong> und <strong>IEC 60502</strong>. Es eignet sich zur <strong>Verlegung in Innenräumen, Kabelkanälen, im Freien, im Wasser, auf Kabelpritschen und insbesondere im Erdreich</strong>. Aufgrund seines widerstandsfähigen Mantels wird es häufig in <strong>Industrieanlagen, Kraftwerken und Schaltstationen</strong> eingesetzt, wo Stabilität und Langlebigkeit gefordert sind.</p>
|
||||
<h3>Technischer Aufbau</h3>
|
||||
<p>Der Leiter besteht aus <strong>blankem, mehrdrähtigem Kupfer</strong> (Klasse 2), umgeben von einer <strong>inneren Leitschicht</strong> und einer <strong>VPE-Isolierung</strong> mit festhaftender äußerer Leitschicht. Die Abschirmung erfolgt über eine <strong>Kupferdraht-Umspinnung mit Querleitwendeln</strong>. Zusätzlich ist das Kabel mit einer <strong>leitfähigen Bandierung</strong> versehen und besitzt einen <strong>schwarzen PE-Mantel</strong> (Typ DMP2), der vor Feuchtigkeit und mechanischem Abrieb schützt.</p>
|
||||
<h3>Merkmale und Einsatzvorteile</h3>
|
||||
<p>Das N2XS2Y ist <strong>erdverlegbar</strong>, <strong>silikon- und cadmiumfrei</strong> sowie <strong>nicht flammwidrig</strong>. Es ist für Temperaturen bis <strong>+90 °C im Betrieb</strong> und <strong>+250 °C im Kurzschlussfall</strong> ausgelegt. Dank seines <strong>teilentladungsfreien Aufbaus</strong> bietet es ein hohes Maß an Sicherheit und ist besonders gut für Netze mit hoher Belastung und schwieriger Trassenführung geeignet.</p>
|
||||
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -388,13 +388,13 @@ locale: de
|
||||
]
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h3 data-start="452" data-end="502">Entwickelt für leistungsstarke Netzumgebungen</h3>
|
||||
<p data-start="504" data-end="904">Das <strong data-start="508" data-end="521">N2XS(F)2Y</strong> erfüllt die gängigen Normen <strong data-start="550" data-end="570">DIN VDE 0276-620</strong>, <strong data-start="572" data-end="585">HD 620 S2</strong> und <strong data-start="590" data-end="603">IEC 60502</strong> und ist für die <strong data-start="620" data-end="713">Verlegung in Innenräumen, Kabelkanälen, im Freien, in Wasser, Erde und auf Kabelpritschen</strong> geeignet. Besonders in <strong data-start="737" data-end="785">EVU-Netzen, Industrieanlagen und Kraftwerken</strong> spielt dieses Kabel seine Stärken aus – überall dort, wo Langlebigkeit, Wasserdichtigkeit und Sicherheit gefragt sind.</p>
|
||||
<h3 data-start="906" data-end="946">Aufbau und technische Eigenschaften</h3>
|
||||
<p data-start="948" data-end="1387">Im Inneren befindet sich ein <strong data-start="977" data-end="1016">blanker, mehrdrähtiger Kupferleiter</strong> (Klasse 2), umgeben von einer <strong data-start="1047" data-end="1123">extrudierten VPE-Isolation mit innerer und haftender äußerer Leitschicht</strong>. Eine <strong data-start="1130" data-end="1174">längswasserdichte, leitfähige Bandierung</strong>, eine <strong data-start="1181" data-end="1234">Abschirmung aus Kupferdrähten mit Querleitwendeln</strong> und eine zusätzliche <strong data-start="1256" data-end="1282">längswasserdichte Lage</strong> sichern den Aufbau. Der schwarze <strong data-start="1316" data-end="1345">PE-Außenmantel (Typ DMP2)</strong> sorgt für hohe mechanische Belastbarkeit.</p>
|
||||
<h3 data-start="1389" data-end="1425">Anwendungsbereiche und Vorteile</h3>
|
||||
<p data-start="1427" data-end="1822">Das N2XS(F)2Y ist <strong data-start="1445" data-end="1461">erdverlegbar</strong>, <strong data-start="1463" data-end="1509">resistent gegen aggressive Umwelteinflüsse</strong> und hält <strong data-start="1519" data-end="1562">Temperaturen bis +90 °C im Dauerbetrieb</strong> sowie <strong data-start="1569" data-end="1599">+250 °C im Kurzschlussfall</strong> stand. Es ist <strong data-start="1614" data-end="1663">frei von silikon- und cadmiumhaltigen Stoffen</strong> und dank des <strong data-start="1677" data-end="1709">teilentladungsfreien Aufbaus</strong> besonders geeignet für Netze mit höchsten Anforderungen an <strong data-start="1769" data-end="1803">elektrische Betriebssicherheit</strong> und Langlebigkeit.</p>
|
||||
</section>
|
||||
|
||||
<h3>Entwickelt für leistungsstarke Netzumgebungen</h3>
|
||||
<p>Das <strong>N2XS(F)2Y</strong> erfüllt die gängigen Normen <strong>DIN VDE 0276-620</strong>, <strong>HD 620 S2</strong> und <strong>IEC 60502</strong> und ist für die <strong>Verlegung in Innenräumen, Kabelkanälen, im Freien, in Wasser, Erde und auf Kabelpritschen</strong> geeignet. Besonders in <strong>EVU-Netzen, Industrieanlagen und Kraftwerken</strong> spielt dieses Kabel seine Stärken aus – überall dort, wo Langlebigkeit, Wasserdichtigkeit und Sicherheit gefragt sind.</p>
|
||||
<h3>Aufbau und technische Eigenschaften</h3>
|
||||
<p>Im Inneren befindet sich ein <strong>blanker, mehrdrähtiger Kupferleiter</strong> (Klasse 2), umgeben von einer <strong>extrudierten VPE-Isolation mit innerer und haftender äußerer Leitschicht</strong>. Eine <strong>längswasserdichte, leitfähige Bandierung</strong>, eine <strong>Abschirmung aus Kupferdrähten mit Querleitwendeln</strong> und eine zusätzliche <strong>längswasserdichte Lage</strong> sichern den Aufbau. Der schwarze <strong>PE-Außenmantel (Typ DMP2)</strong> sorgt für hohe mechanische Belastbarkeit.</p>
|
||||
<h3>Anwendungsbereiche und Vorteile</h3>
|
||||
<p>Das N2XS(F)2Y ist <strong>erdverlegbar</strong>, <strong>resistent gegen aggressive Umwelteinflüsse</strong> und hält <strong>Temperaturen bis +90 °C im Dauerbetrieb</strong> sowie <strong>+250 °C im Kurzschlussfall</strong> stand. Es ist <strong>frei von silikon- und cadmiumhaltigen Stoffen</strong> und dank des <strong>teilentladungsfreien Aufbaus</strong> besonders geeignet für Netze mit höchsten Anforderungen an <strong>elektrische Betriebssicherheit</strong> und Langlebigkeit.</p>
|
||||
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -915,13 +915,13 @@ locale: de
|
||||
]
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h3 data-start="483" data-end="530">Für anspruchsvolle Energieverteilungsnetze</h3>
|
||||
<p data-start="532" data-end="920">Das <strong data-start="536" data-end="550">N2XS(FL)2Y</strong> erfüllt die Standards <strong data-start="573" data-end="593">DIN VDE 0276-620</strong>, <strong data-start="595" data-end="608">HD 620 S2</strong> und <strong data-start="613" data-end="626">IEC 60502</strong>. Es eignet sich hervorragend für die <strong data-start="664" data-end="762">Verlegung in Innenräumen, Kabelkanälen, im Freien, in Erde, im Wasser sowie auf Kabelpritschen</strong> – insbesondere in <strong data-start="781" data-end="833">EVU-Netzen, Industrieanlagen und Schaltstationen</strong>, wo erhöhte Anforderungen an mechanische Belastbarkeit und Wasserdichtigkeit bestehen.</p>
|
||||
<h3 data-start="922" data-end="945">Technischer Aufbau</h3>
|
||||
<p data-start="947" data-end="1455">Der Kabelaufbau basiert auf einem <strong data-start="981" data-end="1011">mehrdrähtigen Kupferleiter</strong> (Klasse 2), einer <strong data-start="1030" data-end="1047">VPE-Isolation</strong> mit extrudierter, fest haftender <strong data-start="1081" data-end="1104">äußerer Leitschicht</strong>, sowie einer <strong data-start="1118" data-end="1164">längswasserdichten, leitfähigen Bandierung</strong>. Die Abschirmung besteht aus <strong data-start="1194" data-end="1230">Kupferdrähten mit Querleitwendel</strong>, ergänzt durch eine weitere <strong data-start="1259" data-end="1291">längswasserdichte Bandierung</strong>. Der äußere Schutz wird durch eine <strong data-start="1327" data-end="1396">fest mit dem schwarzen PE-Mantel verschweißte Aluminiumbandierung</strong> realisiert – sie wirkt als effektive <strong data-start="1434" data-end="1454">Querwassersperre</strong>.</p>
|
||||
<h3 data-start="1457" data-end="1488">Eigenschaften und Vorteile</h3>
|
||||
<p data-start="1490" data-end="1897">Das N2XS(FL)2Y ist <strong data-start="1509" data-end="1525">erdverlegbar</strong>, <strong data-start="1527" data-end="1560">für Außenanwendungen geeignet</strong> und hält <strong data-start="1570" data-end="1605">Betriebstemperaturen bis +90 °C</strong> sowie <strong data-start="1612" data-end="1650">Kurzschlussbelastungen bis +250 °C</strong> stand. Es ist <strong data-start="1665" data-end="1693">silikon- und cadmiumfrei</strong> und enthält keine lackbenetzungsstörenden Substanzen. Dank seines <strong data-start="1760" data-end="1792">teilentladungsfreien Aufbaus</strong> und der Al/PE-Schicht ist es bestens geeignet für <strong data-start="1843" data-end="1896">feuchte Umgebungen mit erhöhtem Sicherheitsbedarf</strong>.</p>
|
||||
</section>
|
||||
|
||||
<h3>Für anspruchsvolle Energieverteilungsnetze</h3>
|
||||
<p>Das <strong>N2XS(FL)2Y</strong> erfüllt die Standards <strong>DIN VDE 0276-620</strong>, <strong>HD 620 S2</strong> und <strong>IEC 60502</strong>. Es eignet sich hervorragend für die <strong>Verlegung in Innenräumen, Kabelkanälen, im Freien, in Erde, im Wasser sowie auf Kabelpritschen</strong> – insbesondere in <strong>EVU-Netzen, Industrieanlagen und Schaltstationen</strong>, wo erhöhte Anforderungen an mechanische Belastbarkeit und Wasserdichtigkeit bestehen.</p>
|
||||
<h3>Technischer Aufbau</h3>
|
||||
<p>Der Kabelaufbau basiert auf einem <strong>mehrdrähtigen Kupferleiter</strong> (Klasse 2), einer <strong>VPE-Isolation</strong> mit extrudierter, fest haftender <strong>äußerer Leitschicht</strong>, sowie einer <strong>längswasserdichten, leitfähigen Bandierung</strong>. Die Abschirmung besteht aus <strong>Kupferdrähten mit Querleitwendel</strong>, ergänzt durch eine weitere <strong>längswasserdichte Bandierung</strong>. Der äußere Schutz wird durch eine <strong>fest mit dem schwarzen PE-Mantel verschweißte Aluminiumbandierung</strong> realisiert – sie wirkt als effektive <strong>Querwassersperre</strong>.</p>
|
||||
<h3>Eigenschaften und Vorteile</h3>
|
||||
<p>Das N2XS(FL)2Y ist <strong>erdverlegbar</strong>, <strong>für Außenanwendungen geeignet</strong> und hält <strong>Betriebstemperaturen bis +90 °C</strong> sowie <strong>Kurzschlussbelastungen bis +250 °C</strong> stand. Es ist <strong>silikon- und cadmiumfrei</strong> und enthält keine lackbenetzungsstörenden Substanzen. Dank seines <strong>teilentladungsfreien Aufbaus</strong> und der Al/PE-Schicht ist es bestens geeignet für <strong>feuchte Umgebungen mit erhöhtem Sicherheitsbedarf</strong>.</p>
|
||||
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -951,13 +951,13 @@ locale: de
|
||||
]
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h3 data-start="435" data-end="481">Für kraftvolle Mittelspannungsanwendungen</h3>
|
||||
<p data-start="483" data-end="868">Das <strong data-start="487" data-end="496">N2XSY</strong> erfüllt die Normen <strong data-start="516" data-end="536">DIN VDE 0276-620</strong>, <strong data-start="538" data-end="551">HD 620 S2</strong> und <strong data-start="556" data-end="569">IEC 60502</strong>. Es ist ausgelegt für die <strong data-start="596" data-end="708">Verlegung in Innenräumen, Kabelkanälen, im Wasser, im Erdreich oder im Freien (bei geschützter Installation)</strong>. Ob in <strong data-start="716" data-end="768">Industrieanlagen, Kraftwerken oder Schaltanlagen</strong> – dieses Kabel sorgt für eine sichere und verlustarme Energieübertragung im Mittelspannungsbereich.</p>
|
||||
<h3 data-start="870" data-end="905">Aufbau und technische Merkmale</h3>
|
||||
<p data-start="907" data-end="1380">Das Kabel besteht aus einem <strong data-start="935" data-end="974">blanken, mehrdrähtigen Kupferleiter</strong> (Kl. 2), der von einer <strong data-start="998" data-end="1015">VPE-Isolation</strong> mit festhaftender <strong data-start="1034" data-end="1057">äußerer Leitschicht</strong> umgeben ist. Eine <strong data-start="1076" data-end="1101">leitfähige Bandierung</strong>, eine <strong data-start="1108" data-end="1160">Abschirmung aus Kupferdrähten mit Querleitwendel</strong>, zusätzliche Bandierung und ein <strong data-start="1193" data-end="1213">roter PVC-Mantel</strong> (Typ DMV6) runden den Aufbau ab. Die extrudierte Kombination von Isolierung und Leitschicht sorgt für einen <strong data-start="1322" data-end="1354">teilentladungsfreien Betrieb</strong> und hohe Zuverlässigkeit.</p>
|
||||
<h3 data-start="1382" data-end="1420">Eigenschaften und Einsatzvorteile</h3>
|
||||
<p data-start="1422" data-end="1807">Das N2XSY Kabel ist <strong data-start="1442" data-end="1458">erdverlegbar</strong>, <strong data-start="1460" data-end="1501">flammwidrig nach DIN VDE 0482-332-1-2</strong> und <strong data-start="1506" data-end="1555">frei von silikon- und cadmiumhaltigen Stoffen</strong>. Mit <strong data-start="1561" data-end="1590">+90 °C Betriebstemperatur</strong> und <strong data-start="1595" data-end="1627">+250 °C Kurzschlussresistenz</strong> eignet es sich ideal für Netze mit hoher thermischer Belastung. Die ausgezeichneten Verlegeeigenschaften ermöglichen auch bei schwieriger Streckenführung eine einfache Handhabung.</p>
|
||||
</section>
|
||||
|
||||
<h3>Für kraftvolle Mittelspannungsanwendungen</h3>
|
||||
<p>Das <strong>N2XSY</strong> erfüllt die Normen <strong>DIN VDE 0276-620</strong>, <strong>HD 620 S2</strong> und <strong>IEC 60502</strong>. Es ist ausgelegt für die <strong>Verlegung in Innenräumen, Kabelkanälen, im Wasser, im Erdreich oder im Freien (bei geschützter Installation)</strong>. Ob in <strong>Industrieanlagen, Kraftwerken oder Schaltanlagen</strong> – dieses Kabel sorgt für eine sichere und verlustarme Energieübertragung im Mittelspannungsbereich.</p>
|
||||
<h3>Aufbau und technische Merkmale</h3>
|
||||
<p>Das Kabel besteht aus einem <strong>blanken, mehrdrähtigen Kupferleiter</strong> (Kl. 2), der von einer <strong>VPE-Isolation</strong> mit festhaftender <strong>äußerer Leitschicht</strong> umgeben ist. Eine <strong>leitfähige Bandierung</strong>, eine <strong>Abschirmung aus Kupferdrähten mit Querleitwendel</strong>, zusätzliche Bandierung und ein <strong>roter PVC-Mantel</strong> (Typ DMV6) runden den Aufbau ab. Die extrudierte Kombination von Isolierung und Leitschicht sorgt für einen <strong>teilentladungsfreien Betrieb</strong> und hohe Zuverlässigkeit.</p>
|
||||
<h3>Eigenschaften und Einsatzvorteile</h3>
|
||||
<p>Das N2XSY Kabel ist <strong>erdverlegbar</strong>, <strong>flammwidrig nach DIN VDE 0482-332-1-2</strong> und <strong>frei von silikon- und cadmiumhaltigen Stoffen</strong>. Mit <strong>+90 °C Betriebstemperatur</strong> und <strong>+250 °C Kurzschlussresistenz</strong> eignet es sich ideal für Netze mit hoher thermischer Belastung. Die ausgezeichneten Verlegeeigenschaften ermöglichen auch bei schwieriger Streckenführung eine einfache Handhabung.</p>
|
||||
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -1100,13 +1100,13 @@ locale: de
|
||||
]
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h3 data-start="462" data-end="510">Für raue Umgebungen und intensive Belastung</h3>
|
||||
<p data-start="512" data-end="900">Das <strong data-start="516" data-end="527">NA2XS2Y</strong> erfüllt die Normen <strong data-start="547" data-end="567">DIN VDE 0276-620</strong>, <strong data-start="569" data-end="582">HD 620 S2</strong> und <strong data-start="587" data-end="600">IEC 60502</strong> und ist speziell für die <strong data-start="626" data-end="708">feste Verlegung in Innenräumen, Kabelkanälen, im Freien, in Erde und in Wasser</strong> ausgelegt. Es findet seinen Einsatz in <strong data-start="748" data-end="801">Industrieanlagen, Schaltstationen und Kraftwerken</strong>, besonders dort, wo das Kabel beim Verlegen oder im Betrieb <strong data-start="862" data-end="894">mechanisch stark beansprucht</strong> wird.</p>
|
||||
<h3 data-start="902" data-end="937">Aufbau und technische Merkmale</h3>
|
||||
<p data-start="939" data-end="1476">Das Kabel ist mit einem <strong data-start="963" data-end="996">mehrdrähtigen Aluminiumleiter</strong> (Kl. 2 nach DIN VDE 0295 / IEC 60228) ausgestattet. Die <strong data-start="1053" data-end="1070">VPE-Isolation</strong> (Typ DIX8) ist untrennbar mit der <strong data-start="1105" data-end="1128">äußeren Leitschicht</strong> verbunden und sorgt gemeinsam mit der <strong data-start="1167" data-end="1190">inneren Leitschicht</strong> für einen <strong data-start="1201" data-end="1233">teilentladungsfreien Betrieb</strong>. Die <strong data-start="1239" data-end="1254">Abschirmung</strong> erfolgt über eine Umspinnung aus Kupferdrähten mit Querleitwendeln. Der Außenmantel aus <strong data-start="1343" data-end="1370">schwarzem PE (Typ DMP2)</strong> schützt vor Feuchtigkeit, mechanischem Druck und chemischen Einflüssen – allerdings ohne Flammwidrigkeit.</p>
|
||||
<h3 data-start="1478" data-end="1526">Besondere Eigenschaften und Einsatzvorteile</h3>
|
||||
<p data-start="1528" data-end="1930">NA2XS2Y ist <strong data-start="1540" data-end="1556">erdverlegbar</strong> und für den Einsatz <strong data-start="1577" data-end="1607">bei Temperaturen ab -20 °C</strong> geeignet. Es ist <strong data-start="1625" data-end="1653">silikon- und cadmiumfrei</strong>, frei von lackbenetzungsstörenden Stoffen und erreicht eine <strong data-start="1714" data-end="1754">Betriebstemperatur von bis zu +90 °C</strong>, im Kurzschlussfall sogar bis <strong data-start="1785" data-end="1796">+250 °C</strong>. Der schwarze PE-Mantel macht das Kabel zur <strong data-start="1841" data-end="1929">ideal belastbaren Lösung für dauerhafte, unterirdische Mittelspannungsinstallationen</strong>.</p>
|
||||
</section>
|
||||
|
||||
<h3>Für raue Umgebungen und intensive Belastung</h3>
|
||||
<p>Das <strong>NA2XS2Y</strong> erfüllt die Normen <strong>DIN VDE 0276-620</strong>, <strong>HD 620 S2</strong> und <strong>IEC 60502</strong> und ist speziell für die <strong>feste Verlegung in Innenräumen, Kabelkanälen, im Freien, in Erde und in Wasser</strong> ausgelegt. Es findet seinen Einsatz in <strong>Industrieanlagen, Schaltstationen und Kraftwerken</strong>, besonders dort, wo das Kabel beim Verlegen oder im Betrieb <strong>mechanisch stark beansprucht</strong> wird.</p>
|
||||
<h3>Aufbau und technische Merkmale</h3>
|
||||
<p>Das Kabel ist mit einem <strong>mehrdrähtigen Aluminiumleiter</strong> (Kl. 2 nach DIN VDE 0295 / IEC 60228) ausgestattet. Die <strong>VPE-Isolation</strong> (Typ DIX8) ist untrennbar mit der <strong>äußeren Leitschicht</strong> verbunden und sorgt gemeinsam mit der <strong>inneren Leitschicht</strong> für einen <strong>teilentladungsfreien Betrieb</strong>. Die <strong>Abschirmung</strong> erfolgt über eine Umspinnung aus Kupferdrähten mit Querleitwendeln. Der Außenmantel aus <strong>schwarzem PE (Typ DMP2)</strong> schützt vor Feuchtigkeit, mechanischem Druck und chemischen Einflüssen – allerdings ohne Flammwidrigkeit.</p>
|
||||
<h3>Besondere Eigenschaften und Einsatzvorteile</h3>
|
||||
<p>NA2XS2Y ist <strong>erdverlegbar</strong> und für den Einsatz <strong>bei Temperaturen ab -20 °C</strong> geeignet. Es ist <strong>silikon- und cadmiumfrei</strong>, frei von lackbenetzungsstörenden Stoffen und erreicht eine <strong>Betriebstemperatur von bis zu +90 °C</strong>, im Kurzschlussfall sogar bis <strong>+250 °C</strong>. Der schwarze PE-Mantel macht das Kabel zur <strong>ideal belastbaren Lösung für dauerhafte, unterirdische Mittelspannungsinstallationen</strong>.</p>
|
||||
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -1136,13 +1136,13 @@ locale: de
|
||||
]
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h3 data-start="508" data-end="575">Für leistungsstarke Versorgungsnetze mit erhöhtem Schutzbedarf</h3>
|
||||
<p data-start="577" data-end="994">Das <strong data-start="581" data-end="595">NA2XS(F)2Y</strong> entspricht den Normen <strong data-start="618" data-end="638">DIN VDE 0276-620</strong>, <strong data-start="640" data-end="653">HD 620 S2</strong> und <strong data-start="658" data-end="671">IEC 60502</strong>. Es eignet sich für die <strong data-start="696" data-end="797">Verlegung in Innenräumen, Kabelkanälen, im Erdreich, im Wasser, im Freien oder auf Kabelpritschen</strong>. Der Einsatzschwerpunkt liegt in <strong data-start="831" data-end="881">EVU-Netzen, Industrieanlagen und Umspannwerken</strong>, wo zusätzliche Sicherheitsreserven gegen eindringende Feuchtigkeit und mechanische Belastung erforderlich sind.</p>
|
||||
<h3 data-start="996" data-end="1033">Aufbau und Materialeigenschaften</h3>
|
||||
<p data-start="1035" data-end="1537">Der Leiter besteht aus <strong data-start="1058" data-end="1085">mehrdrähtigem Aluminium</strong> (Klasse 2), umgeben von einer <strong data-start="1116" data-end="1139">inneren Leitschicht</strong> und einer <strong data-start="1150" data-end="1168">VPE-Isolierung</strong> mit festhaftender äußerer Leitschicht – extrudiert in einem Arbeitsgang für maximale Betriebssicherheit. Die Abschirmung erfolgt durch eine <strong data-start="1309" data-end="1354">Kupferdraht-Umspinnung mit Querleitwendel</strong>, ergänzt durch eine <strong data-start="1375" data-end="1407">längswasserdichte Bandierung</strong>. Der Außenmantel besteht aus <strong data-start="1437" data-end="1464">schwarzem PE (Typ DMP2)</strong> und schützt zuverlässig vor mechanischer Beanspruchung und Feuchtigkeit.</p>
|
||||
<h3 data-start="1539" data-end="1577">Eigenschaften und Einsatzbereiche</h3>
|
||||
<p data-start="1579" data-end="1977">Das NA2XS(F)2Y ist <strong data-start="1598" data-end="1614">erdverlegbar</strong>, <strong data-start="1616" data-end="1644">silikon- und cadmiumfrei</strong> sowie <strong data-start="1651" data-end="1704">resistent gegen lackbenetzungsstörende Substanzen</strong>. Es hält <strong data-start="1714" data-end="1746">Dauertemperaturen bis +90 °C</strong> stand und übersteht <strong data-start="1767" data-end="1805">Kurzschlussbelastungen bis +250 °C</strong>. Dank seines durchdachten, teilentladungsfreien Aufbaus ist es besonders gut geeignet für die <strong data-start="1900" data-end="1976">sichere Energieverteilung in feuchten, komplexen Installationsumgebungen</strong>.</p>
|
||||
</section>
|
||||
|
||||
<h3>Für leistungsstarke Versorgungsnetze mit erhöhtem Schutzbedarf</h3>
|
||||
<p>Das <strong>NA2XS(F)2Y</strong> entspricht den Normen <strong>DIN VDE 0276-620</strong>, <strong>HD 620 S2</strong> und <strong>IEC 60502</strong>. Es eignet sich für die <strong>Verlegung in Innenräumen, Kabelkanälen, im Erdreich, im Wasser, im Freien oder auf Kabelpritschen</strong>. Der Einsatzschwerpunkt liegt in <strong>EVU-Netzen, Industrieanlagen und Umspannwerken</strong>, wo zusätzliche Sicherheitsreserven gegen eindringende Feuchtigkeit und mechanische Belastung erforderlich sind.</p>
|
||||
<h3>Aufbau und Materialeigenschaften</h3>
|
||||
<p>Der Leiter besteht aus <strong>mehrdrähtigem Aluminium</strong> (Klasse 2), umgeben von einer <strong>inneren Leitschicht</strong> und einer <strong>VPE-Isolierung</strong> mit festhaftender äußerer Leitschicht – extrudiert in einem Arbeitsgang für maximale Betriebssicherheit. Die Abschirmung erfolgt durch eine <strong>Kupferdraht-Umspinnung mit Querleitwendel</strong>, ergänzt durch eine <strong>längswasserdichte Bandierung</strong>. Der Außenmantel besteht aus <strong>schwarzem PE (Typ DMP2)</strong> und schützt zuverlässig vor mechanischer Beanspruchung und Feuchtigkeit.</p>
|
||||
<h3>Eigenschaften und Einsatzbereiche</h3>
|
||||
<p>Das NA2XS(F)2Y ist <strong>erdverlegbar</strong>, <strong>silikon- und cadmiumfrei</strong> sowie <strong>resistent gegen lackbenetzungsstörende Substanzen</strong>. Es hält <strong>Dauertemperaturen bis +90 °C</strong> stand und übersteht <strong>Kurzschlussbelastungen bis +250 °C</strong>. Dank seines durchdachten, teilentladungsfreien Aufbaus ist es besonders gut geeignet für die <strong>sichere Energieverteilung in feuchten, komplexen Installationsumgebungen</strong>.</p>
|
||||
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -1119,13 +1119,13 @@ locale: de
|
||||
]
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h3 data-start="481" data-end="540">Entwickelt für den Einsatz in Energieversorgungsnetzen</h3>
|
||||
<p data-start="542" data-end="974">Das <strong data-start="546" data-end="561">NA2XS(FL)2Y</strong> erfüllt die Normen <strong data-start="581" data-end="601">DIN VDE 0276-620</strong>, <strong data-start="603" data-end="616">HD 620 S2</strong> und <strong data-start="621" data-end="634">IEC 60502</strong>. Es ist ideal für die Verlegung in <strong data-start="670" data-end="765">Energieversorgungsnetzen (EVU), Innenräumen, Kabelkanälen, im Freien, in Erde und in Wasser</strong> geeignet. Dank seiner Konstruktion mit längswasserdichter Ausführung und Alu-PE-Schichtenmantel bleibt es auch bei Beschädigungen betriebssicher – der Wassereinfluss wird gezielt auf die Schadstelle begrenzt.</p>
|
||||
<h3 data-start="976" data-end="999">Technischer Aufbau</h3>
|
||||
<p data-start="1001" data-end="1556">Das Kabel besitzt einen <strong data-start="1025" data-end="1058">mehrdrähtigen Aluminiumleiter</strong> (Kl. 2 nach VDE 0295 / IEC 60228), umgeben von einer <strong data-start="1112" data-end="1130">VPE-Isolierung</strong> mit <strong data-start="1135" data-end="1172">festhaftender äußerer Leitschicht</strong>. Eine <strong data-start="1179" data-end="1223">leitfähige, längswasserdichte Bandierung</strong> sowie eine <strong data-start="1235" data-end="1281">Kupferdraht-Abschirmung mit Querleitwendel</strong> sorgen für zuverlässige Feldsteuerung. Zusätzlich ist das Kabel mit einer <strong data-start="1356" data-end="1398">längswasserdichten Aluminiumbandierung</strong> ausgestattet, die <strong data-start="1417" data-end="1453">fest mit dem schwarzen PE-Mantel</strong> verschweißt ist. Das Ergebnis: hoher Schutz vor mechanischer Belastung und eindringender Feuchtigkeit.</p>
|
||||
<h3 data-start="1558" data-end="1590">Eigenschaften und Anwendung</h3>
|
||||
<p data-start="1592" data-end="1977">Das NA2XS(FL)2Y Kabel ist <strong data-start="1618" data-end="1634">erdverlegbar</strong>, <strong data-start="1636" data-end="1664">silikon- und cadmiumfrei</strong> und eignet sich für Umgebungen mit hoher mechanischer Beanspruchung. Es hält <strong data-start="1742" data-end="1780">Temperaturen bis +90 °C im Betrieb</strong> und <strong data-start="1785" data-end="1819">bis +250 °C im Kurzschlussfall</strong> stand. Dank teilentladungsfreiem Aufbau und Querwassersperre ist es besonders gut für <strong data-start="1906" data-end="1939">kritische Versorgungsbereiche</strong> in der Energieinfrastruktur geeignet.</p>
|
||||
</section>
|
||||
|
||||
<h3>Entwickelt für den Einsatz in Energieversorgungsnetzen</h3>
|
||||
<p>Das <strong>NA2XS(FL)2Y</strong> erfüllt die Normen <strong>DIN VDE 0276-620</strong>, <strong>HD 620 S2</strong> und <strong>IEC 60502</strong>. Es ist ideal für die Verlegung in <strong>Energieversorgungsnetzen (EVU), Innenräumen, Kabelkanälen, im Freien, in Erde und in Wasser</strong> geeignet. Dank seiner Konstruktion mit längswasserdichter Ausführung und Alu-PE-Schichtenmantel bleibt es auch bei Beschädigungen betriebssicher – der Wassereinfluss wird gezielt auf die Schadstelle begrenzt.</p>
|
||||
<h3>Technischer Aufbau</h3>
|
||||
<p>Das Kabel besitzt einen <strong>mehrdrähtigen Aluminiumleiter</strong> (Kl. 2 nach VDE 0295 / IEC 60228), umgeben von einer <strong>VPE-Isolierung</strong> mit <strong>festhaftender äußerer Leitschicht</strong>. Eine <strong>leitfähige, längswasserdichte Bandierung</strong> sowie eine <strong>Kupferdraht-Abschirmung mit Querleitwendel</strong> sorgen für zuverlässige Feldsteuerung. Zusätzlich ist das Kabel mit einer <strong>längswasserdichten Aluminiumbandierung</strong> ausgestattet, die <strong>fest mit dem schwarzen PE-Mantel</strong> verschweißt ist. Das Ergebnis: hoher Schutz vor mechanischer Belastung und eindringender Feuchtigkeit.</p>
|
||||
<h3>Eigenschaften und Anwendung</h3>
|
||||
<p>Das NA2XS(FL)2Y Kabel ist <strong>erdverlegbar</strong>, <strong>silikon- und cadmiumfrei</strong> und eignet sich für Umgebungen mit hoher mechanischer Beanspruchung. Es hält <strong>Temperaturen bis +90 °C im Betrieb</strong> und <strong>bis +250 °C im Kurzschlussfall</strong> stand. Dank teilentladungsfreiem Aufbau und Querwassersperre ist es besonders gut für <strong>kritische Versorgungsbereiche</strong> in der Energieinfrastruktur geeignet.</p>
|
||||
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -1132,13 +1132,13 @@ locale: de
|
||||
]
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h3 data-start="501" data-end="546">Für leistungsstarke Mittelspannungsnetze</h3>
|
||||
<p data-start="548" data-end="961">Das <strong data-start="552" data-end="562">NA2XSY</strong> erfüllt die Anforderungen der Normen <strong data-start="600" data-end="620">DIN VDE 0276-620</strong>, <strong data-start="622" data-end="635">HD 620 S2</strong> und <strong data-start="640" data-end="653">IEC 60502</strong>. Es eignet sich für die <strong data-start="678" data-end="759">Verlegung in Innenräumen, Kabelkanälen, im Erdreich, im Wasser oder im Freien</strong> – allerdings nur bei geschützter Verlegung. Typische Einsatzorte sind <strong data-start="830" data-end="880">Industrieanlagen, Kraftwerke und Schaltanlagen</strong>, in denen Mittelspannung mit hoher Betriebssicherheit transportiert werden muss.</p>
|
||||
<h3 data-start="963" data-end="986">Technischer Aufbau</h3>
|
||||
<p data-start="988" data-end="1476">Der Leiter besteht aus <strong data-start="1011" data-end="1038">mehrdrähtigem Aluminium</strong> (Kl. 2 nach VDE 0295 / IEC 60228). Die <strong data-start="1078" data-end="1096">VPE-Isolierung</strong> ist dauerhaft mit der <strong data-start="1119" data-end="1142">äußeren Leitschicht</strong> verbunden, um eine <strong data-start="1162" data-end="1194">teilentladungsfreie Struktur</strong> zu gewährleisten. Der Aufbau umfasst außerdem eine <strong data-start="1246" data-end="1268">innere Leitschicht</strong>, <strong data-start="1270" data-end="1295">leitfähige Bandierung</strong>, eine <strong data-start="1302" data-end="1340">Cu-Abschirmung mit Querleitwendeln</strong>, zusätzliche Bandierung sowie einen <strong data-start="1377" data-end="1397">roten PVC-Mantel</strong>. Das Kabel ist flammwidrig und für <strong data-start="1433" data-end="1461">Erdverlegung freigegeben</strong> (je nach Typ).</p>
|
||||
<h3 data-start="1478" data-end="1510">Anwendung und Eigenschaften</h3>
|
||||
<p data-start="1512" data-end="1981">Dank seines präzisen Aufbaus lässt sich das NA2XSY auch bei komplexer Trassenführung gut verlegen. Es ist <strong data-start="1618" data-end="1646">silikon- und cadmiumfrei</strong>, enthält keine lackbenetzungsstörenden Stoffe und hält <strong data-start="1702" data-end="1741">Kurzschlusstemperaturen bis +250 °C</strong> stand. Der konzentrische Aufbau und die festhaftenden Leitschichten machen dieses Kabel zur <strong data-start="1834" data-end="1906">zuverlässigen Lösung für mittelspannungsgeführte Energieverteilungen</strong>, bei denen Betriebssicherheit und Montagefreundlichkeit entscheidend sind.</p>
|
||||
</section>
|
||||
|
||||
<h3>Für leistungsstarke Mittelspannungsnetze</h3>
|
||||
<p>Das <strong>NA2XSY</strong> erfüllt die Anforderungen der Normen <strong>DIN VDE 0276-620</strong>, <strong>HD 620 S2</strong> und <strong>IEC 60502</strong>. Es eignet sich für die <strong>Verlegung in Innenräumen, Kabelkanälen, im Erdreich, im Wasser oder im Freien</strong> – allerdings nur bei geschützter Verlegung. Typische Einsatzorte sind <strong>Industrieanlagen, Kraftwerke und Schaltanlagen</strong>, in denen Mittelspannung mit hoher Betriebssicherheit transportiert werden muss.</p>
|
||||
<h3>Technischer Aufbau</h3>
|
||||
<p>Der Leiter besteht aus <strong>mehrdrähtigem Aluminium</strong> (Kl. 2 nach VDE 0295 / IEC 60228). Die <strong>VPE-Isolierung</strong> ist dauerhaft mit der <strong>äußeren Leitschicht</strong> verbunden, um eine <strong>teilentladungsfreie Struktur</strong> zu gewährleisten. Der Aufbau umfasst außerdem eine <strong>innere Leitschicht</strong>, <strong>leitfähige Bandierung</strong>, eine <strong>Cu-Abschirmung mit Querleitwendeln</strong>, zusätzliche Bandierung sowie einen <strong>roten PVC-Mantel</strong>. Das Kabel ist flammwidrig und für <strong>Erdverlegung freigegeben</strong> (je nach Typ).</p>
|
||||
<h3>Anwendung und Eigenschaften</h3>
|
||||
<p>Dank seines präzisen Aufbaus lässt sich das NA2XSY auch bei komplexer Trassenführung gut verlegen. Es ist <strong>silikon- und cadmiumfrei</strong>, enthält keine lackbenetzungsstörenden Stoffe und hält <strong>Kurzschlusstemperaturen bis +250 °C</strong> stand. Der konzentrische Aufbau und die festhaftenden Leitschichten machen dieses Kabel zur <strong>zuverlässigen Lösung für mittelspannungsgeführte Energieverteilungen</strong>, bei denen Betriebssicherheit und Montagefreundlichkeit entscheidend sind.</p>
|
||||
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -823,13 +823,13 @@ locale: de
|
||||
]
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h3 data-start="448" data-end="491">Für anspruchsvolle Betriebsbedingungen</h3>
|
||||
<p data-start="493" data-end="945">Das <strong data-start="497" data-end="506">N2X2Y</strong> entspricht den Normen <strong data-start="529" data-end="550">HD 603 S1 Teil 5G</strong> und <strong data-start="555" data-end="576">HD 627 S1 Teil 4H</strong> (gleichlautend mit <strong data-start="596" data-end="616">DIN VDE 0276-603</strong> und <strong data-start="621" data-end="629">-627</strong>) und ist für eine <strong data-start="648" data-end="678">Betriebsfrequenz von 50 Hz</strong> ausgelegt. Es eignet sich für die feste Verlegung in Innenräumen, im Erdreich, im Freien und in Industrieumgebungen mit hohen Temperatur- und Belastungsanforderungen. Die maximale Betriebstemperatur liegt bei <strong data-start="888" data-end="898">+90 °C</strong>, im Kurzschlussfall sind <strong data-start="924" data-end="935">+250 °C</strong> zulässig.</p>
|
||||
<h3 data-start="947" data-end="982">Aufbau und technische Merkmale</h3>
|
||||
<p data-start="984" data-end="1334">Der Kabelaufbau besteht aus <strong data-start="1012" data-end="1029">Kupferleitern</strong> mit <strong data-start="1034" data-end="1076">VPE-Isolation (vernetztes Polyethylen)</strong>. Die Adern sind verseilt und von einem robusten, <strong data-start="1126" data-end="1151">schwarzen HDPE-Mantel</strong> umgeben. Der integrierte <strong data-start="1177" data-end="1201">konzentrische Leiter</strong> aus Kupferdrähten wird an beiden Enden geerdet und sorgt für effektiven Schutz gegen Potenzialunterschiede und Berührungsspannungen.</p>
|
||||
<h3 data-start="1336" data-end="1355">Einsatzgebiete</h3>
|
||||
<p data-start="1357" data-end="1663">N2X2Y ist ideal für Installationen in <strong data-start="1395" data-end="1442">Ortsnetzen, Umspannwerken, Industrieanlagen</strong> und <strong data-start="1447" data-end="1470">Energieverteilungen</strong>, bei denen hohe <strong data-start="1487" data-end="1515">thermische Belastbarkeit</strong> und <strong data-start="1520" data-end="1552">mechanische Widerstandskraft</strong> gefragt sind. Es bietet eine langlebige Lösung für anspruchsvolle Einsatzbedingungen – zuverlässig und sicher.</p>
|
||||
</section>
|
||||
|
||||
<h3>Für anspruchsvolle Betriebsbedingungen</h3>
|
||||
<p>Das <strong>N2X2Y</strong> entspricht den Normen <strong>HD 603 S1 Teil 5G</strong> und <strong>HD 627 S1 Teil 4H</strong> (gleichlautend mit <strong>DIN VDE 0276-603</strong> und <strong>-627</strong>) und ist für eine <strong>Betriebsfrequenz von 50 Hz</strong> ausgelegt. Es eignet sich für die feste Verlegung in Innenräumen, im Erdreich, im Freien und in Industrieumgebungen mit hohen Temperatur- und Belastungsanforderungen. Die maximale Betriebstemperatur liegt bei <strong>+90 °C</strong>, im Kurzschlussfall sind <strong>+250 °C</strong> zulässig.</p>
|
||||
<h3>Aufbau und technische Merkmale</h3>
|
||||
<p>Der Kabelaufbau besteht aus <strong>Kupferleitern</strong> mit <strong>VPE-Isolation (vernetztes Polyethylen)</strong>. Die Adern sind verseilt und von einem robusten, <strong>schwarzen HDPE-Mantel</strong> umgeben. Der integrierte <strong>konzentrische Leiter</strong> aus Kupferdrähten wird an beiden Enden geerdet und sorgt für effektiven Schutz gegen Potenzialunterschiede und Berührungsspannungen.</p>
|
||||
<h3>Einsatzgebiete</h3>
|
||||
<p>N2X2Y ist ideal für Installationen in <strong>Ortsnetzen, Umspannwerken, Industrieanlagen</strong> und <strong>Energieverteilungen</strong>, bei denen hohe <strong>thermische Belastbarkeit</strong> und <strong>mechanische Widerstandskraft</strong> gefragt sind. Es bietet eine langlebige Lösung für anspruchsvolle Einsatzbedingungen – zuverlässig und sicher.</p>
|
||||
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -876,13 +876,13 @@ locale: de
|
||||
]
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h3 data-start="514" data-end="565">Für die feste Verlegung in Standardanwendungen</h3>
|
||||
<p data-start="567" data-end="995">Das <strong data-start="571" data-end="579">N2XY</strong> wird in Niederspannungsanlagen zur Energieverteilung eingesetzt – zum Beispiel in Kabeltrassen, Rohren, auf Wänden oder direkt im Erdreich. Es lässt sich sowohl im Innen- als auch im Außenbereich installieren und ist auch für feuchte Umgebungen geeignet. Dank verschiedener Aderkonfigurationen (einadrig bis vieradrig) und Querschnitten bis 630 mm² lässt sich das Kabel flexibel an die jeweilige Anwendung anpassen.</p>
|
||||
<h3 data-start="997" data-end="1020">Technischer Aufbau</h3>
|
||||
<p data-start="1022" data-end="1346">Als Leiter dient massives oder mehrdrähtiges <strong data-start="1067" data-end="1077">Kupfer</strong> (RE oder RM), die Adern sind mit <strong data-start="1111" data-end="1144">XLPE (vernetztem Polyethylen)</strong> isoliert. Das Kabel ist eingebettet in eine <strong data-start="1189" data-end="1206">PVC-Füllmasse</strong> und wird von einem <strong data-start="1226" data-end="1245">PVC-Außenmantel</strong> umgeben, der das Kabel gegen Umwelteinflüsse und mechanische Beanspruchung im Normalbereich schützt.</p>
|
||||
<h3 data-start="1348" data-end="1387">Varianten und Einsatzmöglichkeiten</h3>
|
||||
<p data-start="1389" data-end="1779">N2XY ist sowohl als <strong data-start="1409" data-end="1419">N2XY-J</strong> (mit Schutzleiter) als auch als <strong data-start="1452" data-end="1462">N2XY-O</strong> (ohne Schutzleiter) verfügbar. Es bietet eine <strong data-start="1509" data-end="1594">platzsparende, wirtschaftliche Lösung für Verteilungen im Niederspannungsbereich</strong>, ohne auf Sicherheit oder Qualität zu verzichten. Typische Einsatzorte sind Gewerbe- und Wohnbauten, Anlageninstallationen sowie Verbindungen zwischen Schaltschränken und Verteilungen.</p>
|
||||
</section>
|
||||
|
||||
<h3>Für die feste Verlegung in Standardanwendungen</h3>
|
||||
<p>Das <strong>N2XY</strong> wird in Niederspannungsanlagen zur Energieverteilung eingesetzt – zum Beispiel in Kabeltrassen, Rohren, auf Wänden oder direkt im Erdreich. Es lässt sich sowohl im Innen- als auch im Außenbereich installieren und ist auch für feuchte Umgebungen geeignet. Dank verschiedener Aderkonfigurationen (einadrig bis vieradrig) und Querschnitten bis 630 mm² lässt sich das Kabel flexibel an die jeweilige Anwendung anpassen.</p>
|
||||
<h3>Technischer Aufbau</h3>
|
||||
<p>Als Leiter dient massives oder mehrdrähtiges <strong>Kupfer</strong> (RE oder RM), die Adern sind mit <strong>XLPE (vernetztem Polyethylen)</strong> isoliert. Das Kabel ist eingebettet in eine <strong>PVC-Füllmasse</strong> und wird von einem <strong>PVC-Außenmantel</strong> umgeben, der das Kabel gegen Umwelteinflüsse und mechanische Beanspruchung im Normalbereich schützt.</p>
|
||||
<h3>Varianten und Einsatzmöglichkeiten</h3>
|
||||
<p>N2XY ist sowohl als <strong>N2XY-J</strong> (mit Schutzleiter) als auch als <strong>N2XY-O</strong> (ohne Schutzleiter) verfügbar. Es bietet eine <strong>platzsparende, wirtschaftliche Lösung für Verteilungen im Niederspannungsbereich</strong>, ohne auf Sicherheit oder Qualität zu verzichten. Typische Einsatzorte sind Gewerbe- und Wohnbauten, Anlageninstallationen sowie Verbindungen zwischen Schaltschränken und Verteilungen.</p>
|
||||
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -797,13 +797,13 @@ locale: de
|
||||
]
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h3 data-start="488" data-end="537">Optimal für mechanisch belastete Anwendungen</h3>
|
||||
<p data-start="539" data-end="948">Das <strong data-start="543" data-end="553">NA2X2Y</strong> entspricht der Norm <strong data-start="574" data-end="603">DIN VDE 0276-603 (HD 603)</strong> und ist ausgelegt für die <strong data-start="630" data-end="717">feste Verlegung in Innenräumen, Kabelkanälen, im Erdreich, im Wasser oder im Freien</strong>. Es kommt bevorzugt in <strong data-start="741" data-end="789">Kraftwerken, Industrieanlagen, Schaltanlagen</strong> und <strong data-start="794" data-end="808">Ortsnetzen</strong> zum Einsatz – überall dort, wo robuste Kabel gefragt sind, die im Betrieb und bei der Verlegung hohen mechanischen Belastungen standhalten.</p>
|
||||
<h3 data-start="950" data-end="979">Aufbau und Eigenschaften</h3>
|
||||
<p data-start="981" data-end="1427">Der elektrische Leiter besteht aus <strong data-start="1016" data-end="1029">Aluminium</strong>, wahlweise als rund eindrähtig (RE), rund mehrdrähtig (RM) oder sektorförmig (SE/SM). Die Adern sind mit <strong data-start="1135" data-end="1150">PE isoliert</strong>, verseilt und durch eine <strong data-start="1176" data-end="1209">gemeinsame EPDM-Aderumhüllung</strong> geschützt. Der Außenmantel besteht aus <strong data-start="1249" data-end="1257">HDPE</strong>, ist schwarz, UV-beständig und besonders widerstandsfähig gegenüber Abrieb, Druck und Feuchtigkeit – ideal für langfristige Installationen in anspruchsvollen Umgebungen.</p>
|
||||
<h3 data-start="1429" data-end="1449">Einsatzvorteile</h3>
|
||||
<p data-start="1451" data-end="1756">NA2X2Y Kabel bieten eine <strong data-start="1476" data-end="1524">technisch robuste und wirtschaftliche Lösung</strong> für die Energieverteilung in Netzen mit erhöhten Anforderungen. Ihre hohe mechanische Belastbarkeit und Witterungsbeständigkeit machen sie zur ersten Wahl für anspruchsvolle Infrastrukturanwendungen im Energie- und Industriesektor.</p>
|
||||
</section>
|
||||
|
||||
<h3>Optimal für mechanisch belastete Anwendungen</h3>
|
||||
<p>Das <strong>NA2X2Y</strong> entspricht der Norm <strong>DIN VDE 0276-603 (HD 603)</strong> und ist ausgelegt für die <strong>feste Verlegung in Innenräumen, Kabelkanälen, im Erdreich, im Wasser oder im Freien</strong>. Es kommt bevorzugt in <strong>Kraftwerken, Industrieanlagen, Schaltanlagen</strong> und <strong>Ortsnetzen</strong> zum Einsatz – überall dort, wo robuste Kabel gefragt sind, die im Betrieb und bei der Verlegung hohen mechanischen Belastungen standhalten.</p>
|
||||
<h3>Aufbau und Eigenschaften</h3>
|
||||
<p>Der elektrische Leiter besteht aus <strong>Aluminium</strong>, wahlweise als rund eindrähtig (RE), rund mehrdrähtig (RM) oder sektorförmig (SE/SM). Die Adern sind mit <strong>PE isoliert</strong>, verseilt und durch eine <strong>gemeinsame EPDM-Aderumhüllung</strong> geschützt. Der Außenmantel besteht aus <strong>HDPE</strong>, ist schwarz, UV-beständig und besonders widerstandsfähig gegenüber Abrieb, Druck und Feuchtigkeit – ideal für langfristige Installationen in anspruchsvollen Umgebungen.</p>
|
||||
<h3>Einsatzvorteile</h3>
|
||||
<p>NA2X2Y Kabel bieten eine <strong>technisch robuste und wirtschaftliche Lösung</strong> für die Energieverteilung in Netzen mit erhöhten Anforderungen. Ihre hohe mechanische Belastbarkeit und Witterungsbeständigkeit machen sie zur ersten Wahl für anspruchsvolle Infrastrukturanwendungen im Energie- und Industriesektor.</p>
|
||||
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -874,13 +874,13 @@ locale: de
|
||||
]
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h3 data-start="511" data-end="550">Für anspruchsvolle Netzanwendungen</h3>
|
||||
<p data-start="552" data-end="901">Das <strong data-start="556" data-end="565">NA2XY</strong> entspricht der Norm <strong data-start="586" data-end="615">DIN VDE 0276-603 (HD 603)</strong> und ist ideal für die feste Verlegung in <strong data-start="657" data-end="725">Innenräumen, Kabelkanälen, im Freien, im Wasser oder im Erdreich</strong> geeignet. Typische Einsatzorte sind <strong data-start="762" data-end="809">Kraftwerke, Industrieanlagen, Schaltanlagen</strong> sowie <strong data-start="816" data-end="829">Ortsnetze</strong>, bei denen mechanische Belastung im Betrieb berücksichtigt werden muss.</p>
|
||||
<h3 data-start="903" data-end="926">Technischer Aufbau</h3>
|
||||
<p data-start="928" data-end="1288">Der Leiter besteht aus <strong data-start="951" data-end="964">Aluminium</strong>, verfügbar als rund eindrähtig (RE) oder rund mehrdrähtig (RM). Die Adern sind mit <strong data-start="1048" data-end="1077">PE (Polyethylen) isoliert</strong>, was dem Kabel eine sehr gute elektrische Isolation und hohe thermische Belastbarkeit verleiht. Der schwarze <strong data-start="1187" data-end="1201">PVC-Mantel</strong> ist <strong data-start="1206" data-end="1222">UV-beständig</strong> und schützt zuverlässig vor Feuchtigkeit und Umgebungseinflüssen.</p>
|
||||
<h3 data-start="1290" data-end="1310">Einsatzbereiche</h3>
|
||||
<p data-start="1312" data-end="1582">NA2XY Kabel sind die richtige Wahl für <strong data-start="1351" data-end="1427">stabile Energieverteilungen unter mechanisch anspruchsvollen Bedingungen</strong>. Sie bieten eine wirtschaftliche, langlebige Lösung für Netzbetreiber, Industrie und Anlagenbauer, die auf bewährte Technik und hohe Belastbarkeit setzen.</p>
|
||||
</section>
|
||||
|
||||
<h3>Für anspruchsvolle Netzanwendungen</h3>
|
||||
<p>Das <strong>NA2XY</strong> entspricht der Norm <strong>DIN VDE 0276-603 (HD 603)</strong> und ist ideal für die feste Verlegung in <strong>Innenräumen, Kabelkanälen, im Freien, im Wasser oder im Erdreich</strong> geeignet. Typische Einsatzorte sind <strong>Kraftwerke, Industrieanlagen, Schaltanlagen</strong> sowie <strong>Ortsnetze</strong>, bei denen mechanische Belastung im Betrieb berücksichtigt werden muss.</p>
|
||||
<h3>Technischer Aufbau</h3>
|
||||
<p>Der Leiter besteht aus <strong>Aluminium</strong>, verfügbar als rund eindrähtig (RE) oder rund mehrdrähtig (RM). Die Adern sind mit <strong>PE (Polyethylen) isoliert</strong>, was dem Kabel eine sehr gute elektrische Isolation und hohe thermische Belastbarkeit verleiht. Der schwarze <strong>PVC-Mantel</strong> ist <strong>UV-beständig</strong> und schützt zuverlässig vor Feuchtigkeit und Umgebungseinflüssen.</p>
|
||||
<h3>Einsatzbereiche</h3>
|
||||
<p>NA2XY Kabel sind die richtige Wahl für <strong>stabile Energieverteilungen unter mechanisch anspruchsvollen Bedingungen</strong>. Sie bieten eine wirtschaftliche, langlebige Lösung für Netzbetreiber, Industrie und Anlagenbauer, die auf bewährte Technik und hohe Belastbarkeit setzen.</p>
|
||||
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -876,13 +876,13 @@ locale: de
|
||||
]
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h3 data-start="525" data-end="567">Für anspruchsvolle Verlegebedingungen</h3>
|
||||
<p data-start="569" data-end="991">Das <strong data-start="573" data-end="582">NAY2Y</strong> erfüllt die Anforderungen der Norm <strong data-start="618" data-end="637">TP PRAKAB 12/03</strong> in Anlehnung an <strong data-start="654" data-end="670">VDE 0276-603</strong> und eignet sich für die <strong data-start="695" data-end="787">feste Verlegung in Innenräumen, Kabelkanälen, im Erdreich, im Wasser und im Außenbereich</strong>. Es ist ideal für Anwendungen in Kraftwerken, Industrie- und Schaltanlagen sowie in lokalen Versorgungsnetzen – überall dort, wo mechanische Belastung im Betrieb oder bei der Verlegung eine Rolle spielt.</p>
|
||||
<h3 data-start="993" data-end="1028">Aufbau und Materialkomponenten</h3>
|
||||
<p data-start="1030" data-end="1474">Der Leiter besteht aus <strong data-start="1053" data-end="1066">Aluminium</strong>, wahlweise als rund eindrähtig (RE), rund mehrdrähtig (RM) oder sektorförmig (SE/SM). Die <strong data-start="1157" data-end="1181">PVC-isolierten Adern</strong> sind verseilt und werden von einer <strong data-start="1217" data-end="1251">gemeinsamen EPDM-Aderumhüllung</strong> geschützt. Der äußere Mantel aus <strong data-start="1285" data-end="1293">HDPE</strong> (schwarz, UV-beständig) macht das Kabel besonders widerstandsfähig gegenüber Druck, Abrieb und Feuchtigkeit – perfekt für langfristige Installationen unter schwierigen Bedingungen.</p>
|
||||
<h3 data-start="1476" data-end="1504">Typische Einsatzgebiete</h3>
|
||||
<p data-start="1506" data-end="1785">NAY2Y Kabel sind erste Wahl bei <strong data-start="1538" data-end="1583">Verkabelungsprojekten mit hoher Belastung</strong>, etwa im industriellen Netzbau oder bei der Energieverteilung im Außenbereich. Sie bieten eine robuste, langlebige und kosteneffiziente Lösung für stabile Stromversorgung in verschiedensten Umgebungen.</p>
|
||||
</section>
|
||||
|
||||
<h3>Für anspruchsvolle Verlegebedingungen</h3>
|
||||
<p>Das <strong>NAY2Y</strong> erfüllt die Anforderungen der Norm <strong>TP PRAKAB 12/03</strong> in Anlehnung an <strong>VDE 0276-603</strong> und eignet sich für die <strong>feste Verlegung in Innenräumen, Kabelkanälen, im Erdreich, im Wasser und im Außenbereich</strong>. Es ist ideal für Anwendungen in Kraftwerken, Industrie- und Schaltanlagen sowie in lokalen Versorgungsnetzen – überall dort, wo mechanische Belastung im Betrieb oder bei der Verlegung eine Rolle spielt.</p>
|
||||
<h3>Aufbau und Materialkomponenten</h3>
|
||||
<p>Der Leiter besteht aus <strong>Aluminium</strong>, wahlweise als rund eindrähtig (RE), rund mehrdrähtig (RM) oder sektorförmig (SE/SM). Die <strong>PVC-isolierten Adern</strong> sind verseilt und werden von einer <strong>gemeinsamen EPDM-Aderumhüllung</strong> geschützt. Der äußere Mantel aus <strong>HDPE</strong> (schwarz, UV-beständig) macht das Kabel besonders widerstandsfähig gegenüber Druck, Abrieb und Feuchtigkeit – perfekt für langfristige Installationen unter schwierigen Bedingungen.</p>
|
||||
<h3>Typische Einsatzgebiete</h3>
|
||||
<p>NAY2Y Kabel sind erste Wahl bei <strong>Verkabelungsprojekten mit hoher Belastung</strong>, etwa im industriellen Netzbau oder bei der Energieverteilung im Außenbereich. Sie bieten eine robuste, langlebige und kosteneffiziente Lösung für stabile Stromversorgung in verschiedensten Umgebungen.</p>
|
||||
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -797,13 +797,13 @@ locale: de
|
||||
]
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h3 data-start="540" data-end="595">Entwickelt für erhöhte Anforderungen an Sicherheit</h3>
|
||||
<p data-start="597" data-end="998">Das <strong data-start="601" data-end="611">NAYCWY</strong> entspricht der Norm <strong data-start="632" data-end="661">DIN VDE 0276-603 (HD 603)</strong> und eignet sich für den Einsatz in <strong data-start="697" data-end="760">Kraftwerken, Industrieanlagen, Schaltanlagen und Ortsnetzen</strong>. Es lässt sich fest verlegen – in Innenräumen, Kabelkanälen, im Freien, im Erdreich oder in Wasser. Dank des konzentrischen Leiters bietet es zusätzlichen Schutz bei mechanischer Beschädigung und ermöglicht eine sichere Potenzialführung.</p>
|
||||
<h3 data-start="1000" data-end="1023">Technischer Aufbau</h3>
|
||||
<p data-start="1025" data-end="1497">Der elektrische Leiter besteht aus <strong data-start="1060" data-end="1073">Aluminium</strong>, wahlweise rund mehrdrähtig (RM), sektorförmig eindrähtig (SE) oder mehrdrähtig (SM). Die <strong data-start="1164" data-end="1185">PVC-Aderisolation</strong> und eine <strong data-start="1195" data-end="1228">gemeinsame EPDM-Aderumhüllung</strong> schützen die verseilten Adern. Darüber liegt ein <strong data-start="1278" data-end="1329">konzentrischer Leiter aus blanken Kupferdrähten</strong> mit Kupferband-Querleitwendel – ideal als <strong data-start="1372" data-end="1394">PE oder PEN-Leiter</strong> verwendbar. Ein schwarzer, <strong data-start="1422" data-end="1451">UV-beständiger PVC-Mantel</strong> schließt das Kabel zuverlässig nach außen ab.</p>
|
||||
<h3 data-start="1499" data-end="1532">Anwendung und Besonderheiten</h3>
|
||||
<p data-start="1534" data-end="1894"><strong>NAYCWY</strong> Kabel kommen immer dann zum Einsatz, wenn <strong data-start="1583" data-end="1623">elektrische Sicherheit und Schirmung</strong> gefragt sind. Der konzentrische Leiter muss beim Anschluss an Abzweigmuffen nicht getrennt werden, was die Montage vereinfacht. Damit ist das Kabel besonders geeignet für moderne Niederspannungsnetze mit erhöhten Anforderungen an Betriebssicherheit und Berührungsschutz.</p>
|
||||
</section>
|
||||
|
||||
<h3>Entwickelt für erhöhte Anforderungen an Sicherheit</h3>
|
||||
<p>Das <strong>NAYCWY</strong> entspricht der Norm <strong>DIN VDE 0276-603 (HD 603)</strong> und eignet sich für den Einsatz in <strong>Kraftwerken, Industrieanlagen, Schaltanlagen und Ortsnetzen</strong>. Es lässt sich fest verlegen – in Innenräumen, Kabelkanälen, im Freien, im Erdreich oder in Wasser. Dank des konzentrischen Leiters bietet es zusätzlichen Schutz bei mechanischer Beschädigung und ermöglicht eine sichere Potenzialführung.</p>
|
||||
<h3>Technischer Aufbau</h3>
|
||||
<p>Der elektrische Leiter besteht aus <strong>Aluminium</strong>, wahlweise rund mehrdrähtig (RM), sektorförmig eindrähtig (SE) oder mehrdrähtig (SM). Die <strong>PVC-Aderisolation</strong> und eine <strong>gemeinsame EPDM-Aderumhüllung</strong> schützen die verseilten Adern. Darüber liegt ein <strong>konzentrischer Leiter aus blanken Kupferdrähten</strong> mit Kupferband-Querleitwendel – ideal als <strong>PE oder PEN-Leiter</strong> verwendbar. Ein schwarzer, <strong>UV-beständiger PVC-Mantel</strong> schließt das Kabel zuverlässig nach außen ab.</p>
|
||||
<h3>Anwendung und Besonderheiten</h3>
|
||||
<p><strong>NAYCWY</strong> Kabel kommen immer dann zum Einsatz, wenn <strong>elektrische Sicherheit und Schirmung</strong> gefragt sind. Der konzentrische Leiter muss beim Anschluss an Abzweigmuffen nicht getrennt werden, was die Montage vereinfacht. Damit ist das Kabel besonders geeignet für moderne Niederspannungsnetze mit erhöhten Anforderungen an Betriebssicherheit und Berührungsschutz.</p>
|
||||
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -1084,13 +1084,13 @@ locale: de
|
||||
]
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h3 data-start="567" data-end="615">Vielfältige Einsatzmöglichkeiten im Netzbau</h3>
|
||||
<p data-start="617" data-end="989">Das <strong data-start="621" data-end="629">NAYY</strong> ist ein Energieverteilungskabel nach <strong data-start="667" data-end="683">VDE 0276-603</strong>, das sich besonders für Anwendungen in <strong data-start="723" data-end="780">Kraftwerken, Ortsnetzen, Industrie- und Schaltanlagen</strong> eignet. Dank seiner robusten Konstruktion lässt es sich fest verlegen – sei es im Innenraum, im Kabelkanal, im Freien oder im Erdreich. Auch bei Installation in Wasser bleibt das Kabel zuverlässig im Betrieb.</p>
|
||||
<h3 data-start="991" data-end="1018">Aufbau und Materialien</h3>
|
||||
<p data-start="1020" data-end="1390">Im Inneren arbeitet ein <strong data-start="1044" data-end="1063">Aluminiumleiter</strong>, der wahlweise rund eindrähtig (RE), rund mehrdrähtig (RM) oder sektorförmig (SE/SM) ausgeführt ist. Die Leiter sind mit <strong data-start="1185" data-end="1201">PVC isoliert</strong>, verseilt und durch eine <strong data-start="1227" data-end="1260">gemeinsame EPDM-Aderumhüllung</strong> geschützt. Der äußere <strong data-start="1283" data-end="1297">PVC-Mantel</strong> ist schwarz, UV-beständig und widerstandsfähig gegenüber Feuchtigkeit und Umweltbedingungen.</p>
|
||||
<h3 data-start="1392" data-end="1417">Typische Anwendungen</h3>
|
||||
<p data-start="1419" data-end="1694">NAYY Kabel eignen sich optimal für <strong data-start="1454" data-end="1500">dauerhafte, wirtschaftliche Installationen</strong> in Versorgungsnetzen, Verteileranlagen oder bei Gebäudeverkabelungen. Sie bieten eine solide und langlebige Lösung, wenn es um sichere Energieverteilung unter standardisierten Bedingungen geht.</p>
|
||||
</section>
|
||||
|
||||
<h3>Vielfältige Einsatzmöglichkeiten im Netzbau</h3>
|
||||
<p>Das <strong>NAYY</strong> ist ein Energieverteilungskabel nach <strong>VDE 0276-603</strong>, das sich besonders für Anwendungen in <strong>Kraftwerken, Ortsnetzen, Industrie- und Schaltanlagen</strong> eignet. Dank seiner robusten Konstruktion lässt es sich fest verlegen – sei es im Innenraum, im Kabelkanal, im Freien oder im Erdreich. Auch bei Installation in Wasser bleibt das Kabel zuverlässig im Betrieb.</p>
|
||||
<h3>Aufbau und Materialien</h3>
|
||||
<p>Im Inneren arbeitet ein <strong>Aluminiumleiter</strong>, der wahlweise rund eindrähtig (RE), rund mehrdrähtig (RM) oder sektorförmig (SE/SM) ausgeführt ist. Die Leiter sind mit <strong>PVC isoliert</strong>, verseilt und durch eine <strong>gemeinsame EPDM-Aderumhüllung</strong> geschützt. Der äußere <strong>PVC-Mantel</strong> ist schwarz, UV-beständig und widerstandsfähig gegenüber Feuchtigkeit und Umweltbedingungen.</p>
|
||||
<h3>Typische Anwendungen</h3>
|
||||
<p>NAYY Kabel eignen sich optimal für <strong>dauerhafte, wirtschaftliche Installationen</strong> in Versorgungsnetzen, Verteileranlagen oder bei Gebäudeverkabelungen. Sie bieten eine solide und langlebige Lösung, wenn es um sichere Energieverteilung unter standardisierten Bedingungen geht.</p>
|
||||
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -498,13 +498,13 @@ locale: de
|
||||
]
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h3 data-start="518" data-end="554">Zuverlässig bei hoher Belastung</h3>
|
||||
<p data-start="556" data-end="987">Das <strong data-start="560" data-end="568">NY2Y</strong> ist ein Niederspannungskabel für den Einsatz in Kraftwerken, Industrie- und Schaltanlagen sowie in Ortsnetzen. Es eignet sich für die <strong data-start="706" data-end="792">feste Verlegung in Innenräumen, Kabelkanälen, im Freien, im Wasser und im Erdreich</strong> – überall dort, wo starke mechanische Belastungen beim Verlegen und im Betrieb zu erwarten sind. Die Konstruktion erfüllt die Vorgaben gemäß <strong data-start="934" data-end="953">TP PRAKAB 16/03</strong> in Anlehnung an <strong data-start="970" data-end="986">VDE 0276-603</strong>.</p>
|
||||
<h3 data-start="989" data-end="1010">Aufbau im Detail</h3>
|
||||
<p data-start="1012" data-end="1431">Das Kabel besteht aus einem <strong data-start="1040" data-end="1056">Kupferleiter</strong>, verfügbar als rund eindrähtig (RE), rund mehrdrähtig (RM) oder sektorförmig mehrdrähtig (SM). Die <strong data-start="1156" data-end="1177">PVC-Aderisolation</strong> sorgt für elektrische Sicherheit, die Adern sind verseilt und durch eine gemeinsame <strong data-start="1262" data-end="1284">EPDM-Aderumhüllung</strong> geschützt. Der Außenmantel aus <strong data-start="1316" data-end="1324">HDPE</strong> (schwarz, UV-beständig) macht das NY2Y besonders resistent gegen Abrieb, Feuchtigkeit und Umwelteinflüsse.</p>
|
||||
<h3 data-start="1433" data-end="1462">Typische Einsatzbereiche</h3>
|
||||
<p data-start="1464" data-end="1802">NY2Y eignet sich hervorragend für Anwendungen mit erhöhten Anforderungen an <strong data-start="1540" data-end="1566">mechanische Robustheit</strong> und <strong data-start="1571" data-end="1598">Witterungsbeständigkeit</strong>. Typische Einsatzorte sind Energieverteilungen in industriellen Anlagen, Kraftwerken oder Trafostationen – aber auch in Umgebungen mit Feuchtigkeit, direkter Sonneneinstrahlung oder chemischer Belastung.</p>
|
||||
</section>
|
||||
|
||||
<h3>Zuverlässig bei hoher Belastung</h3>
|
||||
<p>Das <strong>NY2Y</strong> ist ein Niederspannungskabel für den Einsatz in Kraftwerken, Industrie- und Schaltanlagen sowie in Ortsnetzen. Es eignet sich für die <strong>feste Verlegung in Innenräumen, Kabelkanälen, im Freien, im Wasser und im Erdreich</strong> – überall dort, wo starke mechanische Belastungen beim Verlegen und im Betrieb zu erwarten sind. Die Konstruktion erfüllt die Vorgaben gemäß <strong>TP PRAKAB 16/03</strong> in Anlehnung an <strong>VDE 0276-603</strong>.</p>
|
||||
<h3>Aufbau im Detail</h3>
|
||||
<p>Das Kabel besteht aus einem <strong>Kupferleiter</strong>, verfügbar als rund eindrähtig (RE), rund mehrdrähtig (RM) oder sektorförmig mehrdrähtig (SM). Die <strong>PVC-Aderisolation</strong> sorgt für elektrische Sicherheit, die Adern sind verseilt und durch eine gemeinsame <strong>EPDM-Aderumhüllung</strong> geschützt. Der Außenmantel aus <strong>HDPE</strong> (schwarz, UV-beständig) macht das NY2Y besonders resistent gegen Abrieb, Feuchtigkeit und Umwelteinflüsse.</p>
|
||||
<h3>Typische Einsatzbereiche</h3>
|
||||
<p>NY2Y eignet sich hervorragend für Anwendungen mit erhöhten Anforderungen an <strong>mechanische Robustheit</strong> und <strong>Witterungsbeständigkeit</strong>. Typische Einsatzorte sind Energieverteilungen in industriellen Anlagen, Kraftwerken oder Trafostationen – aber auch in Umgebungen mit Feuchtigkeit, direkter Sonneneinstrahlung oder chemischer Belastung.</p>
|
||||
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -707,13 +707,13 @@ locale: de
|
||||
]
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h3 data-start="213" data-end="264">Vielseitig einsetzbar in der Energieverteilung</h3>
|
||||
<p data-start="266" data-end="765">Das NYCWY gehört zu den klassischen <strong data-start="302" data-end="345">Niederspannungskabeln nach VDE-Standard</strong> und ist für Nennspannungen bis 1 kV ausgelegt. Es kommt überall dort zum Einsatz, wo Energie zuverlässig verteilt werden muss – in Gebäuden, Industrieanlagen, Trafostationen oder direkt im Erdreich. Auch in Kabeltrassen, Betonumgebungen oder unter Wasser lässt es sich problemlos verlegen. Die Materialwahl sorgt dafür, dass dieses Kabel selbst unter rauen Bedingungen durchhält – ganz ohne zusätzliche Schutzmaßnahmen.</p>
|
||||
<h3 data-start="767" data-end="794">Aufbau und Materialien</h3>
|
||||
<p data-start="796" data-end="1206">Der Aufbau ist technisch durchdacht: Ein Kupferleiter bildet das Herzstück, umgeben von einer PVC-Isolierung, die mechanisch robust und elektrisch sicher ist. Darauf folgt ein konzentrischer Leiter in Wellenform, der je nach Anwendung als Schutz- oder Rückleiter dient. Den äußeren Abschluss bildet ein widerstandsfähiger <strong data-start="1118" data-end="1132">PVC-Mantel</strong>, der das Kabel vor Feuchtigkeit, Druck und chemischen Einflüssen schützt.</p>
|
||||
<h3 data-start="1208" data-end="1239">Varianten und Querschnitte</h3>
|
||||
<p data-start="1241" data-end="1628">Erhältlich ist das NYCWY in einer Vielzahl von Ausführungen – zum Beispiel als <strong data-start="1320" data-end="1331">4x25/16</strong>, 4x70/35 oder 4x185/95. Die erste Zahlengruppe steht für die Anzahl und den Querschnitt der stromführenden Leiter, die zweite für den konzentrischen Leiter. Damit lässt sich das Kabel flexibel an verschiedene Netzanforderungen anpassen – vom Hausanschluss bis zur industriellen Energieverteilung.</p>
|
||||
</section>
|
||||
|
||||
<h3>Vielseitig einsetzbar in der Energieverteilung</h3>
|
||||
<p>Das NYCWY gehört zu den klassischen <strong>Niederspannungskabeln nach VDE-Standard</strong> und ist für Nennspannungen bis 1 kV ausgelegt. Es kommt überall dort zum Einsatz, wo Energie zuverlässig verteilt werden muss – in Gebäuden, Industrieanlagen, Trafostationen oder direkt im Erdreich. Auch in Kabeltrassen, Betonumgebungen oder unter Wasser lässt es sich problemlos verlegen. Die Materialwahl sorgt dafür, dass dieses Kabel selbst unter rauen Bedingungen durchhält – ganz ohne zusätzliche Schutzmaßnahmen.</p>
|
||||
<h3>Aufbau und Materialien</h3>
|
||||
<p>Der Aufbau ist technisch durchdacht: Ein Kupferleiter bildet das Herzstück, umgeben von einer PVC-Isolierung, die mechanisch robust und elektrisch sicher ist. Darauf folgt ein konzentrischer Leiter in Wellenform, der je nach Anwendung als Schutz- oder Rückleiter dient. Den äußeren Abschluss bildet ein widerstandsfähiger <strong>PVC-Mantel</strong>, der das Kabel vor Feuchtigkeit, Druck und chemischen Einflüssen schützt.</p>
|
||||
<h3>Varianten und Querschnitte</h3>
|
||||
<p>Erhältlich ist das NYCWY in einer Vielzahl von Ausführungen – zum Beispiel als <strong>4x25/16</strong>, 4x70/35 oder 4x185/95. Die erste Zahlengruppe steht für die Anzahl und den Querschnitt der stromführenden Leiter, die zweite für den konzentrischen Leiter. Damit lässt sich das Kabel flexibel an verschiedene Netzanforderungen anpassen – vom Hausanschluss bis zur industriellen Energieverteilung.</p>
|
||||
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -1352,13 +1352,13 @@ locale: de
|
||||
]
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h3 data-start="439" data-end="484">Solide Lösung für klassische Anwendungen</h3>
|
||||
<p data-start="486" data-end="868">Das <strong data-start="490" data-end="497">NYY</strong> Kabel ist ein standardisiertes <strong>Niederspannungskabel</strong> nach <strong data-start="558" data-end="574">VDE 0276-603</strong>. Es kommt in Kraftwerken, Industrie- und Schaltanlagen sowie in Ortsnetzen zum Einsatz. Geeignet ist es für die <strong data-start="687" data-end="773">feste Verlegung in Innenräumen, Kabelkanälen, im Freien, im Erdreich und in Wasser</strong> – immer unter der Voraussetzung, dass keine besonderen mechanischen Beanspruchungen auftreten.</p>
|
||||
<h3 data-start="870" data-end="907">Aufbau und Materialeigenschaften</h3>
|
||||
<p data-start="909" data-end="1274">Der Leiter besteht aus <strong data-start="932" data-end="942">Kupfer</strong> – wahlweise rund eindrähtig (RE), rund mehrdrähtig (RM) oder sektorförmig mehrdrähtig (SM). Die Adern sind mit <strong data-start="1054" data-end="1070">PVC isoliert</strong>, verseilt und von einer gemeinsamen <strong data-start="1107" data-end="1129">EPDM-Aderumhüllung</strong> umgeben. Der Außenmantel besteht aus <strong data-start="1167" data-end="1200">schwarzem, UV-beständigem PVC</strong> und schützt das Kabel zuverlässig gegen Umwelteinflüsse und Feuchtigkeit.</p>
|
||||
<h3 data-start="1276" data-end="1296">Einsatzbereiche</h3>
|
||||
<p data-start="1298" data-end="1642">Das NYY Kabel eignet sich ideal für <strong data-start="1334" data-end="1372">konventionelle Energieverteilungen</strong>, bei denen es auf einfache, langlebige Technik ankommt. Es wird bevorzugt dort eingesetzt, wo die Verlegung ohne erhöhte mechanische Anforderungen erfolgen kann – zum Beispiel im Gebäudeinneren, in Versorgungsleitungen oder bei der Erdverlegung im klassischen Ortsnetz.</p>
|
||||
</section>
|
||||
|
||||
<h3>Solide Lösung für klassische Anwendungen</h3>
|
||||
<p>Das <strong>NYY</strong> Kabel ist ein standardisiertes <strong>Niederspannungskabel</strong> nach <strong>VDE 0276-603</strong>. Es kommt in Kraftwerken, Industrie- und Schaltanlagen sowie in Ortsnetzen zum Einsatz. Geeignet ist es für die <strong>feste Verlegung in Innenräumen, Kabelkanälen, im Freien, im Erdreich und in Wasser</strong> – immer unter der Voraussetzung, dass keine besonderen mechanischen Beanspruchungen auftreten.</p>
|
||||
<h3>Aufbau und Materialeigenschaften</h3>
|
||||
<p>Der Leiter besteht aus <strong>Kupfer</strong> – wahlweise rund eindrähtig (RE), rund mehrdrähtig (RM) oder sektorförmig mehrdrähtig (SM). Die Adern sind mit <strong>PVC isoliert</strong>, verseilt und von einer gemeinsamen <strong>EPDM-Aderumhüllung</strong> umgeben. Der Außenmantel besteht aus <strong>schwarzem, UV-beständigem PVC</strong> und schützt das Kabel zuverlässig gegen Umwelteinflüsse und Feuchtigkeit.</p>
|
||||
<h3>Einsatzbereiche</h3>
|
||||
<p>Das NYY Kabel eignet sich ideal für <strong>konventionelle Energieverteilungen</strong>, bei denen es auf einfache, langlebige Technik ankommt. Es wird bevorzugt dort eingesetzt, wo die Verlegung ohne erhöhte mechanische Anforderungen erfolgen kann – zum Beispiel im Gebäudeinneren, in Versorgungsleitungen oder bei der Erdverlegung im klassischen Ortsnetz.</p>
|
||||
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -221,29 +221,29 @@ locale: de
|
||||
]
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h3 data-start="460" data-end="518">Für dauerhafte Einsätze in anspruchsvollen Umgebungen</h3>
|
||||
<p data-start="520" data-end="953">Das <strong data-start="524" data-end="536">H1Z2Z2-K</strong> entspricht der <strong data-start="552" data-end="588">Norm DIN EN 50618 (VDE 0283-618)</strong> und ist speziell für die <strong data-start="614" data-end="654">Verkabelung von Photovoltaiksystemen</strong> konzipiert. Es kann <strong data-start="675" data-end="713">fest verlegt oder flexibel geführt</strong> werden – im Gebäude, im Freien, in Industrieanlagen, landwirtschaftlichen Betrieben oder sogar in <strong data-start="812" data-end="847">explosionsgefährdeten Bereichen</strong>. Die Leitung ist <strong data-start="865" data-end="905">UV-, ozon- und wasserbeständig (AD7)</strong> und darf <strong data-start="915" data-end="945">direkt in der Erde verlegt</strong> werden.</p>
|
||||
<h3 data-start="955" data-end="990">Aufbau und technische Merkmale</h3>
|
||||
<p data-start="992" data-end="1516">Der feindrähtige <strong data-start="1009" data-end="1045">verzinnt Kupferleiter (Klasse 5)</strong> ist doppelt geschützt durch eine <strong data-start="1079" data-end="1160">vernetzte Isolierung und einen vernetzten Außenmantel aus Polyolefincopolymer</strong> – halogenfrei, flammwidrig und mit hoher Abriebfestigkeit. Das Kabel ist für eine maximale Leitertemperatur von <strong data-start="1273" data-end="1283">120 °C</strong> ausgelegt und bleibt auch bei <strong data-start="1314" data-end="1339">-40 °C (fest verlegt)</strong> zuverlässig flexibel. Die <strong data-start="1366" data-end="1394">geringe Rauchentwicklung</strong> und hohe Beständigkeit gegenüber mechanischen und thermischen Einflüssen sorgen für einen sicheren, langjährigen Betrieb.</p>
|
||||
<h3 data-start="1518" data-end="1549">Eigenschaften im Überblick</h3>
|
||||
<ul data-start="1551" data-end="1815">
|
||||
<li data-start="1551" data-end="1604">
|
||||
<p data-start="1553" data-end="1604"><strong data-start="1553" data-end="1604">Halogenfrei, flammwidrig, UV- und ozonbeständig</strong></p>
|
||||
|
||||
<h3>Für dauerhafte Einsätze in anspruchsvollen Umgebungen</h3>
|
||||
<p>Das <strong>H1Z2Z2-K</strong> entspricht der <strong>Norm DIN EN 50618 (VDE 0283-618)</strong> und ist speziell für die <strong>Verkabelung von Photovoltaiksystemen</strong> konzipiert. Es kann <strong>fest verlegt oder flexibel geführt</strong> werden – im Gebäude, im Freien, in Industrieanlagen, landwirtschaftlichen Betrieben oder sogar in <strong>explosionsgefährdeten Bereichen</strong>. Die Leitung ist <strong>UV-, ozon- und wasserbeständig (AD7)</strong> und darf <strong>direkt in der Erde verlegt</strong> werden.</p>
|
||||
<h3>Aufbau und technische Merkmale</h3>
|
||||
<p>Der feindrähtige <strong>verzinnt Kupferleiter (Klasse 5)</strong> ist doppelt geschützt durch eine <strong>vernetzte Isolierung und einen vernetzten Außenmantel aus Polyolefincopolymer</strong> – halogenfrei, flammwidrig und mit hoher Abriebfestigkeit. Das Kabel ist für eine maximale Leitertemperatur von <strong>120 °C</strong> ausgelegt und bleibt auch bei <strong>-40 °C (fest verlegt)</strong> zuverlässig flexibel. Die <strong>geringe Rauchentwicklung</strong> und hohe Beständigkeit gegenüber mechanischen und thermischen Einflüssen sorgen für einen sicheren, langjährigen Betrieb.</p>
|
||||
<h3>Eigenschaften im Überblick</h3>
|
||||
<ul>
|
||||
<li>
|
||||
<p><strong>Halogenfrei, flammwidrig, UV- und ozonbeständig</strong></p>
|
||||
</li>
|
||||
<li data-start="1605" data-end="1666">
|
||||
<p data-start="1607" data-end="1666"><strong data-start="1607" data-end="1666">Kurzschluss- und erdschlusssicher gemäß VDE-AR-E 2283-4</strong></p>
|
||||
<li>
|
||||
<p><strong>Kurzschluss- und erdschlusssicher gemäß VDE-AR-E 2283-4</strong></p>
|
||||
</li>
|
||||
<li data-start="1667" data-end="1744">
|
||||
<p data-start="1669" data-end="1744"><strong data-start="1669" data-end="1744">Zugelassen für Innenräume, Außenbereiche und explosionsgefährdete Zonen</strong></p>
|
||||
<li>
|
||||
<p><strong>Zugelassen für Innenräume, Außenbereiche und explosionsgefährdete Zonen</strong></p>
|
||||
</li>
|
||||
<li data-start="1745" data-end="1784">
|
||||
<p data-start="1747" data-end="1784"><strong data-start="1747" data-end="1784">Geeignet für direkte Erdverlegung</strong></p>
|
||||
<li>
|
||||
<p><strong>Geeignet für direkte Erdverlegung</strong></p>
|
||||
</li>
|
||||
<li data-start="1785" data-end="1815">
|
||||
<p data-start="1787" data-end="1815"><strong data-start="1787" data-end="1815">CPR-Leistungsklasse: Eca</strong></p>
|
||||
<li>
|
||||
<p><strong>CPR-Leistungsklasse: Eca</strong></p>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -243,11 +243,11 @@ locale: en
|
||||
]
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
|
||||
<h2>Engineering Overview</h2>
|
||||
<p>The <strong>N2X(F)K2Y high-voltage cable series</strong> is tailored for robust performance in high-voltage power systems, featuring copper conductors and cross-linked polyethylene (XLPE) insulation. This combination ensures high dielectric strength and excellent thermal cycling resistance, crucial for maintaining integrity and functionality over long operational periods.</p>
|
||||
</section>
|
||||
<section>
|
||||
|
||||
|
||||
<h2>Technical Performance and Installation</h2>
|
||||
<p>Designed to support a wide range of industrial applications, the N2X(F)K2Y cable series excels in environments requiring high ampacity and effective fault current management. The cables' construction supports efficient heat dissipation and reduces the risk of thermal degradation even under high load conditions.</p>
|
||||
<ul>
|
||||
@@ -256,14 +256,14 @@ locale: en
|
||||
<li>Superior <strong>dielectric strength</strong>, facilitated by high-quality XLPE insulation.</li>
|
||||
</ul>
|
||||
<p>Installation techniques such as <strong>trefoil formation</strong>, <strong>direct burial</strong>, and <strong>cable tray mounting</strong> are compatible with this series, providing flexibility and ease of deployment in varied operational landscapes.</p>
|
||||
</section>
|
||||
<section>
|
||||
|
||||
|
||||
<h2>Compliance and Electromagnetic Compatibility</h2>
|
||||
<p>The N2X(F)K2Y series adheres to stringent <strong>IEC standards</strong> and meets <strong>CPR classification</strong> requirements, ensuring compliance with international safety and quality benchmarks. Additionally, the cables are designed to minimize electromagnetic interference, enhancing <strong>electromagnetic compatibility (EMC)</strong> and reducing induced voltages, which is critical in densely packed power installations.</p>
|
||||
<ul>
|
||||
<li>Robust <strong>metallic screening</strong> to mitigate EMC issues and manage fault currents effectively.</li>
|
||||
<li>CE marking confirms that the cable series meets the essential requirements of relevant European directives.</li>
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -207,11 +207,11 @@ locale: en
|
||||
]
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
|
||||
<h2>Engineering Overview</h2>
|
||||
<p>The <strong>N2X(F)KLD2Y-high-voltage-cables-2 series</strong> is engineered to meet the rigorous demands of high-voltage power transmission with a focus on durability, efficiency, and safety. This series is ideal for applications requiring high dielectric strength and excellent thermal cycling resistance.</p>
|
||||
</section>
|
||||
<section>
|
||||
|
||||
|
||||
<h2>Technical Performance and Installation</h2>
|
||||
<p>This cable series is designed to optimize both electrical and thermal performance, making it suitable for a variety of installation environments:</p>
|
||||
<ul>
|
||||
@@ -219,14 +219,14 @@ locale: en
|
||||
<li>Excellent <strong>fault current withstand</strong> capability, ensuring reliability and safety in the event of abnormal current flow.</li>
|
||||
<li>Designed for <strong>direct burial</strong>, <strong>trefoil formation</strong>, or <strong>cable tray mounting</strong>, providing flexibility in installation methods to suit different site conditions.</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section>
|
||||
|
||||
|
||||
<h2>Compliance and EMC Considerations</h2>
|
||||
<p>The cable's construction adheres to stringent <strong>IEC standards</strong> and carries the <strong>CE marking</strong>, affirming its compliance with the Construction Products Regulation (<strong>CPR classification</strong>). Furthermore, it is designed to minimize electromagnetic interference:</p>
|
||||
<ul>
|
||||
<li>Advanced insulation and shielding techniques reduce <strong>induced voltage</strong>, enhancing <strong>electromagnetic compatibility</strong> (EMC).</li>
|
||||
<li>Metallic screens incorporated into the cable design help in mitigating external electromagnetic influences, ensuring stable and uninterrupted operation.</li>
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -915,13 +915,13 @@ locale: en
|
||||
]
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h3 data-start="508" data-end="571">Flexible in use – underground, underwater, and on cable trays</h3>
|
||||
<p data-start="573" data-end="950">The <strong data-start="577" data-end="591">N2XS(FL)2Y</strong> is designed for <strong data-start="615" data-end="698">installation in the ground, in cable ducts, pipes, outdoor areas, and indoor spaces</strong>. It complies with the <strong data-start="723" data-end="736">IEC 60840</strong> standard and can be tailored to specific project requirements. It is typically used in <strong data-start="841" data-end="906">transmission networks, substations, and large industrial facilities</strong> where maximum reliability is essential.</p>
|
||||
<h3 data-start="952" data-end="975">Technical structure</h3>
|
||||
<p data-start="977" data-end="1539">The cable features a <strong data-start="1006" data-end="1062">multi-stranded copper conductor (class 2 according to IEC 60228)</strong>. The insulation consists of <strong data-start="1090" data-end="1123">cross-linked polyethylene (XLPE)</strong>, embedded between a <strong data-start="1152" data-end="1180">conductive inner layer</strong> and a <strong data-start="1191" data-end="1232">conductive outer insulation layer</strong>. A <strong data-start="1239" data-end="1265">water-swellable tape</strong>, together with <strong data-start="1286" data-end="1334">copper wires and an open copper helix</strong>, provides effective shielding. The outer sheath is made of <strong data-start="1395" data-end="1401">PE</strong>, firmly bonded with an <strong data-start="1417" data-end="1451">aluminum laminate (Alucopo)</strong> – optimal protection against <strong data-start="1496" data-end="1538">mechanical stress and moisture</strong>.</p>
|
||||
<h3 data-start="1541" data-end="1561">Application features</h3>
|
||||
<p data-start="1563" data-end="1902">The N2XS(FL)2Y is <strong data-start="1582" data-end="1611">waterproof, suitable for underground installation</strong>, and resistant to mechanical stress – and thanks to its <strong data-start="1655" data-end="1700">multi-layered shielding and water-blocking structure</strong>, it is particularly suited for critical high-voltage applications. Electrical performance is calculated based on the project – allowing precise adaptation to grid operation requirements.</p>
|
||||
</section>
|
||||
|
||||
<h3>Flexible in use – underground, underwater, and on cable trays</h3>
|
||||
<p>The <strong>N2XS(FL)2Y</strong> is designed for <strong>installation in the ground, in cable ducts, pipes, outdoor areas, and indoor spaces</strong>. It complies with the <strong>IEC 60840</strong> standard and can be tailored to specific project requirements. It is typically used in <strong>transmission networks, substations, and large industrial facilities</strong> where maximum reliability is essential.</p>
|
||||
<h3>Technical structure</h3>
|
||||
<p>The cable features a <strong>multi-stranded copper conductor (class 2 according to IEC 60228)</strong>. The insulation consists of <strong>cross-linked polyethylene (XLPE)</strong>, embedded between a <strong>conductive inner layer</strong> and a <strong>conductive outer insulation layer</strong>. A <strong>water-swellable tape</strong>, together with <strong>copper wires and an open copper helix</strong>, provides effective shielding. The outer sheath is made of <strong>PE</strong>, firmly bonded with an <strong>aluminum laminate (Alucopo)</strong> – optimal protection against <strong>mechanical stress and moisture</strong>.</p>
|
||||
<h3>Application features</h3>
|
||||
<p>The N2XS(FL)2Y is <strong>waterproof, suitable for underground installation</strong>, and resistant to mechanical stress – and thanks to its <strong>multi-layered shielding and water-blocking structure</strong>, it is particularly suited for critical high-voltage applications. Electrical performance is calculated based on the project – allowing precise adaptation to grid operation requirements.</p>
|
||||
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -241,11 +241,11 @@ locale: en
|
||||
]
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
|
||||
<h2>Engineering Overview</h2>
|
||||
<p>The <strong>NA2X(F)K2Y high-voltage cable series</strong> is engineered to meet the rigorous demands of modern industrial and power distribution applications. It combines high-grade copper conductors with cross-linked polyethylene (XLPE) insulation, ensuring superior <strong>dielectric strength</strong> and <strong>thermal cycling</strong> resilience.</p>
|
||||
</section>
|
||||
<section>
|
||||
|
||||
|
||||
<h2>Technical Performance and Installation</h2>
|
||||
<p>This cable series is optimized for high <strong>ampacity</strong> and excellent <strong>fault current withstand</strong> capabilities, making it ideal for environments where reliability and durability are paramount. The construction adheres to strict <strong>IEC compliance</strong> standards, ensuring both performance and safety.</p>
|
||||
<ul>
|
||||
@@ -253,14 +253,14 @@ locale: en
|
||||
<li>XLPE insulation provides significant improvements in thermal characteristics and longevity compared to traditional PVC.</li>
|
||||
<li>Installation versatility with suitability for <strong>direct burial</strong>, <strong>trefoil formation</strong>, or <strong>cable tray mounting</strong>, accommodating various environmental conditions and spatial configurations.</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section>
|
||||
|
||||
|
||||
<h2>Compliance and EMC Considerations</h2>
|
||||
<p>The NA2X(F)K2Y series not only meets <strong>IEC</strong> standards but also features a robust design to ensure <strong>electromagnetic compatibility (EMC)</strong>. This design minimizes <strong>induced voltage</strong> effects, crucial in densely populated cable routes and close proximity to sensitive equipment.</p>
|
||||
<ul>
|
||||
<li>Comprehensive <strong>CPR classification</strong> and <strong>CE marking</strong> confirm the cable's adherence to European safety and quality benchmarks.</li>
|
||||
<li>Metallic screens incorporated within the cable structure effectively manage electromagnetic interference, safeguarding signal integrity across extensive networks.</li>
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -219,11 +219,11 @@ locale: en
|
||||
]
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
|
||||
<h2>Engineering Overview</h2>
|
||||
<p>The <strong>NA2X(F)KLD2Y high-voltage cable series</strong> is engineered to meet the rigorous demands of modern industrial electrical networks, offering high dielectric strength and excellent thermal cycling resistance. This series is ideal for applications that require reliable power distribution in high-voltage settings.</p>
|
||||
</section>
|
||||
<section>
|
||||
|
||||
|
||||
<h2>Technical Performance and Construction</h2>
|
||||
<p>This cable series is built with high-conductivity stranded copper conductors, ensuring superior ampacity and efficient power transmission. The cross-linked polyethylene (XLPE) insulation provides enhanced thermal properties and dielectric strength, critical for maintaining integrity under high voltage and temperature conditions.</p>
|
||||
<ul>
|
||||
@@ -231,8 +231,8 @@ locale: en
|
||||
<li>XLPE insulation for improved fault current withstand and resistance to environmental stressors.</li>
|
||||
<li>Designed for <strong>IEC compliance</strong> and <strong>CPR classification</strong>, ensuring adherence to international safety and performance standards.</li>
|
||||
</ul>
|
||||
</section>
|
||||
<section>
|
||||
|
||||
|
||||
<h2>Installation and Compliance</h2>
|
||||
<p>The NA2X(F)KLD2Y series supports various installation methods including <strong>direct burial</strong> and <strong>cable tray mounting</strong>. Its robust construction allows for installation in trefoil formation, optimizing space and reducing induced voltages.</p>
|
||||
<ul>
|
||||
@@ -240,6 +240,6 @@ locale: en
|
||||
<li>The cable's design minimizes electromagnetic interference, aiding in the stability of the entire power network.</li>
|
||||
<li>Each cable variant is marked with <strong>CE marking</strong>, signifying European conformity with health, safety, and environmental protection standards.</li>
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -1118,13 +1118,13 @@ locale: en
|
||||
]
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h3 data-start="443" data-end="505">Ideal for high-voltage applications underground and outdoors</h3>
|
||||
<p data-start="507" data-end="867">The <strong data-start="511" data-end="526">NA2XS(FL)2Y</strong> meets the requirements of <strong data-start="557" data-end="570">IEC 60840</strong> and is suitable for <strong data-start="595" data-end="669">installation in the ground, in cable ducts, indoors, in pipes, and outdoors</strong>. It is manufactured based on project specifications and is particularly used in <strong data-start="725" data-end="798">transmission networks, utility infrastructures, and substations</strong> where safety and durability are top priorities.</p>
|
||||
<h3 data-start="869" data-end="904">Structure and technical features</h3>
|
||||
<p data-start="906" data-end="1465">At its core, the cable features a <strong data-start="927" data-end="975">compacted, multi-stranded aluminum conductor</strong> according to <strong data-start="981" data-end="994">IEC 60228</strong>, embedded in a <strong data-start="1016" data-end="1043">conductive inner layer</strong>, an <strong data-start="1050" data-end="1068">XLPE insulation</strong>, and a <strong data-start="1078" data-end="1128">fully bonded, extruded outer layer</strong>. The combination of a <strong data-start="1150" data-end="1177">water-swellable tape</strong>, <strong data-start="1179" data-end="1219">copper shielding with an open helix</strong>, and an additional <strong data-start="1239" data-end="1263">water-swellable wrap</strong> effectively protects the cable from moisture ingress. The black <strong data-start="1336" data-end="1396">PE sheath with firmly bonded aluminum tape (Alucopo)</strong> serves as both mechanical protection and a <strong data-start="1444" data-end="1464">transverse water barrier</strong>.</p>
|
||||
<h3 data-start="1467" data-end="1505">Properties and application benefits</h3>
|
||||
<p data-start="1507" data-end="1827">The NA2XS(FL)2Y is <strong data-start="1527" data-end="1543">suitable for direct burial</strong>, <strong data-start="1545" data-end="1569">mechanically robust</strong>, and offers excellent operational safety due to its <strong data-start="1594" data-end="1625">partial discharge-free design</strong> and water-repellent construction. It is configured project-specifically and can be used flexibly – from urban energy projects to large industrial installations.</p>
|
||||
</section>
|
||||
|
||||
<h3>Ideal for high-voltage applications underground and outdoors</h3>
|
||||
<p>The <strong>NA2XS(FL)2Y</strong> meets the requirements of <strong>IEC 60840</strong> and is suitable for <strong>installation in the ground, in cable ducts, indoors, in pipes, and outdoors</strong>. It is manufactured based on project specifications and is particularly used in <strong>transmission networks, utility infrastructures, and substations</strong> where safety and durability are top priorities.</p>
|
||||
<h3>Structure and technical features</h3>
|
||||
<p>At its core, the cable features a <strong>compacted, multi-stranded aluminum conductor</strong> according to <strong>IEC 60228</strong>, embedded in a <strong>conductive inner layer</strong>, an <strong>XLPE insulation</strong>, and a <strong>fully bonded, extruded outer layer</strong>. The combination of a <strong>water-swellable tape</strong>, <strong>copper shielding with an open helix</strong>, and an additional <strong>water-swellable wrap</strong> effectively protects the cable from moisture ingress. The black <strong>PE sheath with firmly bonded aluminum tape (Alucopo)</strong> serves as both mechanical protection and a <strong>transverse water barrier</strong>.</p>
|
||||
<h3>Properties and application benefits</h3>
|
||||
<p>The NA2XS(FL)2Y is <strong>suitable for direct burial</strong>, <strong>mechanically robust</strong>, and offers excellent operational safety due to its <strong>partial discharge-free design</strong> and water-repellent construction. It is configured project-specifically and can be used flexibly – from urban energy projects to large industrial installations.</p>
|
||||
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -823,13 +823,13 @@ locale: en
|
||||
]
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h3 data-start="448" data-end="491">For demanding operating conditions</h3>
|
||||
<p data-start="493" data-end="945">The <strong data-start="497" data-end="506">N2X2Y</strong> complies with <strong data-start="529" data-end="550">HD 603 S1 Part 5G</strong> and <strong data-start="555" data-end="576">HD 627 S1 Part 4H</strong> (equivalent to <strong data-start="596" data-end="616">DIN VDE 0276-603</strong> and <strong data-start="621" data-end="629">-627</strong>) and is designed for an <strong data-start="648" data-end="678">operating frequency of 50 Hz</strong>. It is suitable for fixed installation indoors, underground, outdoors, and in industrial environments with high temperature and load requirements. The maximum operating temperature is <strong data-start="888" data-end="898">+90 °C</strong>, and <strong data-start="924" data-end="935">+250 °C</strong> is permissible under short-circuit conditions.</p>
|
||||
<h3 data-start="947" data-end="982">Construction and technical features</h3>
|
||||
<p data-start="984" data-end="1334">The cable structure consists of <strong data-start="1012" data-end="1029">copper conductors</strong> with <strong data-start="1034" data-end="1076">XLPE insulation (cross-linked polyethylene)</strong>. The cores are stranded and surrounded by a robust <strong data-start="1126" data-end="1151">black HDPE sheath</strong>. The integrated <strong data-start="1177" data-end="1201">concentric conductor</strong> made of copper wires is grounded at both ends and provides effective protection against potential differences and contact voltages.</p>
|
||||
<h3 data-start="1336" data-end="1355">Fields of application</h3>
|
||||
<p data-start="1357" data-end="1663">N2X2Y is ideal for installations in <strong data-start="1395" data-end="1442">local networks, substations, and industrial plants</strong> as well as in <strong data-start="1447" data-end="1470">power distribution systems</strong>, where high <strong data-start="1487" data-end="1515">thermal endurance</strong> and <strong data-start="1520" data-end="1552">mechanical strength</strong> are required. It provides a durable solution for demanding operating conditions – reliable and safe.</p>
|
||||
</section>
|
||||
|
||||
<h3>For demanding operating conditions</h3>
|
||||
<p>The <strong>N2X2Y</strong> complies with <strong>HD 603 S1 Part 5G</strong> and <strong>HD 627 S1 Part 4H</strong> (equivalent to <strong>DIN VDE 0276-603</strong> and <strong>-627</strong>) and is designed for an <strong>operating frequency of 50 Hz</strong>. It is suitable for fixed installation indoors, underground, outdoors, and in industrial environments with high temperature and load requirements. The maximum operating temperature is <strong>+90 °C</strong>, and <strong>+250 °C</strong> is permissible under short-circuit conditions.</p>
|
||||
<h3>Construction and technical features</h3>
|
||||
<p>The cable structure consists of <strong>copper conductors</strong> with <strong>XLPE insulation (cross-linked polyethylene)</strong>. The cores are stranded and surrounded by a robust <strong>black HDPE sheath</strong>. The integrated <strong>concentric conductor</strong> made of copper wires is grounded at both ends and provides effective protection against potential differences and contact voltages.</p>
|
||||
<h3>Fields of application</h3>
|
||||
<p>N2X2Y is ideal for installations in <strong>local networks, substations, and industrial plants</strong> as well as in <strong>power distribution systems</strong>, where high <strong>thermal endurance</strong> and <strong>mechanical strength</strong> are required. It provides a durable solution for demanding operating conditions – reliable and safe.</p>
|
||||
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -875,13 +875,13 @@ locale: en
|
||||
]
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h3 data-start="514" data-end="565">For fixed installation in standard applications</h3>
|
||||
<p data-start="567" data-end="995">The <strong data-start="571" data-end="579">N2XY</strong> is used in low-voltage systems for power distribution – for example in cable trays, conduits, on walls, or directly underground. It can be installed both indoors and outdoors and is also suitable for humid environments. Thanks to various core configurations (single-core to four-core) and cross-sections up to 630 mm², the cable can be flexibly adapted to the respective application.</p>
|
||||
<h3 data-start="997" data-end="1020">Technical construction</h3>
|
||||
<p data-start="1022" data-end="1346">The conductor consists of solid or stranded <strong data-start="1067" data-end="1077">copper</strong> (RE or RM), with the cores insulated with <strong data-start="1111" data-end="1144">XLPE (cross-linked polyethylene)</strong>. The cable is embedded in a <strong data-start="1189" data-end="1206">PVC filler compound</strong> and surrounded by a <strong data-start="1226" data-end="1245">PVC outer sheath</strong>, which protects it against environmental influences and normal mechanical stress.</p>
|
||||
<h3 data-start="1348" data-end="1387">Variants and applications</h3>
|
||||
<p data-start="1389" data-end="1779">N2XY is available as <strong data-start="1409" data-end="1419">N2XY-J</strong> (with protective conductor) and <strong data-start="1452" data-end="1462">N2XY-O</strong> (without protective conductor). It offers a <strong data-start="1509" data-end="1594">space-saving, economical solution for low-voltage distribution</strong> without compromising on safety or quality. Typical applications include commercial and residential buildings, system installations, as well as connections between switchgear and distribution boards.</p>
|
||||
</section>
|
||||
|
||||
<h3>For fixed installation in standard applications</h3>
|
||||
<p>The <strong>N2XY</strong> is used in low-voltage systems for power distribution – for example in cable trays, conduits, on walls, or directly underground. It can be installed both indoors and outdoors and is also suitable for humid environments. Thanks to various core configurations (single-core to four-core) and cross-sections up to 630 mm², the cable can be flexibly adapted to the respective application.</p>
|
||||
<h3>Technical construction</h3>
|
||||
<p>The conductor consists of solid or stranded <strong>copper</strong> (RE or RM), with the cores insulated with <strong>XLPE (cross-linked polyethylene)</strong>. The cable is embedded in a <strong>PVC filler compound</strong> and surrounded by a <strong>PVC outer sheath</strong>, which protects it against environmental influences and normal mechanical stress.</p>
|
||||
<h3>Variants and applications</h3>
|
||||
<p>N2XY is available as <strong>N2XY-J</strong> (with protective conductor) and <strong>N2XY-O</strong> (without protective conductor). It offers a <strong>space-saving, economical solution for low-voltage distribution</strong> without compromising on safety or quality. Typical applications include commercial and residential buildings, system installations, as well as connections between switchgear and distribution boards.</p>
|
||||
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -797,13 +797,13 @@ locale: en
|
||||
]
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h3 data-start="488" data-end="537">Optimal for mechanically demanding applications</h3>
|
||||
<p data-start="539" data-end="948">The <strong data-start="543" data-end="553">NA2X2Y</strong> complies with <strong data-start="574" data-end="603">DIN VDE 0276-603 (HD 603)</strong> and is designed for <strong data-start="630" data-end="717">fixed installation indoors, in cable ducts, underground, in water, or outdoors</strong>. It is primarily used in <strong data-start="741" data-end="789">power plants, industrial facilities, and switching stations</strong> as well as <strong data-start="794" data-end="808">local distribution networks</strong> – wherever robust cables are needed that can withstand high mechanical stress during installation and operation.</p>
|
||||
<h3 data-start="950" data-end="979">Construction and properties</h3>
|
||||
<p data-start="981" data-end="1427">The electrical conductor consists of <strong data-start="1016" data-end="1029">aluminium</strong>, available as solid round (RE), stranded round (RM), or sector-shaped (SE/SM). The cores are <strong data-start="1135" data-end="1150">PE-insulated</strong>, stranded together, and protected by a <strong data-start="1176" data-end="1209">common EPDM sheath</strong>. The outer sheath is made of <strong data-start="1249" data-end="1257">HDPE</strong>, black, UV-resistant, and highly resistant to abrasion, pressure, and moisture – ideal for long-term installations in demanding environments.</p>
|
||||
<h3 data-start="1429" data-end="1449">Application benefits</h3>
|
||||
<p data-start="1451" data-end="1756">NA2X2Y cables provide a <strong data-start="1476" data-end="1524">technically robust and cost-efficient solution</strong> for power distribution in networks with increased requirements. Their high mechanical strength and weather resistance make them the first choice for demanding infrastructure applications in the energy and industrial sectors.</p>
|
||||
</section>
|
||||
|
||||
<h3>Optimal for mechanically demanding applications</h3>
|
||||
<p>The <strong>NA2X2Y</strong> complies with <strong>DIN VDE 0276-603 (HD 603)</strong> and is designed for <strong>fixed installation indoors, in cable ducts, underground, in water, or outdoors</strong>. It is primarily used in <strong>power plants, industrial facilities, and switching stations</strong> as well as <strong>local distribution networks</strong> – wherever robust cables are needed that can withstand high mechanical stress during installation and operation.</p>
|
||||
<h3>Construction and properties</h3>
|
||||
<p>The electrical conductor consists of <strong>aluminium</strong>, available as solid round (RE), stranded round (RM), or sector-shaped (SE/SM). The cores are <strong>PE-insulated</strong>, stranded together, and protected by a <strong>common EPDM sheath</strong>. The outer sheath is made of <strong>HDPE</strong>, black, UV-resistant, and highly resistant to abrasion, pressure, and moisture – ideal for long-term installations in demanding environments.</p>
|
||||
<h3>Application benefits</h3>
|
||||
<p>NA2X2Y cables provide a <strong>technically robust and cost-efficient solution</strong> for power distribution in networks with increased requirements. Their high mechanical strength and weather resistance make them the first choice for demanding infrastructure applications in the energy and industrial sectors.</p>
|
||||
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -875,13 +875,13 @@ locale: en
|
||||
]
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h3 data-start="511" data-end="550">For demanding network applications</h3>
|
||||
<p data-start="552" data-end="901">The <strong data-start="556" data-end="565">NA2XY</strong> complies with <strong data-start="586" data-end="615">DIN VDE 0276-603 (HD 603)</strong> and is ideal for fixed installation in <strong data-start="657" data-end="725">indoor spaces, cable ducts, outdoors, in water, or underground</strong>. Typical areas of application include <strong data-start="762" data-end="809">power plants, industrial facilities, and switching stations</strong> as well as <strong data-start="816" data-end="829">local distribution networks</strong>, where mechanical stress during operation must be considered.</p>
|
||||
<h3 data-start="903" data-end="926">Technical construction</h3>
|
||||
<p data-start="928" data-end="1288">The conductor is made of <strong data-start="951" data-end="964">aluminium</strong>, available as solid round (RE) or stranded round (RM). The cores are insulated with <strong data-start="1048" data-end="1077">PE (polyethylene)</strong>, which provides excellent electrical insulation and high thermal resistance. The black <strong data-start="1187" data-end="1201">PVC sheath</strong> is <strong data-start="1206" data-end="1222">UV-resistant</strong> and reliably protects against moisture and environmental influences.</p>
|
||||
<h3 data-start="1290" data-end="1310">Fields of application</h3>
|
||||
<p data-start="1312" data-end="1582">NA2XY cables are the right choice for <strong data-start="1351" data-end="1427">stable power distribution under mechanically demanding conditions</strong>. They provide an economical, durable solution for utilities, industry, and plant operators who rely on proven technology and high resilience.</p>
|
||||
</section>
|
||||
|
||||
<h3>For demanding network applications</h3>
|
||||
<p>The <strong>NA2XY</strong> complies with <strong>DIN VDE 0276-603 (HD 603)</strong> and is ideal for fixed installation in <strong>indoor spaces, cable ducts, outdoors, in water, or underground</strong>. Typical areas of application include <strong>power plants, industrial facilities, and switching stations</strong> as well as <strong>local distribution networks</strong>, where mechanical stress during operation must be considered.</p>
|
||||
<h3>Technical construction</h3>
|
||||
<p>The conductor is made of <strong>aluminium</strong>, available as solid round (RE) or stranded round (RM). The cores are insulated with <strong>PE (polyethylene)</strong>, which provides excellent electrical insulation and high thermal resistance. The black <strong>PVC sheath</strong> is <strong>UV-resistant</strong> and reliably protects against moisture and environmental influences.</p>
|
||||
<h3>Fields of application</h3>
|
||||
<p>NA2XY cables are the right choice for <strong>stable power distribution under mechanically demanding conditions</strong>. They provide an economical, durable solution for utilities, industry, and plant operators who rely on proven technology and high resilience.</p>
|
||||
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -876,13 +876,13 @@ locale: en
|
||||
]
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h3 data-start="525" data-end="567">For demanding installation conditions</h3>
|
||||
<p data-start="569" data-end="991">The <strong data-start="573" data-end="582">NAY2Y</strong> meets the requirements of <strong data-start="618" data-end="637">TP PRAKAB 12/03</strong> based on <strong data-start="654" data-end="670">VDE 0276-603</strong> and is suitable for <strong data-start="695" data-end="787">fixed installation indoors, in cable ducts, underground, in water, and outdoors</strong>. It is ideal for applications in power plants, industrial and switching stations, as well as local supply networks – wherever mechanical stress during installation or operation plays a significant role.</p>
|
||||
<h3 data-start="993" data-end="1028">Construction and material components</h3>
|
||||
<p data-start="1030" data-end="1474">The conductor is made of <strong data-start="1053" data-end="1066">aluminium</strong>, available as solid round (RE), stranded round (RM), or sector-shaped (SE/SM). The <strong data-start="1157" data-end="1181">PVC-insulated cores</strong> are stranded together and protected by a <strong data-start="1217" data-end="1251">common EPDM sheath</strong>. The outer sheath of <strong data-start="1285" data-end="1293">HDPE</strong> (black, UV-resistant) makes the cable particularly resistant to pressure, abrasion, and moisture – perfect for long-term installations under challenging conditions.</p>
|
||||
<h3 data-start="1476" data-end="1504">Typical applications</h3>
|
||||
<p data-start="1506" data-end="1785">NAY2Y cables are the first choice for <strong data-start="1538" data-end="1583">cabling projects with high loads</strong>, such as in industrial network construction or outdoor power distribution. They offer a robust, durable, and cost-efficient solution for stable power supply in a wide variety of environments.</p>
|
||||
</section>
|
||||
|
||||
<h3>For demanding installation conditions</h3>
|
||||
<p>The <strong>NAY2Y</strong> meets the requirements of <strong>TP PRAKAB 12/03</strong> based on <strong>VDE 0276-603</strong> and is suitable for <strong>fixed installation indoors, in cable ducts, underground, in water, and outdoors</strong>. It is ideal for applications in power plants, industrial and switching stations, as well as local supply networks – wherever mechanical stress during installation or operation plays a significant role.</p>
|
||||
<h3>Construction and material components</h3>
|
||||
<p>The conductor is made of <strong>aluminium</strong>, available as solid round (RE), stranded round (RM), or sector-shaped (SE/SM). The <strong>PVC-insulated cores</strong> are stranded together and protected by a <strong>common EPDM sheath</strong>. The outer sheath of <strong>HDPE</strong> (black, UV-resistant) makes the cable particularly resistant to pressure, abrasion, and moisture – perfect for long-term installations under challenging conditions.</p>
|
||||
<h3>Typical applications</h3>
|
||||
<p>NAY2Y cables are the first choice for <strong>cabling projects with high loads</strong>, such as in industrial network construction or outdoor power distribution. They offer a robust, durable, and cost-efficient solution for stable power supply in a wide variety of environments.</p>
|
||||
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -797,13 +797,13 @@ locale: en
|
||||
]
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h3 data-start="540" data-end="595">Designed for increased safety requirements</h3>
|
||||
<p data-start="597" data-end="998">The <strong data-start="601" data-end="611">NAYCWY</strong> complies with <strong data-start="632" data-end="661">DIN VDE 0276-603 (HD 603)</strong> and is suitable for use in <strong data-start="697" data-end="760">power plants, industrial facilities, switching stations, and local networks</strong>. It can be permanently installed – indoors, in cable ducts, outdoors, underground, or in water. Thanks to its concentric conductor, it offers additional protection in case of mechanical damage and enables safe potential equalization.</p>
|
||||
<h3 data-start="1000" data-end="1023">Technical construction</h3>
|
||||
<p data-start="1025" data-end="1497">The electrical conductor consists of <strong data-start="1060" data-end="1073">aluminium</strong>, available as stranded round (RM), sector-shaped solid (SE), or stranded (SM). The <strong data-start="1164" data-end="1185">PVC core insulation</strong> and a <strong data-start="1195" data-end="1228">common EPDM sheath</strong> protect the stranded cores. On top lies a <strong data-start="1278" data-end="1329">concentric conductor made of bare copper wires</strong> with copper tape counter helix – ideally usable as <strong data-start="1372" data-end="1394">PE or PEN conductor</strong>. A black <strong data-start="1422" data-end="1451">UV-resistant PVC sheath</strong> reliably seals the cable from the outside.</p>
|
||||
<h3 data-start="1499" data-end="1532">Application and special features</h3>
|
||||
<p data-start="1534" data-end="1894"><strong>NAYCWY</strong> cables are used wherever <strong data-start="1583" data-end="1623">electrical safety and shielding</strong> are required. The concentric conductor does not need to be separated when connecting to branch joints, which simplifies installation. This makes the cable particularly suitable for modern low-voltage networks with increased requirements for operational safety and contact protection.</p>
|
||||
</section>
|
||||
|
||||
<h3>Designed for increased safety requirements</h3>
|
||||
<p>The <strong>NAYCWY</strong> complies with <strong>DIN VDE 0276-603 (HD 603)</strong> and is suitable for use in <strong>power plants, industrial facilities, switching stations, and local networks</strong>. It can be permanently installed – indoors, in cable ducts, outdoors, underground, or in water. Thanks to its concentric conductor, it offers additional protection in case of mechanical damage and enables safe potential equalization.</p>
|
||||
<h3>Technical construction</h3>
|
||||
<p>The electrical conductor consists of <strong>aluminium</strong>, available as stranded round (RM), sector-shaped solid (SE), or stranded (SM). The <strong>PVC core insulation</strong> and a <strong>common EPDM sheath</strong> protect the stranded cores. On top lies a <strong>concentric conductor made of bare copper wires</strong> with copper tape counter helix – ideally usable as <strong>PE or PEN conductor</strong>. A black <strong>UV-resistant PVC sheath</strong> reliably seals the cable from the outside.</p>
|
||||
<h3>Application and special features</h3>
|
||||
<p><strong>NAYCWY</strong> cables are used wherever <strong>electrical safety and shielding</strong> are required. The concentric conductor does not need to be separated when connecting to branch joints, which simplifies installation. This makes the cable particularly suitable for modern low-voltage networks with increased requirements for operational safety and contact protection.</p>
|
||||
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -1084,13 +1084,13 @@ locale: en
|
||||
]
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h3 data-start="567" data-end="615">Versatile applications in network construction</h3>
|
||||
<p data-start="617" data-end="989">The <strong data-start="621" data-end="629">NAYY</strong> is a power distribution cable according to <strong data-start="667" data-end="683">VDE 0276-603</strong>, particularly suitable for use in <strong data-start="723" data-end="780">power plants, local networks, industrial facilities, and switching stations</strong>. Thanks to its robust design, it can be installed permanently – whether indoors, in cable ducts, outdoors, or underground. Even when installed in water, the cable remains reliable in operation.</p>
|
||||
<h3 data-start="991" data-end="1018">Construction and materials</h3>
|
||||
<p data-start="1020" data-end="1390">At its core is an <strong data-start="1044" data-end="1063">aluminium conductor</strong>, available as solid round (RE), stranded round (RM), or sector-shaped (SE/SM). The conductors are <strong data-start="1185" data-end="1201">PVC-insulated</strong>, stranded together, and protected by a <strong data-start="1227" data-end="1260">common EPDM sheath</strong>. The outer <strong data-start="1283" data-end="1297">PVC sheath</strong> is black, UV-resistant, and resistant to moisture and environmental influences.</p>
|
||||
<h3 data-start="1392" data-end="1417">Typical applications</h3>
|
||||
<p data-start="1419" data-end="1694">NAYY cables are ideally suited for <strong data-start="1454" data-end="1500">permanent, cost-effective installations</strong> in supply networks, distribution systems, or building wiring. They provide a solid and durable solution for safe power distribution under standardized conditions.</p>
|
||||
</section>
|
||||
|
||||
<h3>Versatile applications in network construction</h3>
|
||||
<p>The <strong>NAYY</strong> is a power distribution cable according to <strong>VDE 0276-603</strong>, particularly suitable for use in <strong>power plants, local networks, industrial facilities, and switching stations</strong>. Thanks to its robust design, it can be installed permanently – whether indoors, in cable ducts, outdoors, or underground. Even when installed in water, the cable remains reliable in operation.</p>
|
||||
<h3>Construction and materials</h3>
|
||||
<p>At its core is an <strong>aluminium conductor</strong>, available as solid round (RE), stranded round (RM), or sector-shaped (SE/SM). The conductors are <strong>PVC-insulated</strong>, stranded together, and protected by a <strong>common EPDM sheath</strong>. The outer <strong>PVC sheath</strong> is black, UV-resistant, and resistant to moisture and environmental influences.</p>
|
||||
<h3>Typical applications</h3>
|
||||
<p>NAYY cables are ideally suited for <strong>permanent, cost-effective installations</strong> in supply networks, distribution systems, or building wiring. They provide a solid and durable solution for safe power distribution under standardized conditions.</p>
|
||||
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -498,13 +498,13 @@ locale: en
|
||||
]
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h3 data-start="518" data-end="554">Reliable under heavy load</h3>
|
||||
<p data-start="556" data-end="987">The <strong data-start="560" data-end="568">NY2Y</strong> is a low-voltage cable for use in power plants, industrial facilities, switching stations, and local distribution networks. It is suitable for <strong data-start="706" data-end="792">fixed installation indoors, in cable ducts, outdoors, in water, and underground</strong> – wherever strong mechanical stress is expected during installation and operation. The construction complies with <strong data-start="934" data-end="953">TP PRAKAB 16/03</strong> based on <strong data-start="970" data-end="986">VDE 0276-603</strong>.</p>
|
||||
<h3 data-start="989" data-end="1010">Detailed construction</h3>
|
||||
<p data-start="1012" data-end="1431">The cable consists of a <strong data-start="1040" data-end="1056">copper conductor</strong>, available as solid round (RE), stranded round (RM), or sector-shaped stranded (SM). The <strong data-start="1156" data-end="1177">PVC core insulation</strong> ensures electrical safety, while the cores are stranded together and protected by a common <strong data-start="1262" data-end="1284">EPDM sheath</strong>. The outer sheath made of <strong data-start="1316" data-end="1324">HDPE</strong> (black, UV-resistant) makes the NY2Y particularly resistant to abrasion, moisture, and environmental influences.</p>
|
||||
<h3 data-start="1433" data-end="1462">Typical applications</h3>
|
||||
<p data-start="1464" data-end="1802">NY2Y is ideally suited for applications with increased requirements for <strong data-start="1540" data-end="1566">mechanical strength</strong> and <strong data-start="1571" data-end="1598">weather resistance</strong>. Typical fields of use include power distribution in industrial plants, power stations, or transformer stations – but also in environments with moisture, direct sunlight, or chemical exposure.</p>
|
||||
</section>
|
||||
|
||||
<h3>Reliable under heavy load</h3>
|
||||
<p>The <strong>NY2Y</strong> is a low-voltage cable for use in power plants, industrial facilities, switching stations, and local distribution networks. It is suitable for <strong>fixed installation indoors, in cable ducts, outdoors, in water, and underground</strong> – wherever strong mechanical stress is expected during installation and operation. The construction complies with <strong>TP PRAKAB 16/03</strong> based on <strong>VDE 0276-603</strong>.</p>
|
||||
<h3>Detailed construction</h3>
|
||||
<p>The cable consists of a <strong>copper conductor</strong>, available as solid round (RE), stranded round (RM), or sector-shaped stranded (SM). The <strong>PVC core insulation</strong> ensures electrical safety, while the cores are stranded together and protected by a common <strong>EPDM sheath</strong>. The outer sheath made of <strong>HDPE</strong> (black, UV-resistant) makes the NY2Y particularly resistant to abrasion, moisture, and environmental influences.</p>
|
||||
<h3>Typical applications</h3>
|
||||
<p>NY2Y is ideally suited for applications with increased requirements for <strong>mechanical strength</strong> and <strong>weather resistance</strong>. Typical fields of use include power distribution in industrial plants, power stations, or transformer stations – but also in environments with moisture, direct sunlight, or chemical exposure.</p>
|
||||
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -709,13 +709,13 @@ locale: en
|
||||
]
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h3 data-start="213" data-end="264">Versatile use in power distribution</h3>
|
||||
<p data-start="266" data-end="765">The NYCWY is one of the classic <strong data-start="302" data-end="345">low-voltage cables according to VDE standard</strong> and is designed for rated voltages up to 1 kV. It is used wherever reliable energy distribution is required – in buildings, industrial plants, transformer stations, or directly underground. It can also be easily installed in cable trays, concrete environments, or underwater. The choice of materials ensures that this cable withstands even harsh conditions – without the need for additional protective measures.</p>
|
||||
<h3 data-start="767" data-end="794">Construction and materials</h3>
|
||||
<p data-start="796" data-end="1206">The design is technically well thought out: a copper conductor forms the core, surrounded by PVC insulation that is both mechanically robust and electrically safe. This is followed by a concentric conductor in a corrugated shape, which serves as a protective or return conductor depending on the application. The outer layer is a durable <strong data-start="1118" data-end="1132">PVC sheath</strong> that protects the cable against moisture, pressure, and chemical influences.</p>
|
||||
<h3 data-start="1208" data-end="1239">Variants and cross-sections</h3>
|
||||
<p data-start="1241" data-end="1628">The NYCWY is available in a wide range of versions – for example, <strong data-start="1320" data-end="1331">4x25/16</strong>, 4x70/35, or 4x185/95. The first number group indicates the number and cross-section of the current-carrying conductors, the second refers to the concentric conductor. This flexibility allows the cable to be adapted to different network requirements – from house connections to industrial power distribution.</p>
|
||||
</section>
|
||||
|
||||
<h3>Versatile use in power distribution</h3>
|
||||
<p>The NYCWY is one of the classic <strong>low-voltage cables according to VDE standard</strong> and is designed for rated voltages up to 1 kV. It is used wherever reliable energy distribution is required – in buildings, industrial plants, transformer stations, or directly underground. It can also be easily installed in cable trays, concrete environments, or underwater. The choice of materials ensures that this cable withstands even harsh conditions – without the need for additional protective measures.</p>
|
||||
<h3>Construction and materials</h3>
|
||||
<p>The design is technically well thought out: a copper conductor forms the core, surrounded by PVC insulation that is both mechanically robust and electrically safe. This is followed by a concentric conductor in a corrugated shape, which serves as a protective or return conductor depending on the application. The outer layer is a durable <strong>PVC sheath</strong> that protects the cable against moisture, pressure, and chemical influences.</p>
|
||||
<h3>Variants and cross-sections</h3>
|
||||
<p>The NYCWY is available in a wide range of versions – for example, <strong>4x25/16</strong>, 4x70/35, or 4x185/95. The first number group indicates the number and cross-section of the current-carrying conductors, the second refers to the concentric conductor. This flexibility allows the cable to be adapted to different network requirements – from house connections to industrial power distribution.</p>
|
||||
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -1352,13 +1352,13 @@ locale: en
|
||||
]
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h3 data-start="439" data-end="484">Solid solution for standard applications</h3>
|
||||
<p data-start="486" data-end="868">The <strong data-start="490" data-end="497">NYY</strong> cable is a standardized <strong>low-voltage cable</strong> according to <strong data-start="558" data-end="574">VDE 0276-603</strong>. It is used in power plants, industrial facilities, switching stations, and local distribution networks. It is suitable for <strong data-start="687" data-end="773">fixed installation indoors, in cable ducts, outdoors, underground, and in water</strong> – always under the condition that no special mechanical stresses are present.</p>
|
||||
<h3 data-start="870" data-end="907">Construction and material properties</h3>
|
||||
<p data-start="909" data-end="1274">The conductor consists of <strong data-start="932" data-end="942">copper</strong> – available as solid round (RE), stranded round (RM), or sector-shaped stranded (SM). The cores are <strong data-start="1054" data-end="1070">PVC-insulated</strong>, stranded together, and surrounded by a common <strong data-start="1107" data-end="1129">EPDM core sheath</strong>. The outer sheath is made of <strong data-start="1167" data-end="1200">black, UV-resistant PVC</strong> and reliably protects the cable against environmental influences and moisture.</p>
|
||||
<h3 data-start="1276" data-end="1296">Fields of application</h3>
|
||||
<p data-start="1298" data-end="1642">The NYY cable is ideally suited for <strong data-start="1334" data-end="1372">conventional power distribution</strong>, where simple and durable technology is required. It is preferably used in places where installation is possible without increased mechanical demands – for example, inside buildings, in supply lines, or for underground installation in standard local networks.</p>
|
||||
</section>
|
||||
|
||||
<h3>Solid solution for standard applications</h3>
|
||||
<p>The <strong>NYY</strong> cable is a standardized <strong>low-voltage cable</strong> according to <strong>VDE 0276-603</strong>. It is used in power plants, industrial facilities, switching stations, and local distribution networks. It is suitable for <strong>fixed installation indoors, in cable ducts, outdoors, underground, and in water</strong> – always under the condition that no special mechanical stresses are present.</p>
|
||||
<h3>Construction and material properties</h3>
|
||||
<p>The conductor consists of <strong>copper</strong> – available as solid round (RE), stranded round (RM), or sector-shaped stranded (SM). The cores are <strong>PVC-insulated</strong>, stranded together, and surrounded by a common <strong>EPDM core sheath</strong>. The outer sheath is made of <strong>black, UV-resistant PVC</strong> and reliably protects the cable against environmental influences and moisture.</p>
|
||||
<h3>Fields of application</h3>
|
||||
<p>The NYY cable is ideally suited for <strong>conventional power distribution</strong>, where simple and durable technology is required. It is preferably used in places where installation is possible without increased mechanical demands – for example, inside buildings, in supply lines, or for underground installation in standard local networks.</p>
|
||||
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -956,13 +956,13 @@ locale: en
|
||||
]
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h3 data-start="451" data-end="502">For underground installation and demanding environments</h3>
|
||||
<p data-start="504" data-end="901">The <strong data-start="508" data-end="518">N2XS2Y</strong> complies with the standards <strong data-start="538" data-end="558">DIN VDE 0276-620</strong>, <strong data-start="560" data-end="573">HD 620 S2</strong> and <strong data-start="578" data-end="591">IEC 60502</strong>. It is suitable for <strong data-start="612" data-end="725">installation indoors, in cable ducts, outdoors, in water, on cable trays, and especially underground</strong>. Thanks to its robust sheath, it is frequently used in <strong data-start="788" data-end="841">industrial plants, power stations, and switching stations</strong>, where stability and durability are essential.</p>
|
||||
<h3 data-start="903" data-end="926">Technical construction</h3>
|
||||
<p data-start="928" data-end="1367">The conductor consists of <strong data-start="951" data-end="984">bare, multi-stranded copper</strong> (Class 2), surrounded by an <strong data-start="1015" data-end="1038">inner conductive layer</strong> and <strong data-start="1049" data-end="1067">XLPE insulation</strong> with a tightly bonded outer conductive layer. The shielding is provided by a <strong data-start="1141" data-end="1187">copper wire braid with counter helix</strong>. Additionally, the cable includes a <strong data-start="1224" data-end="1250">conductive tape</strong> and features a <strong data-start="1278" data-end="1301">black PE sheath</strong> (Type DMP2) that protects against moisture and mechanical abrasion.</p>
|
||||
<h3 data-start="1369" data-end="1402">Features and application benefits</h3>
|
||||
<p data-start="1404" data-end="1766">The N2XS2Y is <strong data-start="1419" data-end="1435">suitable for underground installation</strong>, <strong data-start="1437" data-end="1465">free from silicone and cadmium</strong>, and <strong data-start="1472" data-end="1493">not flame-retardant</strong>. It is rated for <strong data-start="1523" data-end="1544">+90 °C in operation</strong> and <strong data-start="1549" data-end="1579">+250 °C under short-circuit conditions</strong>. Thanks to its <strong data-start="1603" data-end="1635">partial discharge-free design</strong>, it offers a high level of safety and is particularly well-suited for networks with heavy load and challenging routing conditions.</p>
|
||||
</section>
|
||||
|
||||
<h3>For underground installation and demanding environments</h3>
|
||||
<p>The <strong>N2XS2Y</strong> complies with the standards <strong>DIN VDE 0276-620</strong>, <strong>HD 620 S2</strong> and <strong>IEC 60502</strong>. It is suitable for <strong>installation indoors, in cable ducts, outdoors, in water, on cable trays, and especially underground</strong>. Thanks to its robust sheath, it is frequently used in <strong>industrial plants, power stations, and switching stations</strong>, where stability and durability are essential.</p>
|
||||
<h3>Technical construction</h3>
|
||||
<p>The conductor consists of <strong>bare, multi-stranded copper</strong> (Class 2), surrounded by an <strong>inner conductive layer</strong> and <strong>XLPE insulation</strong> with a tightly bonded outer conductive layer. The shielding is provided by a <strong>copper wire braid with counter helix</strong>. Additionally, the cable includes a <strong>conductive tape</strong> and features a <strong>black PE sheath</strong> (Type DMP2) that protects against moisture and mechanical abrasion.</p>
|
||||
<h3>Features and application benefits</h3>
|
||||
<p>The N2XS2Y is <strong>suitable for underground installation</strong>, <strong>free from silicone and cadmium</strong>, and <strong>not flame-retardant</strong>. It is rated for <strong>+90 °C in operation</strong> and <strong>+250 °C under short-circuit conditions</strong>. Thanks to its <strong>partial discharge-free design</strong>, it offers a high level of safety and is particularly well-suited for networks with heavy load and challenging routing conditions.</p>
|
||||
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -388,13 +388,13 @@ locale: en
|
||||
]
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h3 data-start="452" data-end="502">Designed for high-performance network environments</h3>
|
||||
<p data-start="504" data-end="904">The <strong data-start="508" data-end="521">N2XS(F)2Y</strong> complies with common standards <strong data-start="550" data-end="570">DIN VDE 0276-620</strong>, <strong data-start="572" data-end="585">HD 620 S2</strong> and <strong data-start="590" data-end="603">IEC 60502</strong>, and is suitable for <strong data-start="620" data-end="713">installation indoors, in cable ducts, outdoors, in water, underground, and on cable trays</strong>. This cable proves its strengths especially in <strong data-start="737" data-end="785">utility grids, industrial plants, and power stations</strong> – wherever durability, watertightness, and safety are essential.</p>
|
||||
<h3 data-start="906" data-end="946">Structure and technical characteristics</h3>
|
||||
<p data-start="948" data-end="1387">Inside is a <strong data-start="977" data-end="1016">bare, multi-stranded copper conductor</strong> (Class 2), surrounded by an <strong data-start="1047" data-end="1123">extruded XLPE insulation with inner and bonded outer conductive layer</strong>. A <strong data-start="1130" data-end="1174">longitudinally watertight, conductive tape</strong>, a <strong data-start="1181" data-end="1234">copper wire screen with counter helix</strong>, and an additional <strong data-start="1256" data-end="1282">longitudinally watertight layer</strong> ensure the design's integrity. The black <strong data-start="1316" data-end="1345">PE outer sheath (Type DMP2)</strong> provides high mechanical strength.</p>
|
||||
<h3 data-start="1389" data-end="1425">Applications and benefits</h3>
|
||||
<p data-start="1427" data-end="1822">The N2XS(F)2Y is <strong data-start="1445" data-end="1461">suitable for underground installation</strong>, <strong data-start="1463" data-end="1509">resistant to aggressive environmental conditions</strong>, and withstands <strong data-start="1519" data-end="1562">temperatures up to +90 °C in continuous operation</strong> and <strong data-start="1569" data-end="1599">+250 °C in short-circuit conditions</strong>. It is <strong data-start="1614" data-end="1663">free from silicone and cadmium-containing substances</strong> and, thanks to its <strong data-start="1677" data-end="1709">partial discharge-free design</strong>, particularly suitable for networks with the highest demands on <strong data-start="1769" data-end="1803">electrical operational safety</strong> and longevity.</p>
|
||||
</section>
|
||||
|
||||
<h3>Designed for high-performance network environments</h3>
|
||||
<p>The <strong>N2XS(F)2Y</strong> complies with common standards <strong>DIN VDE 0276-620</strong>, <strong>HD 620 S2</strong> and <strong>IEC 60502</strong>, and is suitable for <strong>installation indoors, in cable ducts, outdoors, in water, underground, and on cable trays</strong>. This cable proves its strengths especially in <strong>utility grids, industrial plants, and power stations</strong> – wherever durability, watertightness, and safety are essential.</p>
|
||||
<h3>Structure and technical characteristics</h3>
|
||||
<p>Inside is a <strong>bare, multi-stranded copper conductor</strong> (Class 2), surrounded by an <strong>extruded XLPE insulation with inner and bonded outer conductive layer</strong>. A <strong>longitudinally watertight, conductive tape</strong>, a <strong>copper wire screen with counter helix</strong>, and an additional <strong>longitudinally watertight layer</strong> ensure the design's integrity. The black <strong>PE outer sheath (Type DMP2)</strong> provides high mechanical strength.</p>
|
||||
<h3>Applications and benefits</h3>
|
||||
<p>The N2XS(F)2Y is <strong>suitable for underground installation</strong>, <strong>resistant to aggressive environmental conditions</strong>, and withstands <strong>temperatures up to +90 °C in continuous operation</strong> and <strong>+250 °C in short-circuit conditions</strong>. It is <strong>free from silicone and cadmium-containing substances</strong> and, thanks to its <strong>partial discharge-free design</strong>, particularly suitable for networks with the highest demands on <strong>electrical operational safety</strong> and longevity.</p>
|
||||
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -914,13 +914,13 @@ locale: en
|
||||
]
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h3 data-start="483" data-end="530">For demanding power distribution networks</h3>
|
||||
<p data-start="532" data-end="920">The <strong data-start="536" data-end="550">N2XS(FL)2Y</strong> meets the standards <strong data-start="573" data-end="593">DIN VDE 0276-620</strong>, <strong data-start="595" data-end="608">HD 620 S2</strong> and <strong data-start="613" data-end="626">IEC 60502</strong>. It is ideally suited for <strong data-start="664" data-end="762">installation indoors, in cable ducts, outdoors, in soil, in water, and on cable trays</strong> – especially in <strong data-start="781" data-end="833">utility grids, industrial plants, and switching stations</strong>, where high demands on mechanical strength and water resistance apply.</p>
|
||||
<h3 data-start="922" data-end="945">Technical construction</h3>
|
||||
<p data-start="947" data-end="1455">The cable design is based on a <strong data-start="981" data-end="1011">multi-stranded copper conductor</strong> (Class 2), an <strong data-start="1030" data-end="1047">XLPE insulation</strong> with an extruded, tightly bonded <strong data-start="1081" data-end="1104">outer conductive layer</strong>, and a <strong data-start="1118" data-end="1164">longitudinally watertight, conductive tape</strong>. The shielding consists of <strong data-start="1194" data-end="1230">copper wires with counter helix</strong>, complemented by an additional <strong data-start="1259" data-end="1291">longitudinally watertight tape</strong>. The outer protection is achieved with a <strong data-start="1327" data-end="1396">black PE sheath laminated with an aluminum tape</strong> – serving as an effective <strong data-start="1434" data-end="1454">water barrier</strong>.</p>
|
||||
<h3 data-start="1457" data-end="1488">Properties and benefits</h3>
|
||||
<p data-start="1490" data-end="1897">The N2XS(FL)2Y is <strong data-start="1509" data-end="1525">suitable for underground installation</strong>, <strong data-start="1527" data-end="1560">designed for outdoor use</strong>, and withstands <strong data-start="1570" data-end="1605">operating temperatures up to +90 °C</strong> and <strong data-start="1612" data-end="1650">short-circuit loads up to +250 °C</strong>. It is <strong data-start="1665" data-end="1693">free from silicone and cadmium</strong> and contains no substances that interfere with paint wetting. Thanks to its <strong data-start="1760" data-end="1792">partial discharge-free design</strong> and the Al/PE layer, it is ideally suited for <strong data-start="1843" data-end="1896">humid environments with high safety requirements</strong>.</p>
|
||||
</section>
|
||||
|
||||
<h3>For demanding power distribution networks</h3>
|
||||
<p>The <strong>N2XS(FL)2Y</strong> meets the standards <strong>DIN VDE 0276-620</strong>, <strong>HD 620 S2</strong> and <strong>IEC 60502</strong>. It is ideally suited for <strong>installation indoors, in cable ducts, outdoors, in soil, in water, and on cable trays</strong> – especially in <strong>utility grids, industrial plants, and switching stations</strong>, where high demands on mechanical strength and water resistance apply.</p>
|
||||
<h3>Technical construction</h3>
|
||||
<p>The cable design is based on a <strong>multi-stranded copper conductor</strong> (Class 2), an <strong>XLPE insulation</strong> with an extruded, tightly bonded <strong>outer conductive layer</strong>, and a <strong>longitudinally watertight, conductive tape</strong>. The shielding consists of <strong>copper wires with counter helix</strong>, complemented by an additional <strong>longitudinally watertight tape</strong>. The outer protection is achieved with a <strong>black PE sheath laminated with an aluminum tape</strong> – serving as an effective <strong>water barrier</strong>.</p>
|
||||
<h3>Properties and benefits</h3>
|
||||
<p>The N2XS(FL)2Y is <strong>suitable for underground installation</strong>, <strong>designed for outdoor use</strong>, and withstands <strong>operating temperatures up to +90 °C</strong> and <strong>short-circuit loads up to +250 °C</strong>. It is <strong>free from silicone and cadmium</strong> and contains no substances that interfere with paint wetting. Thanks to its <strong>partial discharge-free design</strong> and the Al/PE layer, it is ideally suited for <strong>humid environments with high safety requirements</strong>.</p>
|
||||
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -950,13 +950,13 @@ locale: en
|
||||
]
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h3 data-start="435" data-end="481">For powerful medium-voltage applications</h3>
|
||||
<p data-start="483" data-end="868">The <strong data-start="487" data-end="496">N2XSY</strong> meets the standards <strong data-start="516" data-end="536">DIN VDE 0276-620</strong>, <strong data-start="538" data-end="551">HD 620 S2</strong> and <strong data-start="556" data-end="569">IEC 60502</strong>. It is designed for <strong data-start="596" data-end="708">installation indoors, in cable ducts, in water, underground, or outdoors (when protected)</strong>. Whether in <strong data-start="716" data-end="768">industrial plants, power stations, or substations</strong> – this cable ensures safe and low-loss power transmission in medium-voltage networks.</p>
|
||||
<h3 data-start="870" data-end="905">Construction and technical features</h3>
|
||||
<p data-start="907" data-end="1380">The cable consists of a <strong data-start="935" data-end="974">bare, multi-stranded copper conductor</strong> (Class 2), surrounded by <strong data-start="998" data-end="1015">XLPE insulation</strong> with a tightly bonded <strong data-start="1034" data-end="1057">outer conductive layer</strong>. A <strong data-start="1076" data-end="1101">conductive tape</strong>, a <strong data-start="1108" data-end="1160">copper wire screen with counter helix</strong>, additional tape, and a <strong data-start="1193" data-end="1213">red PVC sheath</strong> (Type DMV6) complete the construction. The extruded combination of insulation and conductive layer ensures <strong data-start="1322" data-end="1354">partial discharge-free operation</strong> and high reliability.</p>
|
||||
<h3 data-start="1382" data-end="1420">Properties and application benefits</h3>
|
||||
<p data-start="1422" data-end="1807">The N2XSY cable is <strong data-start="1442" data-end="1458">suitable for underground installation</strong>, <strong data-start="1460" data-end="1501">flame-retardant according to DIN VDE 0482-332-1-2</strong>, and <strong data-start="1506" data-end="1555">free from silicone and cadmium-containing substances</strong>. With a <strong data-start="1561" data-end="1590">+90 °C operating temperature</strong> and <strong data-start="1595" data-end="1627">+250 °C short-circuit resistance</strong>, it is ideal for networks with high thermal loads. Excellent installation properties also allow for easy handling, even in complex routing scenarios.</p>
|
||||
</section>
|
||||
|
||||
<h3>For powerful medium-voltage applications</h3>
|
||||
<p>The <strong>N2XSY</strong> meets the standards <strong>DIN VDE 0276-620</strong>, <strong>HD 620 S2</strong> and <strong>IEC 60502</strong>. It is designed for <strong>installation indoors, in cable ducts, in water, underground, or outdoors (when protected)</strong>. Whether in <strong>industrial plants, power stations, or substations</strong> – this cable ensures safe and low-loss power transmission in medium-voltage networks.</p>
|
||||
<h3>Construction and technical features</h3>
|
||||
<p>The cable consists of a <strong>bare, multi-stranded copper conductor</strong> (Class 2), surrounded by <strong>XLPE insulation</strong> with a tightly bonded <strong>outer conductive layer</strong>. A <strong>conductive tape</strong>, a <strong>copper wire screen with counter helix</strong>, additional tape, and a <strong>red PVC sheath</strong> (Type DMV6) complete the construction. The extruded combination of insulation and conductive layer ensures <strong>partial discharge-free operation</strong> and high reliability.</p>
|
||||
<h3>Properties and application benefits</h3>
|
||||
<p>The N2XSY cable is <strong>suitable for underground installation</strong>, <strong>flame-retardant according to DIN VDE 0482-332-1-2</strong>, and <strong>free from silicone and cadmium-containing substances</strong>. With a <strong>+90 °C operating temperature</strong> and <strong>+250 °C short-circuit resistance</strong>, it is ideal for networks with high thermal loads. Excellent installation properties also allow for easy handling, even in complex routing scenarios.</p>
|
||||
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -1100,13 +1100,13 @@ locale: en
|
||||
]
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h3 data-start="462" data-end="510">For harsh environments and heavy loads</h3>
|
||||
<p data-start="512" data-end="900">The <strong data-start="516" data-end="527">NA2XS2Y</strong> complies with <strong data-start="547" data-end="567">DIN VDE 0276-620</strong>, <strong data-start="569" data-end="582">HD 620 S2</strong> and <strong data-start="587" data-end="600">IEC 60502</strong> standards, and is specifically designed for <strong data-start="626" data-end="708">fixed installation indoors, in cable ducts, outdoors, in soil and water</strong>. It is commonly used in <strong data-start="748" data-end="801">industrial facilities, switching stations, and power plants</strong>, especially where the cable is <strong data-start="862" data-end="894">exposed to high mechanical stress</strong> during installation or operation.</p>
|
||||
<h3 data-start="902" data-end="937">Construction and technical features</h3>
|
||||
<p data-start="939" data-end="1476">The cable features a <strong data-start="963" data-end="996">multi-stranded aluminium conductor</strong> (Class 2 according to DIN VDE 0295 / IEC 60228). The <strong data-start="1053" data-end="1070">XLPE insulation</strong> (Type DIX8) is inseparably bonded to the <strong data-start="1105" data-end="1128">outer conductive layer</strong> and, together with the <strong data-start="1167" data-end="1190">inner conductive layer</strong>, ensures <strong data-start="1201" data-end="1233">partial discharge-free operation</strong>. The <strong data-start="1239" data-end="1254">shielding</strong> consists of a copper wire braid with counter helix. The <strong data-start="1343" data-end="1370">black PE sheath (Type DMP2)</strong> protects against moisture, mechanical pressure, and chemical exposure – but is not flame-retardant.</p>
|
||||
<h3 data-start="1478" data-end="1526">Special features and application benefits</h3>
|
||||
<p data-start="1528" data-end="1930">NA2XS2Y is <strong data-start="1540" data-end="1556">suitable for underground installation</strong> and for use at <strong data-start="1577" data-end="1607">temperatures as low as -20 °C</strong>. It is <strong data-start="1625" data-end="1653">free from silicone and cadmium</strong>, contains no paint-wetting impairment substances, and handles a <strong data-start="1714" data-end="1754">continuous operating temperature of up to +90 °C</strong>, and up to <strong data-start="1785" data-end="1796">+250 °C</strong> in short-circuit conditions. The black PE sheath makes this cable the <strong data-start="1841" data-end="1929">ideal high-resilience solution for permanent underground medium-voltage installations</strong>.</p>
|
||||
</section>
|
||||
|
||||
<h3>For harsh environments and heavy loads</h3>
|
||||
<p>The <strong>NA2XS2Y</strong> complies with <strong>DIN VDE 0276-620</strong>, <strong>HD 620 S2</strong> and <strong>IEC 60502</strong> standards, and is specifically designed for <strong>fixed installation indoors, in cable ducts, outdoors, in soil and water</strong>. It is commonly used in <strong>industrial facilities, switching stations, and power plants</strong>, especially where the cable is <strong>exposed to high mechanical stress</strong> during installation or operation.</p>
|
||||
<h3>Construction and technical features</h3>
|
||||
<p>The cable features a <strong>multi-stranded aluminium conductor</strong> (Class 2 according to DIN VDE 0295 / IEC 60228). The <strong>XLPE insulation</strong> (Type DIX8) is inseparably bonded to the <strong>outer conductive layer</strong> and, together with the <strong>inner conductive layer</strong>, ensures <strong>partial discharge-free operation</strong>. The <strong>shielding</strong> consists of a copper wire braid with counter helix. The <strong>black PE sheath (Type DMP2)</strong> protects against moisture, mechanical pressure, and chemical exposure – but is not flame-retardant.</p>
|
||||
<h3>Special features and application benefits</h3>
|
||||
<p>NA2XS2Y is <strong>suitable for underground installation</strong> and for use at <strong>temperatures as low as -20 °C</strong>. It is <strong>free from silicone and cadmium</strong>, contains no paint-wetting impairment substances, and handles a <strong>continuous operating temperature of up to +90 °C</strong>, and up to <strong>+250 °C</strong> in short-circuit conditions. The black PE sheath makes this cable the <strong>ideal high-resilience solution for permanent underground medium-voltage installations</strong>.</p>
|
||||
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -1136,13 +1136,13 @@ locale: en
|
||||
]
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h3 data-start="508" data-end="575">For high-performance power networks with enhanced protection requirements</h3>
|
||||
<p data-start="577" data-end="994">The <strong data-start="581" data-end="595">NA2XS(F)2Y</strong> complies with standards <strong data-start="618" data-end="638">DIN VDE 0276-620</strong>, <strong data-start="640" data-end="653">HD 620 S2</strong> and <strong data-start="658" data-end="671">IEC 60502</strong>. It is suitable for <strong data-start="696" data-end="797">installation indoors, in cable ducts, underground, in water, outdoors, or on cable trays</strong>. Its main applications are in <strong data-start="831" data-end="881">utility grids, industrial facilities, and substations</strong>, where additional safety reserves against moisture ingress and mechanical stress are required.</p>
|
||||
<h3 data-start="996" data-end="1033">Construction and material characteristics</h3>
|
||||
<p data-start="1035" data-end="1537">The conductor consists of <strong data-start="1058" data-end="1085">multi-stranded aluminium</strong> (Class 2), surrounded by an <strong data-start="1116" data-end="1139">inner conductive layer</strong> and <strong data-start="1150" data-end="1168">XLPE insulation</strong> with a tightly bonded outer conductive layer – extruded in a single process for maximum operational safety. The shielding is provided by a <strong data-start="1309" data-end="1354">copper wire braid with counter helix</strong>, complemented by a <strong data-start="1375" data-end="1407">longitudinally watertight tape</strong>. The outer sheath is made of <strong data-start="1437" data-end="1464">black PE (Type DMP2)</strong> and reliably protects against mechanical stress and moisture.</p>
|
||||
<h3 data-start="1539" data-end="1577">Properties and fields of application</h3>
|
||||
<p data-start="1579" data-end="1977">The NA2XS(F)2Y is <strong data-start="1598" data-end="1614">suitable for underground installation</strong>, <strong data-start="1616" data-end="1644">free from silicone and cadmium</strong>, and <strong data-start="1651" data-end="1704">resistant to paint-wetting impairment substances</strong>. It withstands <strong data-start="1714" data-end="1746">continuous temperatures up to +90 °C</strong> and tolerates <strong data-start="1767" data-end="1805">short-circuit loads up to +250 °C</strong>. Thanks to its well-designed, partial discharge-free structure, it is particularly well suited for <strong data-start="1900" data-end="1976">safe power distribution in moist and complex installation environments</strong>.</p>
|
||||
</section>
|
||||
|
||||
<h3>For high-performance power networks with enhanced protection requirements</h3>
|
||||
<p>The <strong>NA2XS(F)2Y</strong> complies with standards <strong>DIN VDE 0276-620</strong>, <strong>HD 620 S2</strong> and <strong>IEC 60502</strong>. It is suitable for <strong>installation indoors, in cable ducts, underground, in water, outdoors, or on cable trays</strong>. Its main applications are in <strong>utility grids, industrial facilities, and substations</strong>, where additional safety reserves against moisture ingress and mechanical stress are required.</p>
|
||||
<h3>Construction and material characteristics</h3>
|
||||
<p>The conductor consists of <strong>multi-stranded aluminium</strong> (Class 2), surrounded by an <strong>inner conductive layer</strong> and <strong>XLPE insulation</strong> with a tightly bonded outer conductive layer – extruded in a single process for maximum operational safety. The shielding is provided by a <strong>copper wire braid with counter helix</strong>, complemented by a <strong>longitudinally watertight tape</strong>. The outer sheath is made of <strong>black PE (Type DMP2)</strong> and reliably protects against mechanical stress and moisture.</p>
|
||||
<h3>Properties and fields of application</h3>
|
||||
<p>The NA2XS(F)2Y is <strong>suitable for underground installation</strong>, <strong>free from silicone and cadmium</strong>, and <strong>resistant to paint-wetting impairment substances</strong>. It withstands <strong>continuous temperatures up to +90 °C</strong> and tolerates <strong>short-circuit loads up to +250 °C</strong>. Thanks to its well-designed, partial discharge-free structure, it is particularly well suited for <strong>safe power distribution in moist and complex installation environments</strong>.</p>
|
||||
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -1118,13 +1118,13 @@ locale: en
|
||||
]
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h3 data-start="481" data-end="540">Designed for use in power supply networks</h3>
|
||||
<p data-start="542" data-end="974">The <strong data-start="546" data-end="561">NA2XS(FL)2Y</strong> complies with standards <strong data-start="581" data-end="601">DIN VDE 0276-620</strong>, <strong data-start="603" data-end="616">HD 620 S2</strong> and <strong data-start="621" data-end="634">IEC 60502</strong>. It is ideal for installation in <strong data-start="670" data-end="765">power supply networks (utilities), indoors, in cable ducts, outdoors, in soil, and in water</strong>. Thanks to its longitudinally watertight design and Al/PE sheath construction, it remains operational even when damaged – water ingress is effectively limited to the affected area.</p>
|
||||
<h3 data-start="976" data-end="999">Technical construction</h3>
|
||||
<p data-start="1001" data-end="1556">The cable features a <strong data-start="1025" data-end="1058">multi-stranded aluminium conductor</strong> (Class 2 according to VDE 0295 / IEC 60228), surrounded by <strong data-start="1112" data-end="1130">XLPE insulation</strong> with a <strong data-start="1135" data-end="1172">tightly bonded outer conductive layer</strong>. A <strong data-start="1179" data-end="1223">conductive, longitudinally watertight tape</strong> and a <strong data-start="1235" data-end="1281">copper wire screen with counter helix</strong> ensure reliable field control. The cable is also equipped with a <strong data-start="1356" data-end="1398">longitudinally watertight aluminum tape</strong> that is <strong data-start="1417" data-end="1453">laminated to the black PE sheath</strong>. The result: high protection against mechanical stress and moisture ingress.</p>
|
||||
<h3 data-start="1558" data-end="1590">Properties and applications</h3>
|
||||
<p data-start="1592" data-end="1977">The NA2XS(FL)2Y cable is <strong data-start="1618" data-end="1634">suitable for underground installation</strong>, <strong data-start="1636" data-end="1664">free from silicone and cadmium</strong>, and suited for environments with high mechanical stress. It withstands <strong data-start="1742" data-end="1780">temperatures up to +90 °C in operation</strong> and <strong data-start="1785" data-end="1819">up to +250 °C under short-circuit conditions</strong>. Thanks to its partial discharge-free design and water barrier, it is particularly well suited for <strong data-start="1906" data-end="1939">critical supply areas</strong> in power infrastructure.</p>
|
||||
</section>
|
||||
|
||||
<h3>Designed for use in power supply networks</h3>
|
||||
<p>The <strong>NA2XS(FL)2Y</strong> complies with standards <strong>DIN VDE 0276-620</strong>, <strong>HD 620 S2</strong> and <strong>IEC 60502</strong>. It is ideal for installation in <strong>power supply networks (utilities), indoors, in cable ducts, outdoors, in soil, and in water</strong>. Thanks to its longitudinally watertight design and Al/PE sheath construction, it remains operational even when damaged – water ingress is effectively limited to the affected area.</p>
|
||||
<h3>Technical construction</h3>
|
||||
<p>The cable features a <strong>multi-stranded aluminium conductor</strong> (Class 2 according to VDE 0295 / IEC 60228), surrounded by <strong>XLPE insulation</strong> with a <strong>tightly bonded outer conductive layer</strong>. A <strong>conductive, longitudinally watertight tape</strong> and a <strong>copper wire screen with counter helix</strong> ensure reliable field control. The cable is also equipped with a <strong>longitudinally watertight aluminum tape</strong> that is <strong>laminated to the black PE sheath</strong>. The result: high protection against mechanical stress and moisture ingress.</p>
|
||||
<h3>Properties and applications</h3>
|
||||
<p>The NA2XS(FL)2Y cable is <strong>suitable for underground installation</strong>, <strong>free from silicone and cadmium</strong>, and suited for environments with high mechanical stress. It withstands <strong>temperatures up to +90 °C in operation</strong> and <strong>up to +250 °C under short-circuit conditions</strong>. Thanks to its partial discharge-free design and water barrier, it is particularly well suited for <strong>critical supply areas</strong> in power infrastructure.</p>
|
||||
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -1132,13 +1132,13 @@ locale: en
|
||||
]
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h3 data-start="501" data-end="546">For high-performance medium-voltage networks</h3>
|
||||
<p data-start="548" data-end="961">The <strong data-start="552" data-end="562">NA2XSY</strong> meets the requirements of <strong data-start="600" data-end="620">DIN VDE 0276-620</strong>, <strong data-start="622" data-end="635">HD 620 S2</strong>, and <strong data-start="640" data-end="653">IEC 60502</strong>. It is suitable for <strong data-start="678" data-end="759">installation indoors, in cable ducts, underground, in water, or outdoors</strong> – but only when installed with protection. Typical areas of application include <strong data-start="830" data-end="880">industrial plants, power stations, and switching stations</strong> where medium voltage must be transported with high operational safety.</p>
|
||||
<h3 data-start="963" data-end="986">Technical construction</h3>
|
||||
<p data-start="988" data-end="1476">The conductor consists of <strong data-start="1011" data-end="1038">multi-stranded aluminium</strong> (Class 2 according to VDE 0295 / IEC 60228). The <strong data-start="1078" data-end="1096">XLPE insulation</strong> is permanently bonded to the <strong data-start="1119" data-end="1142">outer conductive layer</strong> to ensure a <strong data-start="1162" data-end="1194">partial discharge-free structure</strong>. The structure also includes an <strong data-start="1246" data-end="1268">inner conductive layer</strong>, <strong data-start="1270" data-end="1295">conductive tape</strong>, a <strong data-start="1302" data-end="1340">copper wire screen with counter helix</strong>, additional tape, and a <strong data-start="1377" data-end="1397">red PVC sheath</strong>. The cable is flame-retardant and <strong data-start="1433" data-end="1461">approved for underground installation</strong> (depending on the type).</p>
|
||||
<h3 data-start="1478" data-end="1510">Application and properties</h3>
|
||||
<p data-start="1512" data-end="1981">Thanks to its precise construction, the NA2XSY can also be easily installed in complex routing scenarios. It is <strong data-start="1618" data-end="1646">free from silicone and cadmium</strong>, contains no paint-wetting impairment substances, and withstands <strong data-start="1702" data-end="1741">short-circuit temperatures up to +250 °C</strong>. The concentric structure and tightly bonded conductive layers make this cable a <strong data-start="1834" data-end="1906">reliable solution for medium-voltage power distribution</strong> where operational safety and ease of installation are essential.</p>
|
||||
</section>
|
||||
|
||||
<h3>For high-performance medium-voltage networks</h3>
|
||||
<p>The <strong>NA2XSY</strong> meets the requirements of <strong>DIN VDE 0276-620</strong>, <strong>HD 620 S2</strong>, and <strong>IEC 60502</strong>. It is suitable for <strong>installation indoors, in cable ducts, underground, in water, or outdoors</strong> – but only when installed with protection. Typical areas of application include <strong>industrial plants, power stations, and switching stations</strong> where medium voltage must be transported with high operational safety.</p>
|
||||
<h3>Technical construction</h3>
|
||||
<p>The conductor consists of <strong>multi-stranded aluminium</strong> (Class 2 according to VDE 0295 / IEC 60228). The <strong>XLPE insulation</strong> is permanently bonded to the <strong>outer conductive layer</strong> to ensure a <strong>partial discharge-free structure</strong>. The structure also includes an <strong>inner conductive layer</strong>, <strong>conductive tape</strong>, a <strong>copper wire screen with counter helix</strong>, additional tape, and a <strong>red PVC sheath</strong>. The cable is flame-retardant and <strong>approved for underground installation</strong> (depending on the type).</p>
|
||||
<h3>Application and properties</h3>
|
||||
<p>Thanks to its precise construction, the NA2XSY can also be easily installed in complex routing scenarios. It is <strong>free from silicone and cadmium</strong>, contains no paint-wetting impairment substances, and withstands <strong>short-circuit temperatures up to +250 °C</strong>. The concentric structure and tightly bonded conductive layers make this cable a <strong>reliable solution for medium-voltage power distribution</strong> where operational safety and ease of installation are essential.</p>
|
||||
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
@@ -220,29 +220,29 @@ locale: en
|
||||
]
|
||||
}} />}>
|
||||
|
||||
<section>
|
||||
<h3 data-start="460" data-end="518">For long-term use in demanding environments</h3>
|
||||
<p data-start="520" data-end="953">The <strong data-start="524" data-end="536">H1Z2Z2-K</strong> complies with <strong data-start="552" data-end="588">DIN EN 50618 (VDE 0283-618)</strong> and is specifically designed for the <strong data-start="614" data-end="654">cabling of photovoltaic systems</strong>. It can be <strong data-start="675" data-end="713">installed permanently or used flexibly</strong> – indoors, outdoors, in industrial facilities, agricultural operations, or even in <strong data-start="812" data-end="847">hazardous (explosive) areas</strong>. The cable is <strong data-start="865" data-end="905">UV-, ozone- and water-resistant (AD7)</strong> and can be <strong data-start="915" data-end="945">laid directly in the ground</strong>.</p>
|
||||
<h3 data-start="955" data-end="990">Construction and technical features</h3>
|
||||
<p data-start="992" data-end="1516">The finely stranded <strong data-start="1009" data-end="1045">tinned copper conductor (class 5)</strong> is double protected by <strong data-start="1079" data-end="1160">cross-linked insulation and a cross-linked outer sheath made of polyolefin copolymer</strong> – halogen-free, flame-retardant, and highly abrasion-resistant. The cable is designed for a maximum conductor temperature of <strong data-start="1273" data-end="1283">120 °C</strong> and remains reliably flexible even at <strong data-start="1314" data-end="1339">-40 °C (fixed installation)</strong>. Its <strong data-start="1366" data-end="1394">low smoke emission</strong> and high resistance to mechanical and thermal stress ensure safe, long-term operation.</p>
|
||||
<h3 data-start="1518" data-end="1549">Key features at a glance</h3>
|
||||
<ul data-start="1551" data-end="1815">
|
||||
<li data-start="1551" data-end="1604">
|
||||
<p data-start="1553" data-end="1604"><strong data-start="1553" data-end="1604">Halogen-free, flame-retardant, UV- and ozone-resistant</strong></p>
|
||||
|
||||
<h3>For long-term use in demanding environments</h3>
|
||||
<p>The <strong>H1Z2Z2-K</strong> complies with <strong>DIN EN 50618 (VDE 0283-618)</strong> and is specifically designed for the <strong>cabling of photovoltaic systems</strong>. It can be <strong>installed permanently or used flexibly</strong> – indoors, outdoors, in industrial facilities, agricultural operations, or even in <strong>hazardous (explosive) areas</strong>. The cable is <strong>UV-, ozone- and water-resistant (AD7)</strong> and can be <strong>laid directly in the ground</strong>.</p>
|
||||
<h3>Construction and technical features</h3>
|
||||
<p>The finely stranded <strong>tinned copper conductor (class 5)</strong> is double protected by <strong>cross-linked insulation and a cross-linked outer sheath made of polyolefin copolymer</strong> – halogen-free, flame-retardant, and highly abrasion-resistant. The cable is designed for a maximum conductor temperature of <strong>120 °C</strong> and remains reliably flexible even at <strong>-40 °C (fixed installation)</strong>. Its <strong>low smoke emission</strong> and high resistance to mechanical and thermal stress ensure safe, long-term operation.</p>
|
||||
<h3>Key features at a glance</h3>
|
||||
<ul>
|
||||
<li>
|
||||
<p><strong>Halogen-free, flame-retardant, UV- and ozone-resistant</strong></p>
|
||||
</li>
|
||||
<li data-start="1605" data-end="1666">
|
||||
<p data-start="1607" data-end="1666"><strong data-start="1607" data-end="1666">Short-circuit and earth fault proof according to VDE-AR-E 2283-4</strong></p>
|
||||
<li>
|
||||
<p><strong>Short-circuit and earth fault proof according to VDE-AR-E 2283-4</strong></p>
|
||||
</li>
|
||||
<li data-start="1667" data-end="1744">
|
||||
<p data-start="1669" data-end="1744"><strong data-start="1669" data-end="1744">Approved for indoor, outdoor and hazardous (explosive) areas</strong></p>
|
||||
<li>
|
||||
<p><strong>Approved for indoor, outdoor and hazardous (explosive) areas</strong></p>
|
||||
</li>
|
||||
<li data-start="1745" data-end="1784">
|
||||
<p data-start="1747" data-end="1784"><strong data-start="1747" data-end="1784">Suitable for direct burial</strong></p>
|
||||
<li>
|
||||
<p><strong>Suitable for direct burial</strong></p>
|
||||
</li>
|
||||
<li data-start="1785" data-end="1815">
|
||||
<p data-start="1787" data-end="1815"><strong data-start="1787" data-end="1815">CPR performance class: Eca</strong></p>
|
||||
<li>
|
||||
<p><strong>CPR performance class: Eca</strong></p>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
</ProductTabs>
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user