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
931 B
TypeScript
23 lines
931 B
TypeScript
"use client"
|
|
|
|
import type { ReactNode } from "react"
|
|
import { DriveAppShell } from "@/components/drive/drive-app-shell"
|
|
import { DemoChrome } from "@/components/demo/demo-chrome"
|
|
import { DemoDriveProvider } from "@/lib/demo/demo-drive-context"
|
|
import { DemoDriveBootstrap } from "@/lib/demo/demo-drive-bootstrap"
|
|
import { DemoDriveLayoutPreviewBootstrap } from "@/lib/demo/demo-drive-layout-preview-bootstrap"
|
|
import { DEMO_DRIVE_ROUTE_ROOT } from "@/lib/demo/demo-drive-context"
|
|
import { useDemoDriveStore } from "@/lib/demo/demo-drive-store"
|
|
|
|
export function DemoDriveShell({ children }: { children: ReactNode }) {
|
|
return (
|
|
<DemoDriveProvider onReset={() => useDemoDriveStore.getState().reset()}>
|
|
<DemoDriveBootstrap />
|
|
<DemoDriveLayoutPreviewBootstrap />
|
|
<DemoChrome>
|
|
<DriveAppShell routeRoot={DEMO_DRIVE_ROUTE_ROOT}>{children}</DriveAppShell>
|
|
</DemoChrome>
|
|
</DemoDriveProvider>
|
|
)
|
|
}
|