Some checks are pending
E2E / Playwright e2e (push) Waiting to run
- Refactored metadata for contacts, administration, and Ulticards pages to utilize dynamic app names and descriptions. - Introduced new product pages for Ultiai, Ultical, Ulticards, Ultidrive, Ultimail, and Ultimeet with appropriate metadata. - Enhanced layout components to ensure consistent styling and functionality across new product sections. - Updated various components to replace hardcoded labels with dynamic references to improve maintainability and consistency.
23 lines
645 B
TypeScript
23 lines
645 B
TypeScript
import { DemoContactsShell } from "@/components/demo/demo-contacts-shell"
|
|
import type { Metadata } from "next"
|
|
import { ULTICARDS_APP_NAME, suitePageMetadata } from "@/lib/suite/page-metadata"
|
|
|
|
export const metadata: Metadata = {
|
|
...suitePageMetadata({
|
|
app: "contacts",
|
|
title: `Démo ${ULTICARDS_APP_NAME}`,
|
|
absoluteTitle: true,
|
|
description:
|
|
`Essayez ${ULTICARDS_APP_NAME} sans compte — démo interactive, zéro rétention.`,
|
|
}),
|
|
robots: { index: false },
|
|
}
|
|
|
|
export default function DemoContactsLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode
|
|
}) {
|
|
return <DemoContactsShell>{children}</DemoContactsShell>
|
|
}
|