<?php namespace App\Filament\Guest\Pages; use Filament\Forms\Components\Placeholder; use Filament\Forms\Components\Section; use Filament\Pages\Page; use Illuminate\Support\HtmlString; class Embroidery extends Page { protected static ?string $navigationIcon = 'heroicon-o-document-text'; protected static ?int $navigationSort = 0; protected static string $view = 'filament.guest.pages.embroidery'; protected function getFormSchema(): array { return [ Section::make() ->schema([ Placeholder::make('embContent') ->hiddenLabel() ->content(new HtmlString('<p class="w-3/4"> <b>Overview</b> <br> <ul class="list-disc list-inside"> <li>We can do regular embroidery, appliqué, patches, puff (3D). They can apply on apparels, hats, bags, towels, blankets, etc. </li> <br> <li> Comparing with screen printing, embroidery means high end. To make sure it is really high end, we strictly apply 3 steps: </li> </ul> <br> <ul class="list-inside list-decimal"> <li>1. Good digitizing</li> <li>2. Best quality materials (such as threads and backings)</li> <li>3. Detailed QC (Quality Control) procedures</li> </ul> <br> <ul class="list-disc list-inside"> <li>As for the material, there are every kind of threads, backings, and other materials that embroidery needs to use. We always use the best quality.</li> <br> <li>QC is the last step before our embroidery products leave the shop. We consider QC as important as digitizing and embroidery. The time we spent on QC is twice as others.</li> </ul> </p>')), ]) ->columns(2) ->columnSpan(1), ]; } }