diff --git a/src/app/catering-services-ontario/CateringPackages.tsx b/src/app/catering-services-ontario/CateringPackages.tsx
index ad7478f..bdbdcb3 100644
--- a/src/app/catering-services-ontario/CateringPackages.tsx
+++ b/src/app/catering-services-ontario/CateringPackages.tsx
@@ -7,9 +7,9 @@ const packages = [
{
id: 'silver',
name: 'SILVER PACKAGE',
- price: '$19',
- perPerson: 'PER PERSON',
- minPeople: '(MIN 20PPL)',
+ // price: '$19',
+ // perPerson: 'PER PERSON',
+ minPeople: 'MIN 20PPL',
image: '/images/catering/packages/silver.webp', // Placeholder
items: [
'Choice of two kebabs (Adana, Kofta, Chicken Shish, Meat Doner, Chicken Doner)',
@@ -23,9 +23,9 @@ const packages = [
{
id: 'gold',
name: 'GOLD PACKAGE',
- price: '$23',
- perPerson: 'PER PERSON',
- minPeople: '(MIN 25PPL)',
+ // price: '$23',
+ // perPerson: 'PER PERSON',
+ minPeople: 'MIN 25PPL',
image: '/images/catering/packages/gold.webp', // Placeholder
items: [
'Choice of two kebabs (Adana, Kofta, Chicken Shish, Meat Doner, Chicken Doner)',
@@ -41,9 +41,9 @@ const packages = [
{
id: 'platinum',
name: 'PLATINUM PACKAGE',
- price: '$25',
- perPerson: 'PER PERSON',
- minPeople: '(MIN 30PPL)',
+ // price: '$25',
+ // perPerson: 'PER PERSON',
+ minPeople: 'MIN 30PPL',
image: '/images/catering/packages/platinum.webp', // Placeholder
items: [
'Choice of 2 kebabs (Adana, Kofta, Chicken Shish, Meat Doner, Chicken Doner)',
@@ -87,8 +87,8 @@ const CateringPackages = () => {
- {pkg.price}
- {pkg.perPerson} {pkg.minPeople}
+ {/* {pkg?.price ? pkg.price : ''} */}
+ {pkg.minPeople}
diff --git a/src/app/catering-services-ontario/catering.module.css b/src/app/catering-services-ontario/catering.module.css
index 511534a..eb694ec 100644
--- a/src/app/catering-services-ontario/catering.module.css
+++ b/src/app/catering-services-ontario/catering.module.css
@@ -115,7 +115,7 @@
.description1 {
font-size: var(--body-size);
- color: var(--color-alterparagraph) !important;
+ color: #441109 !important;
line-height: 1.8;
font-family: var(--font-lato);
/* max-width: 800px; */
@@ -684,7 +684,7 @@
.servingDescription {
font-size: var(--body-size);
- color: var(--color-alterparagraph) !important;
+ color: #441109 !important;
line-height: 1.8;
font-family: var(--font-lato);
/* max-width: 800px; */
diff --git a/src/components/Blogs/Blogs.module.css b/src/components/Blogs/Blogs.module.css
index 3226dc2..690d49d 100644
--- a/src/components/Blogs/Blogs.module.css
+++ b/src/components/Blogs/Blogs.module.css
@@ -79,7 +79,7 @@
.excerpt {
font-family: var(--font-playfair);
font-size: 0.95rem;
- color: var(--color-alterparagraph) !important;
+ color: #441109 !important;
margin-bottom: 25px;
line-height: 1.6;
max-width: 90%;
diff --git a/src/components/Footer/Footer.tsx b/src/components/Footer/Footer.tsx
index 9c61b18..ab01bbf 100644
--- a/src/components/Footer/Footer.tsx
+++ b/src/components/Footer/Footer.tsx
@@ -104,18 +104,18 @@ export default function Footer() {
{/* Kitchener Location */}
-
+ {/*
Kitchener
1187 Fischer-Hallman Rd #435, Kitchener, ON N2E 4H9
- {/*
Call us
*/}
+
Call us
-
+
*/}
Email us
diff --git a/src/components/Menu/Menu.module.css b/src/components/Menu/Menu.module.css
index 7cd9ed9..a2a4961 100644
--- a/src/components/Menu/Menu.module.css
+++ b/src/components/Menu/Menu.module.css
@@ -206,8 +206,8 @@
}
.description {
- font-size: var(--body-size);
- color: var(--color-paragraph);
+ font-size: 16px;
+ color: #430f0c;
line-height: 1.5;
font-family: var(--font-lato);
margin: 0;
diff --git a/src/components/PopularDishes/PopularDishes.module.css b/src/components/PopularDishes/PopularDishes.module.css
index ddd981a..ae46799 100644
--- a/src/components/PopularDishes/PopularDishes.module.css
+++ b/src/components/PopularDishes/PopularDishes.module.css
@@ -64,7 +64,7 @@
.dishName {
font-family: var(--font-playfair);
font-size: 1.8rem;
- color: var(--color-paragraph);
+ color: #410d0a;
/* Dark brown text */
margin-bottom: 15px;
font-weight: 600;
@@ -74,7 +74,7 @@
font-family: var(--font-cinzel), serif;
/* Using serif as per image look */
font-size: 1rem;
- color: var(--color-alterparagraph) !important;
+ color: #410d0a !important;
margin-bottom: 30px;
line-height: 1.6;
max-width: 90%;
@@ -84,8 +84,8 @@
.button {
display: inline-block;
padding: 12px 30px;
- border: 2px solid #b07c4b;
- color: var(--color-paragraph);
+ border: 2px solid #410d0a;
+ color: #410d0a;
font-family: var(--font-inter), sans-serif;
text-transform: uppercase;
font-size: 0.9rem;
@@ -96,7 +96,7 @@
}
.button:hover {
- background-color: #c49c5c;
+ background-color: #410d0a;
color: #fff;
}