This commit is contained in:
2026-01-17 01:50:54 +01:00
parent c12b32ed5e
commit c8f61257c9
62 changed files with 1297 additions and 1028 deletions

View File

@@ -3,7 +3,13 @@ import Image from 'next/image';
import { useTranslations } from 'next-intl';
import { Section, Container } from '@/components/ui';
export default function ProductsPage() {
interface ProductsPageProps {
params: {
locale: string;
};
}
export default function ProductsPage({ params }: ProductsPageProps) {
const t = useTranslations('Navigation');
const categories = [
@@ -12,28 +18,28 @@ export default function ProductsPage() {
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'
href: `/${params.locale}/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'
href: `/${params.locale}/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'
href: `/${params.locale}/products/high-voltage-cables`
},
{
title: 'Solar Cables',
desc: 'Connecting the suns energy to your sustainable future.',
img: '/uploads/2025/04/3.webp',
icon: '/uploads/2024/11/Solar.svg',
href: '/products/solar-cables'
href: `/${params.locale}/products/solar-cables`
}
];