We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d210c12 commit 5133533Copy full SHA for 5133533
packages/view/src/Components/x-base.view.php
@@ -0,0 +1,22 @@
1
+<?php
2
+/**
3
+ * @var string|null $title The webpage's title
4
+ */
5
+?>
6
+
7
+<html lang="en" class="h-dvh flex flex-col scroll-smooth">
8
+<head>
9
+ <title>{{ $title ?? 'Tempest' }}</title>
10
11
+ <meta charset="UTF-8"/>
12
+ <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
13
14
+ <x-slot name="head"/>
15
16
+ <script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4"></script>
17
+</head>
18
+<body class="relative antialiased flex flex-col grow font-sans text-(--ui-text) bg-(--ui-bg) !overflow-visible !pr-0">
19
+<x-slot/>
20
+<x-slot name="scripts"/>
21
+</body>
22
+</html>
0 commit comments