/** * Notifications Page * Full-page notification management */ import React, { useState } from 'react'; import Head from 'next/head'; import { NotificationList } from '../components/notifications/NotificationList'; import { PreferencesForm } from '../components/notifications/PreferencesForm'; export default function NotificationsPage() { const [activeTab, setActiveTab] = useState<'notifications' | 'preferences'>('notifications'); const userId = 'demo-user'; // In production, get from auth return ( <> Notifications - LocalGreenChain
{/* Header */}

Notifications

Manage your notifications and preferences

{/* Tabs */}
{/* Content */}
{activeTab === 'notifications' ? (
) : ( )}
); }