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.
23 lines
627 B
TypeScript
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>
|
|
}
|