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.
22 lines
782 B
TypeScript
22 lines
782 B
TypeScript
"use client"
|
|
|
|
import type { ReactNode } from "react"
|
|
import { MailAppShell } from "@/app/mail/mail-app-shell"
|
|
import { DemoChrome } from "@/components/demo/demo-chrome"
|
|
import { DemoMailProvider } from "@/lib/demo/demo-mail-context"
|
|
import { DemoMailBootstrap } from "@/lib/demo/demo-mail-bootstrap"
|
|
import { DemoMailPreviewBootstrap } from "@/lib/demo/demo-mail-preview-bootstrap"
|
|
import { useDemoMailStore } from "@/lib/demo/demo-mail-store"
|
|
|
|
export function DemoMailShell({ children }: { children: ReactNode }) {
|
|
return (
|
|
<DemoMailProvider onReset={() => useDemoMailStore.getState().reset()}>
|
|
<DemoMailBootstrap />
|
|
<DemoMailPreviewBootstrap />
|
|
<DemoChrome>
|
|
<MailAppShell>{children}</MailAppShell>
|
|
</DemoChrome>
|
|
</DemoMailProvider>
|
|
)
|
|
}
|