mirror of
https://github.com/crocofied/CoreControl.git
synced 2025-12-29 16:14:43 +00:00
Monitoring Settings Preperation
This commit is contained in:
@@ -7,6 +7,7 @@ import { ProfileSettings } from '@/components/cards/settings/ProfileSettings';
|
||||
import { PasswordSettings } from '@/components/cards/settings/PasswordSettings';
|
||||
import { NotificationProviderSettings } from '@/components/cards/settings/NotificationProviderSettings';
|
||||
import { NotificationSettings } from '@/components/cards/settings/NotificationSettings';
|
||||
import { MonitoringSettings } from '@/components/cards/settings/MonitoringSettings';
|
||||
import { useState } from 'react';
|
||||
|
||||
interface SettingsPageProps {
|
||||
@@ -64,6 +65,19 @@ export default function SettingsPage({ username, name, email }: SettingsPageProp
|
||||
<NotificationSettings onError={setError} onSuccess={setSuccess} />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<input
|
||||
type="radio"
|
||||
name="settings"
|
||||
className="tab text-primary z-10"
|
||||
aria-label="Monitoring Settings"
|
||||
/>
|
||||
<div className="tab-content relative bg-base-100 pl-4 pt-4">
|
||||
<div className="absolute -top-[3px] left-6 right-0 h-[2px] bg-stone-800"></div>
|
||||
<div className="flex flex-col gap-4">
|
||||
<MonitoringSettings onError={setError} onSuccess={setSuccess} />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
</Sidebar>
|
||||
|
||||
Reference in New Issue
Block a user