mirror of
https://github.com/usetrmnl/byos_laravel.git
synced 2026-01-13 15:07:49 +00:00
22 lines
832 B
PHP
22 lines
832 B
PHP
@props([
|
|
'noBleed' => false,
|
|
'darkMode' => false,
|
|
'deviceVariant' => 'og',
|
|
'deviceOrientation' => null,
|
|
'colorDepth' => '1bit',
|
|
'scaleLevel' => null,
|
|
])
|
|
|
|
<x-trmnl::screen colorDepth="{{$colorDepth}}" no-bleed="{{$noBleed}}" dark-mode="{{$darkMode}}"
|
|
device-variant="{{$deviceVariant}}" device-orientation="{{$deviceOrientation}}"
|
|
scale-level="{{$scaleLevel}}">
|
|
<x-trmnl::view>
|
|
<x-trmnl::layout>
|
|
<x-trmnl::richtext gapSize="large" align="center">
|
|
<x-trmnl::title>Welcome to BYOS Laravel!</x-trmnl::title>
|
|
<x-trmnl::content>Your device is connected.</x-trmnl::content>
|
|
</x-trmnl::richtext>
|
|
</x-trmnl::layout>
|
|
<x-trmnl::title-bar title="byos_laravel"/>
|
|
</x-trmnl::view>
|
|
</x-trmnl::screen>
|