anodyne / nova3

Next generation online RPG management software
Other
25 stars 4 forks source link

Page builder updates #397

Open agentphoenix opened 2 months ago

agentphoenix commented 2 months ago

Ideas

Image

Image

Image

Notes

Tabs::make()->schema([
    Tab::make('Container')->schema([
        Select::make('container-width')->options([
            'full' => 'Full width',
            'max-w-7xl' => '7xl',
            'max-w-6xl' => '6xl',
            'max-w-5xl' => '5xl',
            'max-w-4xl' => '4xl',
            'max-w-3xl' => '3xl',
            'max-w-2xl' => '2xl',
            'max-w-xl' => 'xl',
            'max-w-lg' => 'lg',
        ]),
        ...FormSchema::spacing(),
        ...FormSchema::backgroundSection(),
    ])->icon('tabler-container'),
    Tab::make('Content')->schema([
        // Width (full, constrained)
        // Background
        // Spacing
        // Heading (content, color)
        // Message (content, color)
        // Callout (content, color, style)
    ])->icon('tabler-box-padding'),
    Tab::make('Block settings')->schema([])->icon('tabler-settings'),
]),