import type { Metadata } from "next";

import { NotificationSettingScreen } from "@/features/notification-setting/components/notification-setting-screen";

export const metadata: Metadata = {
    title: "Notification Settings | GPSF MIS",
    description: "Manage system and Gmail notification settings.",
};

export default function NotificationSettingPage() {
    return <NotificationSettingScreen />;
}