From f80c738d1f159d72360d20a697b486fd044573e1 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 9 Apr 2026 09:06:42 +0000 Subject: [PATCH] Add src/app/price-alerts/page.tsx --- src/app/price-alerts/page.tsx | 39 +++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 src/app/price-alerts/page.tsx diff --git a/src/app/price-alerts/page.tsx b/src/app/price-alerts/page.tsx new file mode 100644 index 0000000..301322f --- /dev/null +++ b/src/app/price-alerts/page.tsx @@ -0,0 +1,39 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; +import ContactCenter from '@/components/sections/contact/ContactCenter'; +import { Bell } from "lucide-react"; + +export default function PriceAlertsPage() { + return ( + + + +
+

Price Drop Alerts

+

+ Stay ahead of market trends. Configure your alert preferences to get notified instantly when supplier prices drop below your target threshold. +

+
+ +

Alert system configuration interface coming soon.

+
+
+ + +
+
+ ); +} \ No newline at end of file