Some checks are pending
E2E / Playwright e2e (push) Waiting to run
- Replaced hardcoded "Agenda" labels with dynamic ULTICAL_APP_NAME in various components for consistency. - Introduced new AiUsageSection and CompteAiUsageSection components to track AI usage and costs. - Updated settings and metadata to reflect changes in AI cost policies and usage limits. - Enhanced user interface elements for better accessibility and user experience across admin settings.
17 lines
516 B
TypeScript
17 lines
516 B
TypeScript
"use client"
|
|
|
|
import { AgendaSettingsFields } from "@/components/agenda/agenda-settings-fields"
|
|
import { ULTICAL_APP_NAME } from "@/lib/suite/page-metadata"
|
|
|
|
export function AgendaSettingsSection() {
|
|
return (
|
|
<>
|
|
<SettingsSectionHeader
|
|
title={`Réglages ${ULTICAL_APP_NAME}`}
|
|
description="Affichage, visioconférence, invitations, agendas par compte, calendriers iCal et vues. Le thème suit les réglages d'affichage."
|
|
/>
|
|
<AgendaSettingsFields variant="page" />
|
|
</>
|
|
)
|
|
}
|