diff --git a/index.html b/index.html
index 7fb58a2..34c12ae 100644
--- a/index.html
+++ b/index.html
@@ -2,7 +2,7 @@
-
+
Fascano | Restaurant
diff --git a/src/assets/locals/ar.json b/src/assets/locals/ar.json
index 3b0ad26..f64b36b 100644
--- a/src/assets/locals/ar.json
+++ b/src/assets/locals/ar.json
@@ -459,5 +459,21 @@
"balance": "هدية الرصيد",
"itemsAndBalance": "العناصر والرصيد",
"selectGiftType": "اختر نوع الهدية"
+ },
+ "eGiftCards": {
+ "title": "بطاقات الهدية",
+ "pickCardForYourGift": "اختر بطاقة لهديتك",
+ "chooseDesignToMatchTheOccasion": "اختر تصميم ليتناسب مع المناسبة. يمكنك إضافة ملاحظة لاحقاً."
+ },
+ "cardDetails": {
+ "title": "تفاصيل البطاقة",
+ "addGiftDetails": "أضف تفاصيل الهدية",
+ "description": "اضف تفاصيل الهدية بالرسالة، ووقت التوصيل، وتفاصيل المستلم.",
+ "checkout": "الدفع",
+ "yourName": "اسمك",
+ "yourPhone": "رقم هاتفك",
+ "keepMyNameSecret": "الاحتفاظ باسمي مخفياً",
+ "receiverInformation": "تفاصيل المستلم",
+ "costumeAmount": "مبلغ البطاقة"
}
}
diff --git a/src/assets/locals/en.json b/src/assets/locals/en.json
index 9f56a00..625a074 100644
--- a/src/assets/locals/en.json
+++ b/src/assets/locals/en.json
@@ -471,5 +471,21 @@
"balance": "Gift Balance",
"itemsAndBalance": "Items and Balance",
"selectGiftType": "Select Gift Type"
+ },
+ "eGiftCards": {
+ "title": "Gift Cards",
+ "pickCardForYourGift": "Pick a card for your gift",
+ "chooseDesignToMatchTheOccasion": "Choose a design to match the occasion. You can add a message next."
+ },
+ "cardDetails": {
+ "title": "Card Details",
+ "addGiftDetails": "Add Gift Details",
+ "description": "Personalize your gift with a message, delivery timing, and recipient details.",
+ "checkout": "Checkout",
+ "yourName": "Your Name",
+ "yourPhone": "Your Phone",
+ "keepMyNameSecret": "Keep my name secret",
+ "receiverInformation": "Receiver Information",
+ "costumeAmount": "Costume amount"
}
}
diff --git a/src/components/Icons/EditIcon.tsx b/src/components/Icons/EditIcon.tsx
index 6bd9304..17b8270 100644
--- a/src/components/Icons/EditIcon.tsx
+++ b/src/components/Icons/EditIcon.tsx
@@ -1,9 +1,10 @@
interface EditIconType {
className?: string;
onClick?: () => void;
+ color?: string;
}
-const EditIcon = ({ className, onClick }: EditIconType) => {
+const EditIcon = ({ className, onClick, color }: EditIconType) => {
return (