This commit is contained in:
2026-01-14 12:00:13 +03:30
parent 4ab9de447a
commit 081f2cf4a7
26 changed files with 75 additions and 34927 deletions
+18
View File
@@ -0,0 +1,18 @@
export interface productData {
title: string;
isActive: boolean;
categoryTitle: string,
images: string[];
desc: string[];
}
export const productsData: productData[] = [
{
title: 'قهوه ترک.. Turkish coffee',
desc: [''],
categoryTitle: 'قهوه ',
isActive: true,
images: ["https://dmenu.danakcorp.com/uploads/images/product/product_1715711043900.png"],
}
]