2025-06-10 17:30:21 +03:30
|
|
|
import images from '@/assets/images/images';
|
|
|
|
|
|
|
|
|
|
export interface IProjectCardProps {
|
|
|
|
|
id:string;
|
|
|
|
|
title: string;
|
|
|
|
|
fa_title?: string;
|
|
|
|
|
imageSrc: string;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export const projects = [
|
|
|
|
|
{
|
|
|
|
|
id:'1',
|
|
|
|
|
title: 'Sustainable Practices Reducing Waste in Industrial Production',
|
|
|
|
|
fa_title: 'روشهای پایدار برای کاهش ضایعات در تولید صنعتی',
|
2025-06-11 17:13:51 +03:30
|
|
|
imageSrc: `/images/project1.jpeg`,
|
2025-06-10 17:30:21 +03:30
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id:'2',
|
|
|
|
|
title: 'Advanced Robotics Revolutionizing Industrial Workflows',
|
|
|
|
|
fa_title: 'رباتیک پیشرفته و تحول فرآیندهای صنعتی',
|
2025-06-11 17:13:51 +03:30
|
|
|
imageSrc: `/images/project2.jpeg`,
|
2025-06-10 17:30:21 +03:30
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id:'3',
|
|
|
|
|
title: 'Top Benefits of the Robotics in Manufacturing',
|
|
|
|
|
fa_title: 'مزایای اصلی استفاده از رباتیک در تولید',
|
2025-06-11 17:13:51 +03:30
|
|
|
imageSrc: `/images/project3.jpeg`,
|
2025-06-10 17:30:21 +03:30
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id:'4',
|
|
|
|
|
title: 'Leveraging Data Analytics for Smarter Production',
|
|
|
|
|
fa_title: 'استفاده از تحلیل داده برای تولید هوشمندتر',
|
2025-06-11 17:13:51 +03:30
|
|
|
imageSrc: `/images/project4.jpeg`,
|
|
|
|
|
|
2025-06-10 17:30:21 +03:30
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id:'5',
|
|
|
|
|
title: 'Reducing Operational Costs Through Automation',
|
|
|
|
|
fa_title: 'کاهش هزینهها با اتوماسیون',
|
2025-06-11 17:13:51 +03:30
|
|
|
imageSrc: `/images/project1.jpeg`,
|
2025-06-10 17:30:21 +03:30
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id:'6',
|
|
|
|
|
title: 'The Advantages of Customized Manufacturing Solutions',
|
|
|
|
|
fa_title: 'مزایای راهحلهای سفارشیسازی در تولید',
|
2025-06-11 17:13:51 +03:30
|
|
|
imageSrc: `/images/project1.jpeg`,
|
2025-06-10 17:30:21 +03:30
|
|
|
},
|
|
|
|
|
] as IProjectCardProps[]
|
2025-06-11 17:13:51 +03:30
|
|
|
|
|
|
|
|
export function generateProjects(
|
|
|
|
|
): IProjectCardProps[] {
|
|
|
|
|
return [...projects, ...projects, ...projects].map((e, i)=>({...e, id:String(i+1)}))
|
|
|
|
|
|
|
|
|
|
}
|