import Link from 'next/link'; import Image from 'next/image'; import { useTranslations } from 'next-intl'; import { Section, Container } from '@/components/ui'; export default function ProductsPage() { const t = useTranslations('Navigation'); const categories = [ { title: 'Low Voltage Cables', desc: 'Powering everyday essentials with reliability and safety.', img: '/uploads/2024/12/low-voltage-scaled.webp', icon: '/uploads/2024/11/Low-Voltage.svg', href: '/products/low-voltage-cables' }, { title: 'Medium Voltage Cables', desc: 'The perfect balance between power and performance for industrial and urban grids.', img: '/uploads/2024/12/medium-voltage-scaled.webp', icon: '/uploads/2024/11/Medium-Voltage.svg', href: '/products/medium-voltage-cables' }, { title: 'High Voltage Cables', desc: 'Delivering maximum power over long distances—without compromise.', img: '/uploads/2025/06/na2xsfl2y-rendered.webp', icon: '/uploads/2024/11/High-Voltage.svg', href: '/products/high-voltage-cables' }, { title: 'Solar Cables', desc: 'Connecting the sun’s energy to your sustainable future.', img: '/uploads/2025/04/3.webp', icon: '/uploads/2024/11/Solar.svg', href: '/products/solar-cables' } ]; return (

Our Products

Explore our comprehensive range of high-quality cables designed for every application.

{categories.map((category, idx) => (
{category.title}

{category.title}

{category.desc}

View Products →
))}
); }