/**
* 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 */}
{/* Tabs */}
{/* Content */}
{activeTab === 'notifications' ? (
) : (
)}
>
);
}