This commit is contained in:
Iliyan Angelov
2025-10-13 01:49:06 +03:00
parent 76c857b4f5
commit 5ad9cbe3a6
97 changed files with 5752 additions and 2376 deletions

View File

@@ -131,7 +131,6 @@ class AboutServiceAPI {
const data = await response.json();
return data;
} catch (error) {
console.error('Error fetching about page data:', error);
throw error;
}
}
@@ -155,7 +154,6 @@ class AboutServiceAPI {
const data = await response.json();
return data.results || data;
} catch (error) {
console.error('Error fetching about banners:', error);
throw error;
}
}
@@ -179,7 +177,6 @@ class AboutServiceAPI {
const data = await response.json();
return data;
} catch (error) {
console.error(`Error fetching about banner ${id}:`, error);
throw error;
}
}
@@ -203,7 +200,6 @@ class AboutServiceAPI {
const data = await response.json();
return data.results || data;
} catch (error) {
console.error('Error fetching about services:', error);
throw error;
}
}
@@ -227,7 +223,6 @@ class AboutServiceAPI {
const data = await response.json();
return data;
} catch (error) {
console.error(`Error fetching about service ${id}:`, error);
throw error;
}
}
@@ -251,7 +246,6 @@ class AboutServiceAPI {
const data = await response.json();
return data.results || data;
} catch (error) {
console.error('Error fetching about processes:', error);
throw error;
}
}
@@ -275,7 +269,6 @@ class AboutServiceAPI {
const data = await response.json();
return data;
} catch (error) {
console.error(`Error fetching about process ${id}:`, error);
throw error;
}
}
@@ -299,7 +292,6 @@ class AboutServiceAPI {
const data = await response.json();
return data.results || data;
} catch (error) {
console.error('Error fetching about journeys:', error);
throw error;
}
}
@@ -323,7 +315,6 @@ class AboutServiceAPI {
const data = await response.json();
return data;
} catch (error) {
console.error(`Error fetching about journey ${id}:`, error);
throw error;
}
}