diff --git a/src/pages/NotFound.jsx b/src/pages/NotFound.jsx
new file mode 100644
index 0000000..d29505a
--- /dev/null
+++ b/src/pages/NotFound.jsx
@@ -0,0 +1,27 @@
+import React from 'react'
+import { useLanguage } from '../contexts/LanguageContext.jsx'
+
+export default function NotFound() {
+ const { lang } = useLanguage()
+ return (
+
+
+
404
+
+ {lang === 'ru' ? 'Страница не найдена' : 'Page not found'}
+
+
+ {lang === 'ru'
+ ? 'Такой страницы не существует или она была удалена'
+ : 'This page does not exist or has been removed'}
+
+
+ {lang === 'ru' ? 'На главную' : 'Back to home'}
+
+
+
+ )
+}
diff --git a/src/translations/en.js b/src/translations/en.js
index 2a25c12..46a5e1e 100644
--- a/src/translations/en.js
+++ b/src/translations/en.js
@@ -42,6 +42,7 @@ export const en = {
contact: {
title: 'Contact Us',
subtitle: 'Tell us about your challenge — we will propose a solution',
+ phones: ['+7 495 363-74-76', '+7 495 363-73-35', '+7 495 945-44-56'],
phone: 'Phone',
email: 'Email',
address: 'Address',
diff --git a/src/translations/ru.js b/src/translations/ru.js
index d449a2b..22900ba 100644
--- a/src/translations/ru.js
+++ b/src/translations/ru.js
@@ -42,6 +42,7 @@ export const ru = {
contact: {
title: 'Свяжитесь с нами',
subtitle: 'Расскажите о задаче — предложим решение',
+ phones: ['+7 495 363-74-76', '+7 495 363-73-35', '+7 495 945-44-56'],
phone: 'Телефон',
email: 'Email',
address: 'Адрес',