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.
18 lines
617 B
TypeScript
18 lines
617 B
TypeScript
import type { Metadata } from "next"
|
|
import { ProductPageShell } from "@/components/landing/product/product-page-shell"
|
|
import { ULTIAI_PRODUCT } from "@/components/landing/product/product-data"
|
|
|
|
export const metadata: Metadata = {
|
|
title: { absolute: "UltiAI — Assistant IA souverain" },
|
|
description: ULTIAI_PRODUCT.description,
|
|
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 UltiaiProductPage() {
|
|
return <ProductPageShell data={ULTIAI_PRODUCT} />
|
|
}
|