ultisuite-client/app/demo/agenda/layout.tsx
R3D347HR4Y 2a0958b70d
Some checks are pending
E2E / Playwright e2e (push) Waiting to run
feat: update agenda references to use ULTICAL_APP_NAME and enhance AI usage sections
- 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.
2026-06-16 10:46:31 +02:00

23 lines
627 B
TypeScript

import { DemoAgendaShell } from "@/components/demo/demo-agenda-shell"
import type { Metadata } from "next"
import { ULTICAL_APP_NAME, suitePageMetadata } from "@/lib/suite/page-metadata"
export const metadata: Metadata = {
...suitePageMetadata({
app: "agenda",
title: `Démo ${ULTICAL_APP_NAME}`,
absoluteTitle: true,
description:
`Essayez ${ULTICAL_APP_NAME} sans compte — démo interactive, zéro rétention.`,
}),
robots: { index: false },
}
export default function DemoAgendaLayout({
children,
}: {
children: React.ReactNode
}) {
return <DemoAgendaShell>{children}</DemoAgendaShell>
}