Some checks are pending
E2E / Playwright e2e (push) Waiting to run
- Introduced new components for managing admin settings, including AdminListControls, AdminSettingsCard, and TechBrandSelectLabel. - Implemented dynamic loading for admin settings sections to optimize performance. - Enhanced the layout of various admin settings sections for better user experience. - Updated the AiAssistantSection to include LLM provider management and improved model selection. - Refactored authentication settings to streamline configuration and improve accessibility.
17 lines
486 B
TypeScript
17 lines
486 B
TypeScript
import type { Metadata } from "next"
|
|
import type { ReactNode } from "react"
|
|
|
|
export const metadata: Metadata = {
|
|
title: { absolute: "UltiAI" },
|
|
description: "Assistant IA intégré à la suite Ultimail",
|
|
icons: {
|
|
icon: [{ url: "/ultiai-mark.svg", type: "image/svg+xml" }],
|
|
apple: [{ url: "/ultiai-mark.svg", type: "image/svg+xml" }],
|
|
shortcut: "/ultiai-mark.svg",
|
|
},
|
|
}
|
|
|
|
export default function ChatLayout({ children }: { children: ReactNode }) {
|
|
return children
|
|
}
|