This commit is contained in:
Iliyan Angelov
2025-11-20 21:06:30 +02:00
parent 44e11520c5
commit a38ab4fa82
77 changed files with 7169 additions and 360 deletions

View File

@@ -99,7 +99,7 @@ const ContactPage: React.FC = () => {
useEffect(() => {
const fetchPageContent = async () => {
try {
const response = await pageContentService.getPageContent('contact');
const response = await pageContentService.getContactContent();
if (response.status === 'success' && response.data?.page_content) {
setPageContent(response.data.page_content);