blob: a6a1ee8720e11f8d14b731f934b9fe34adf1f7a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
import React from "react";
import { useTranslation } from "react-i18next";
import "./ServiceAlerts.css";
const ServiceAlerts: React.FC = () => {
const { t } = useTranslation();
return (
<div className="service-alerts-container stoplist-section">
<h2 className="page-subtitle">{t("stoplist.service_alerts")}</h2>
<div className="service-alert info">
<div className="alert-icon">ℹ️</div>
<div className="alert-content">
<div className="alert-title">{t("stoplist.alerts_coming_soon")}</div>
<div className="alert-message">
{t("stoplist.alerts_description")}
</div>
</div>
</div>
</div>
);
};
export default ServiceAlerts;
|