This commit is contained in:
2026-05-30 14:16:02 +03:30
parent aae6a4b49b
commit 3cab7e3ee5
4 changed files with 55 additions and 53 deletions
Binary file not shown.

Before

Width:  |  Height:  |  Size: 360 KiB

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 360 KiB

@@ -566,7 +566,7 @@ export const meshkiCategoryProducts = [
size: '',
categoryId: '51',
},
]
];
export const rusticiCategoryProducts = [
{
@@ -672,8 +672,7 @@ export const rusticiCategoryProducts = [
size: '7 * 25 * 2.5',
categoryId: '52',
},
]
];
export const ghazaghiCategoryProducts = [
{
@@ -684,7 +683,6 @@ export const ghazaghiCategoryProducts = [
},
];
export const ghazaghizardCategoryProducts = [
{
model: 'پلاک قزاقی کامل',
@@ -798,7 +796,7 @@ export const ghazaghipiyaziCategoryProducts = [
size: '5.5 * 20 * 5.5',
categoryId: '54',
},
]
];
export const ghazaghighermezCategoryProducts = [
{
@@ -837,4 +835,4 @@ export const ghazaghighermezCategoryProducts = [
size: '10 * 20 * 2.5',
categoryId: '55',
},
]
];
+10 -6
View File
@@ -1,4 +1,3 @@
import images from '@/assets/images/images';
import { tempContent } from '@/assets/temp/tempContent';
import { IDynamicContent } from '@/models/dynamicContent';
@@ -38,7 +37,7 @@ export const projects = [
{
id: '3',
title: 'Top Benefits of the Robotics in Manufacturing',
fa_title: 'مزایای اصلی استفاده از رباتیک در تولید',
fa_title: 'مزایای اصلی استفاده از در تولید',
imageSrc: `/images/project3.jpeg`,
...tempContent,
},
@@ -63,13 +62,18 @@ export const projects = [
imageSrc: `/images/project1.jpeg`,
...tempContent,
},
{
id: '7',
title: 'The Advantages of Customized Manufacturing Solutions',
fa_title: 'پروژه‌ی تست',
imageSrc: `/images/project1.jpeg`,
...tempContent,
},
] as IProjectData[];
export function generateProjects(): IProjectData[] {
return [...projects, ...projects, ...projects, ...projects, ...projects].map(
(e, i) => ({
return [...projects].map((e, i) => ({
...e,
id: String(i + 1),
}),
);
}));
}