diff options
Diffstat (limited to 'resources/views/components/discord-status.blade.php')
-rw-r--r-- | resources/views/components/discord-status.blade.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/resources/views/components/discord-status.blade.php b/resources/views/components/discord-status.blade.php new file mode 100644 index 0000000..868fc03 --- /dev/null +++ b/resources/views/components/discord-status.blade.php @@ -0,0 +1,7 @@ +@if($status == null) + <p>Status Unavailable</p> +@else + <span>I'm</span> + <h2 class="online-status" style="color: {{ $status["color"] }};text-shadow: var(--firefox-shadow) {{ $status["color"] }}4f !important">{{ $status["text"] }}!</h2> +@endif +<p><strong>Time in Britain:</strong> <span id="clock"></span></p> |