2026-08-12 10:55:50 +00:00
|
|
|
<script setup lang="ts">
|
|
|
|
|
import InterfaceModeSection from '@/views/settings/InterfaceModeSection.vue'
|
|
|
|
|
import KioskDisplaySection from '@/views/settings/KioskDisplaySection.vue'
|
|
|
|
|
import ClaudeAuthSection from '@/views/settings/ClaudeAuthSection.vue'
|
|
|
|
|
import AIDataAccessSection from '@/views/settings/AIDataAccessSection.vue'
|
2026-08-14 08:57:53 -04:00
|
|
|
import RoutstrBudgetSection from '@/views/settings/RoutstrBudgetSection.vue'
|
2026-08-12 10:55:50 +00:00
|
|
|
import WebhookSection from '@/views/settings/WebhookSection.vue'
|
|
|
|
|
import TelemetrySection from '@/views/settings/TelemetrySection.vue'
|
|
|
|
|
import NodeCertificateSection from '@/views/settings/NodeCertificateSection.vue'
|
|
|
|
|
import LightningCredentialsSection from '@/views/settings/LightningCredentialsSection.vue'
|
|
|
|
|
import BackupSection from '@/views/settings/BackupSection.vue'
|
|
|
|
|
import SystemDangerZone from '@/views/settings/SystemDangerZone.vue'
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<template>
|
|
|
|
|
<InterfaceModeSection />
|
|
|
|
|
<KioskDisplaySection />
|
|
|
|
|
<ClaudeAuthSection />
|
2026-08-14 08:57:53 -04:00
|
|
|
<RoutstrBudgetSection />
|
2026-08-14 09:19:05 -04:00
|
|
|
<AIDataAccessSection />
|
2026-08-12 10:55:50 +00:00
|
|
|
<WebhookSection />
|
|
|
|
|
<TelemetrySection />
|
|
|
|
|
<NodeCertificateSection />
|
|
|
|
|
<LightningCredentialsSection />
|
|
|
|
|
<BackupSection />
|
|
|
|
|
<SystemDangerZone />
|
|
|
|
|
</template>
|