aboutsummaryrefslogtreecommitdiff
path: root/src/frontend/app/components/ServiceAlerts.tsx
diff options
context:
space:
mode:
authorcopilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>2025-11-06 22:49:47 +0000
committerAriel Costas Guerrero <ariel@costas.dev>2025-11-07 10:46:51 +0100
commite51cdd89afc08274ca622e18b8127feca29e90a3 (patch)
tree1e016c9bb977f8db4e7c61ad5fe1b3be311b6fef /src/frontend/app/components/ServiceAlerts.tsx
parent43ea6cc94b6c1f2bfaf3f8787991d3283765da0b (diff)
Add gallery components and improve search functionality
Co-authored-by: arielcostas <94913521+arielcostas@users.noreply.github.com>
Diffstat (limited to 'src/frontend/app/components/ServiceAlerts.tsx')
-rw-r--r--src/frontend/app/components/ServiceAlerts.tsx22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/frontend/app/components/ServiceAlerts.tsx b/src/frontend/app/components/ServiceAlerts.tsx
new file mode 100644
index 0000000..7966f2a
--- /dev/null
+++ b/src/frontend/app/components/ServiceAlerts.tsx
@@ -0,0 +1,22 @@
+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">
+ <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;