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