"use client"; import React, { useState } from "react"; export default function SettingsPortal() { // App Settings State const [appSettings, setAppSettings] = useState({ defaultTenant: "Apple One", timeZone: "Asia/Kolkata (IST)", dateFormat: "dd-mm-yyyy", currency: "₹ INR", language: "English", appearance: "Light", }); // Notifications State const [notifications, setNotifications] = useState({ emailAlerts: true, pushNotifications: true, slaBreachAlerts: true, workPermitAlerts: true, dailyDigest: false, }); return (
{/* Top Header & Breadcrumb */}
APPLE ONE — HQ TOWER {" "} • CONFIGURE{" "} • SETTINGS

Settings

Personal and notification preferences for this tenant workspace.

{/* Save Changes Button */}
{/* Main Grid Layout */}
{/* Left Column: App Settings */}

App settings

Apple One
{/* Default Tenant */}

Default tenant

Workspace loaded on sign-in

{/* Time Zone */}

Time zone

Used for timestamps & SLA clocks

{/* Date Format */}

Date format

Display format across the app

{/* Currency */}

Currency

Inventory, AMC & cost figures

{/* Language */}

Language

Interface language

{/* Appearance */}

Appearance

Your personal light / dark preference

{/* Brand Accent */}

Brand accent

Set per tenant in Administration → Preferences

#2DD4BF • inherited
{/* Right Column: Notifications & Personal Settings */}
{/* Notifications Card */}

Notifications

{/* Email Alerts */}

Email alerts

Request, approval & escalation emails

{/* Push Notifications */}

Push notifications

Mobile app push for assignments

{/* SLA Breach Alerts */}

SLA breach alerts

Notify when a request goes overdue

{/* Work-permit Alerts */}

Work-permit alerts

Notify on permit raise & approval

{/* Daily Digest */}

Daily digest

Morning summary of open items

{/* Personal Settings Card */}

Personal settings

NAME Dhananjay T.
ROLE
Admin COMPLETED
EMAIL dhananjay@kafm.io
MOBILE 98•••••012
{/* Action Buttons */}
); }