Files
revenue-fe/src/layouts/demo2/Demo2LayoutConfig.ts
2025-02-01 16:44:51 +07:00

14 lines
402 B
TypeScript

import { type ILayoutConfig } from '@/providers';
// Defining the layout configuration specific to Demo2 layout
const Demo2LayoutConfig: ILayoutConfig = {
name: 'demo2-layout', // Unique name identifier for this layout
options: {
header: {
stickyOffset: 200 // Offset value (in pixels) that determines when the header becomes sticky on scroll
}
}
};
export { Demo2LayoutConfig };