mirror of
https://github.com/usetrmnl/byos_laravel.git
synced 2026-03-14 12:23:33 +00:00
24 lines
902 B
PHP
24 lines
902 B
PHP
@props([
|
|
'noBleed' => false,
|
|
'darkMode' => false,
|
|
'deviceVariant' => 'og',
|
|
'deviceOrientation' => null,
|
|
'colorDepth' => '1bit',
|
|
'scaleLevel' => null,
|
|
'cssVariables' => null,
|
|
])
|
|
|
|
<x-trmnl::screen colorDepth="{{$colorDepth}}" no-bleed="{{$noBleed}}" dark-mode="{{$darkMode}}"
|
|
device-variant="{{$deviceVariant}}" device-orientation="{{$deviceOrientation}}"
|
|
scale-level="{{$scaleLevel}}"
|
|
:css-variables="$cssVariables">
|
|
<x-trmnl::view>
|
|
<x-trmnl::layout>
|
|
<x-trmnl::richtext gapSize="large" align="center">
|
|
<x-trmnl::title>Welcome to LaraPaper!</x-trmnl::title>
|
|
<x-trmnl::content>Your device is connected.</x-trmnl::content>
|
|
</x-trmnl::richtext>
|
|
</x-trmnl::layout>
|
|
<x-trmnl::title-bar title="LaraPaper"/>
|
|
</x-trmnl::view>
|
|
</x-trmnl::screen>
|