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.
19 lines
610 B
TypeScript
19 lines
610 B
TypeScript
"use client"
|
|
|
|
import { ProductDemoFrame } from "@/components/landing/product/product-demo-frame"
|
|
import { WorkflowFlowPreview } from "@/components/landing/product/product-demos/workflow-flow-preview"
|
|
|
|
export function UltimailAutomationDemo() {
|
|
return (
|
|
<ProductDemoFrame
|
|
fakeUrl="suite.votre-domaine.fr/mail/settings/automation"
|
|
hint="Flux no-code réel — déclencheurs, conditions et actions."
|
|
heightClass="h-[15rem] sm:h-[17rem]"
|
|
>
|
|
<div className="absolute inset-0 overflow-hidden bg-background">
|
|
<WorkflowFlowPreview />
|
|
</div>
|
|
</ProductDemoFrame>
|
|
)
|
|
}
|