170 lines
3.6 KiB
TypeScript
170 lines
3.6 KiB
TypeScript
export interface productData {
|
|
title: string;
|
|
isActive: boolean;
|
|
categoryTitle: string;
|
|
images: string[];
|
|
desc: string;
|
|
order?: number;
|
|
}
|
|
|
|
const PLACEHOLDER_IMAGE =
|
|
'https://dmenu.danakcorp.com/uploads/images/product/product_1715711043900.png';
|
|
|
|
export const productsData: productData[] = [
|
|
// کارت ویزیت
|
|
{
|
|
title: 'لمینت',
|
|
desc: 'کارت ویزیت با روکش لمینت',
|
|
categoryTitle: 'کارت ویزیت',
|
|
isActive: true,
|
|
order: 1,
|
|
images: [PLACEHOLDER_IMAGE],
|
|
},
|
|
{
|
|
title: 'مخملی',
|
|
desc: 'کارت ویزیت با روکش مخملی',
|
|
categoryTitle: 'کارت ویزیت',
|
|
isActive: true,
|
|
order: 2,
|
|
images: [PLACEHOLDER_IMAGE],
|
|
},
|
|
{
|
|
title: 'سلفون مات',
|
|
desc: 'کارت ویزیت با روکش سلفون مات',
|
|
categoryTitle: 'کارت ویزیت',
|
|
isActive: true,
|
|
order: 3,
|
|
images: [PLACEHOLDER_IMAGE],
|
|
},
|
|
{
|
|
title: 'سلفون براق',
|
|
desc: 'کارت ویزیت با روکش سلفون براق',
|
|
categoryTitle: 'کارت ویزیت',
|
|
isActive: true,
|
|
order: 4,
|
|
images: [PLACEHOLDER_IMAGE],
|
|
},
|
|
|
|
// بروشور
|
|
{
|
|
title: 'دو لت',
|
|
desc: 'بروشور دو لت',
|
|
categoryTitle: 'بروشور',
|
|
isActive: true,
|
|
order: 1,
|
|
images: [PLACEHOLDER_IMAGE],
|
|
},
|
|
{
|
|
title: 'سه لت',
|
|
desc: 'بروشور سه لت',
|
|
categoryTitle: 'بروشور',
|
|
isActive: true,
|
|
order: 2,
|
|
images: [PLACEHOLDER_IMAGE],
|
|
},
|
|
{
|
|
title: 'چهار لت',
|
|
desc: 'بروشور چهار لت',
|
|
categoryTitle: 'بروشور',
|
|
isActive: true,
|
|
order: 3,
|
|
images: [PLACEHOLDER_IMAGE],
|
|
},
|
|
|
|
// کاتالوگ
|
|
{
|
|
title: 'جلد نرم',
|
|
desc: 'کاتالوگ با جلد نرم',
|
|
categoryTitle: 'کاتالوگ',
|
|
isActive: true,
|
|
order: 1,
|
|
images: [PLACEHOLDER_IMAGE],
|
|
},
|
|
{
|
|
title: 'جلد سخت',
|
|
desc: 'کاتالوگ با جلد سخت',
|
|
categoryTitle: 'کاتالوگ',
|
|
isActive: true,
|
|
order: 2,
|
|
images: [PLACEHOLDER_IMAGE],
|
|
},
|
|
{
|
|
title: 'سیمی',
|
|
desc: 'کاتالوگ با صحافی سیمی',
|
|
categoryTitle: 'کاتالوگ',
|
|
isActive: true,
|
|
order: 3,
|
|
images: [PLACEHOLDER_IMAGE],
|
|
},
|
|
|
|
// پوستر
|
|
{
|
|
title: 'گلاسه',
|
|
desc: 'پوستر گلاسه',
|
|
categoryTitle: 'پوستر',
|
|
isActive: true,
|
|
order: 1,
|
|
images: [PLACEHOLDER_IMAGE],
|
|
},
|
|
{
|
|
title: 'کتان',
|
|
desc: 'پوستر کتان',
|
|
categoryTitle: 'پوستر',
|
|
isActive: true,
|
|
order: 2,
|
|
images: [PLACEHOLDER_IMAGE],
|
|
},
|
|
{
|
|
title: 'فوم برد',
|
|
desc: 'پوستر فوم برد',
|
|
categoryTitle: 'پوستر',
|
|
isActive: true,
|
|
order: 3,
|
|
images: [PLACEHOLDER_IMAGE],
|
|
},
|
|
|
|
// تراکت
|
|
{
|
|
title: 'یک رو',
|
|
desc: 'تراکت چاپ یک رو',
|
|
categoryTitle: 'تراکت',
|
|
isActive: true,
|
|
order: 1,
|
|
images: [PLACEHOLDER_IMAGE],
|
|
},
|
|
{
|
|
title: 'دو رو',
|
|
desc: 'تراکت چاپ دو رو',
|
|
categoryTitle: 'تراکت',
|
|
isActive: true,
|
|
order: 2,
|
|
images: [PLACEHOLDER_IMAGE],
|
|
},
|
|
|
|
// بنر
|
|
{
|
|
title: 'فلکس',
|
|
desc: 'بنر فلکس',
|
|
categoryTitle: 'بنر',
|
|
isActive: true,
|
|
order: 1,
|
|
images: [PLACEHOLDER_IMAGE],
|
|
},
|
|
{
|
|
title: 'مش',
|
|
desc: 'بنر مش',
|
|
categoryTitle: 'بنر',
|
|
isActive: true,
|
|
order: 2,
|
|
images: [PLACEHOLDER_IMAGE],
|
|
},
|
|
{
|
|
title: 'استیکر',
|
|
desc: 'بنر استیکر',
|
|
categoryTitle: 'بنر',
|
|
isActive: true,
|
|
order: 3,
|
|
images: [PLACEHOLDER_IMAGE],
|
|
},
|
|
];
|