13 lines
346 B
TypeScript
13 lines
346 B
TypeScript
|
|
import { appTabs } from '../../router/tabs';
|
||
|
|
|
||
|
|
export const shellFrameClassName = 'mx-auto w-full max-w-[1680px] px-8';
|
||
|
|
|
||
|
|
export const shellMeta = {
|
||
|
|
productLabel: 'T-Systems Regulation',
|
||
|
|
version: 'v1.0.0',
|
||
|
|
status: 'ONLINE',
|
||
|
|
surface: 'Desktop Web',
|
||
|
|
} as const;
|
||
|
|
|
||
|
|
export const shellModuleSummary = appTabs.map((tab) => tab.label).join(' / ');
|