@adonisjs/inertia 1.1.0 → 1.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -2
- package/build/app.css.stub +1 -27
- package/build/{chunk-QKSM72AR.js → chunk-TSAZ2E7H.js} +3 -6
- package/build/index.js +3 -5
- package/build/providers/inertia_provider.js +2 -3
- package/build/react/home.tsx.stub +335 -7
- package/build/react/root.edge.stub +54 -1
- package/build/solid/home.tsx.stub +347 -7
- package/build/solid/root.edge.stub +53 -2
- package/build/src/inertia_middleware.js +1 -1
- package/build/src/plugins/edge/plugin.js +1 -2
- package/build/src/plugins/vite.js +1 -2
- package/build/svelte/home.svelte.stub +330 -10
- package/build/svelte/root.edge.stub +54 -1
- package/build/vue/home.vue.stub +331 -9
- package/build/vue/root.edge.stub +54 -1
- package/package.json +1 -1
|
@@ -1,17 +1,357 @@
|
|
|
1
1
|
{{{
|
|
2
2
|
exports({ to: app.makePath('inertia/pages/home.tsx') })
|
|
3
3
|
}}}
|
|
4
|
+
import { MetaProvider, Title } from '@solidjs/meta'
|
|
5
|
+
import type { JSXElement } from 'solid-js'
|
|
4
6
|
|
|
5
|
-
|
|
7
|
+
// You can extract the Meta component to a separate file
|
|
8
|
+
export function Meta(props: { title?: string; children?: JSXElement }) {
|
|
9
|
+
const title = props.title ? props.title + ' - AdonisJS' : 'AdonisJS'
|
|
10
|
+
|
|
11
|
+
return (
|
|
12
|
+
<MetaProvider>
|
|
13
|
+
<Title>{title}</Title>
|
|
14
|
+
{props.children}
|
|
15
|
+
</MetaProvider>
|
|
16
|
+
)
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
export default function Home() {
|
|
6
20
|
return (
|
|
7
21
|
<>
|
|
8
|
-
<
|
|
9
|
-
|
|
22
|
+
<Meta title="Homepage" />
|
|
23
|
+
|
|
24
|
+
<div class="fixed xl:absolute left-8 right-8 top-0 bottom-0 xl:inset-0 max-w-screen-xl mx-auto before:content-[''] before:[background:repeating-linear-gradient(0deg,var(--sand-5)_0_4px,transparent_0_8px)] before:absolute before:top-0 before:left-0 before:h-full before:w-px after:content-[''] after:[background:repeating-linear-gradient(0deg,var(--sand-5)_0_4px,transparent_0_8px)] after:absolute after:top-0 after:right-0 after:h-full after:w-px"></div>
|
|
25
|
+
|
|
26
|
+
<div class="pt-4 h-full flex flex-col">
|
|
27
|
+
{/* Header */}
|
|
28
|
+
<div class="grow pb-4 bg-gradient-to-b from-sand-1 to-sand-2 flex justify-center items-center">
|
|
29
|
+
<a href="https://adonisjs.com" target="_blank" class="isolate">
|
|
30
|
+
<svg class="w-16 h-16 fill-primary" viewBox="0 0 33 33">
|
|
31
|
+
<path
|
|
32
|
+
fill-rule="evenodd"
|
|
33
|
+
d="M0 16.333c0 13.173 3.16 16.333 16.333 16.333 13.173 0 16.333-3.16 16.333-16.333C32.666 3.16 29.506 0 16.333 0 3.16 0 0 3.16 0 16.333Zm6.586 3.393L11.71 8.083c.865-1.962 2.528-3.027 4.624-3.027 2.096 0 3.759 1.065 4.624 3.027l5.123 11.643c.233.566.432 1.297.432 1.93 0 2.893-2.029 4.923-4.923 4.923-.986 0-1.769-.252-2.561-.506-.812-.261-1.634-.526-2.695-.526-1.048 0-1.89.267-2.718.529-.801.253-1.59.503-2.538.503-2.894 0-4.923-2.03-4.923-4.924 0-.632.2-1.363.432-1.929Zm9.747-9.613-5.056 11.443c1.497-.699 3.227-1.032 5.056-1.032 1.763 0 3.56.333 4.99 1.032l-4.99-11.444Z"
|
|
34
|
+
clip-rule="evenodd"
|
|
35
|
+
/>
|
|
36
|
+
</svg>
|
|
37
|
+
</a>
|
|
38
|
+
</div>
|
|
39
|
+
|
|
40
|
+
{/* Bento with documentation, Adocasts, packages and Discord */}
|
|
41
|
+
<div class="isolate mt-10 max-w-screen-xl mx-auto px-16 xl:px-8 grid grid-cols-1 xl:grid-cols-2 xl:grid-rows-3 gap-8">
|
|
42
|
+
<article class="row-span-3 relative p-6 shadow-sm hover:shadow border border-sand-7 hover:border-sand-8 rounded-2xl transition ease-in-out duration-700 group flex flex-col gap-8">
|
|
43
|
+
<div class="relative opacity-80">
|
|
44
|
+
<svg fill="none" viewBox="0 0 240 105">
|
|
45
|
+
<path fill="#F9F9F8" d="M0 4a4 4 0 0 1 4-4h232a4 4 0 0 1 4 4v101H0V4Z" />
|
|
46
|
+
<g fill="#000" fill-rule="evenodd" clip-path="url(#a)" clip-rule="evenodd">
|
|
47
|
+
<path d="M24 11.444c0 4.391 1.053 5.445 5.444 5.445s5.445-1.054 5.445-5.445c0-4.39-1.054-5.444-5.445-5.444C25.054 6 24 7.053 24 11.444Zm2.195 1.131 1.708-3.88c.288-.655.843-1.01 1.541-1.01.699 0 1.253.355 1.542 1.01l1.707 3.88c.078.189.144.433.144.644 0 .964-.676 1.64-1.64 1.64-.33 0-.59-.083-.854-.168-.271-.087-.545-.175-.899-.175-.35 0-.63.089-.906.176-.267.085-.53.168-.846.168-.964 0-1.64-.677-1.64-1.641 0-.211.066-.455.143-.644Zm3.25-3.204-1.686 3.814c.499-.233 1.075-.344 1.685-.344.588 0 1.187.111 1.664.344l-1.664-3.814Zm26.473-.678c-.378 0-.65.268-.65.64 0 .374.272.641.65.641s.651-.267.651-.64-.273-.64-.65-.64Zm-11.907 5.502c-1.009 0-1.738-.745-1.738-1.91 0-1.187.73-1.933 1.737-1.933.468 0 .814.158 1.019.468V8.86h1.05v5.25h-1.05v-.372c-.2.304-.546.456-1.019.456Zm-.667-1.91c0-.652.352-1.077.887-1.077.54 0 .887.42.887 1.071 0 .64-.346 1.056-.887 1.056-.535 0-.887-.415-.887-1.05Zm4.384-.011c0-.646.351-1.06.877-1.06.53 0 .882.414.882 1.06 0 .646-.352 1.06-.883 1.06-.525 0-.876-.414-.876-1.06Zm11.571.835c0 .194-.147.31-.52.31-.42 0-.682-.221-.682-.489h-1.05c.026.725.714 1.265 1.711 1.265.946 0 1.55-.42 1.55-1.165 0-.557-.358-.945-1.066-1.087l-.762-.152c-.23-.047-.367-.163-.367-.315 0-.226.23-.347.525-.347.42 0 .583.195.583.426h.997c-.026-.683-.562-1.203-1.56-1.203-.929 0-1.559.468-1.559 1.176 0 .64.415.93 1.035 1.06l.756.164c.247.052.41.157.41.357Zm-2.85 1.002h-1.05v-3.675h1.05v3.675Zm-4.264-3.675v.384c.268-.31.625-.468 1.066-.468.824 0 1.36.536 1.36 1.365v2.394h-1.05v-2.173c0-.446-.252-.714-.688-.714-.436 0-.688.268-.688.714v2.173h-1.05v-3.675h1.05Zm-3.58-.084c-1.119 0-1.948.809-1.948 1.922s.83 1.921 1.948 1.921c1.123 0 1.953-.808 1.953-1.921s-.83-1.922-1.953-1.922Zm-8.758.856c-.535 0-.887.425-.887 1.076 0 .636.352 1.05.887 1.05.54 0 .887-.414.887-1.055 0-.65-.346-1.07-.887-1.07Zm-1.958 1.076c0 1.166.73 1.911 1.732 1.911.478 0 .82-.152 1.024-.456v.372h1.05v-3.675h-1.05v.384c-.21-.31-.556-.468-1.024-.468-1.003 0-1.732.746-1.732 1.932Z" />
|
|
48
|
+
</g>
|
|
49
|
+
<rect width="8" height="3" x="162" y="9.944" fill="#DAD9D6" rx="1" />
|
|
50
|
+
<rect width="14" height="3" x="174" y="9.944" fill="#DAD9D6" rx="1" />
|
|
51
|
+
<rect width="10" height="3" x="192" y="9.944" fill="#DAD9D6" rx="1" />
|
|
52
|
+
<rect width="10" height="3" x="206" y="9.944" fill="#DAD9D6" rx="1" />
|
|
53
|
+
<rect width="81" height="6" x="24" y="32" fill="#DAD9D6" rx="2" />
|
|
54
|
+
<rect width="95" height="6" x="24" y="44" fill="#DAD9D6" rx="2" />
|
|
55
|
+
<rect width="16" height="5" x="24" y="60" fill="#21201C" rx="1" />
|
|
56
|
+
<path fill="#DAD9D6" d="M24 85a4 4 0 0 1 4-4h184a4 4 0 0 1 4 4v20H24V85Z" />
|
|
57
|
+
<path
|
|
58
|
+
fill="url(#b)"
|
|
59
|
+
fill-opacity=".2"
|
|
60
|
+
d="M24 85a4 4 0 0 1 4-4h184a4 4 0 0 1 4 4v20H24V85Z"
|
|
61
|
+
/>
|
|
62
|
+
<defs>
|
|
63
|
+
<linearGradient
|
|
64
|
+
id="b"
|
|
65
|
+
x1="120"
|
|
66
|
+
x2="120"
|
|
67
|
+
y1="81"
|
|
68
|
+
y2="105"
|
|
69
|
+
gradientUnits="userSpaceOnUse"
|
|
70
|
+
>
|
|
71
|
+
<stop stop-opacity="0" />
|
|
72
|
+
<stop offset="1" stop-color="#82827C" />
|
|
73
|
+
</linearGradient>
|
|
74
|
+
<clipPath id="a">
|
|
75
|
+
<path fill="#fff" d="M24 6h36.307v10.889H24z" />
|
|
76
|
+
</clipPath>
|
|
77
|
+
</defs>
|
|
78
|
+
</svg>
|
|
79
|
+
|
|
80
|
+
<div class="absolute left-0 right-0 bottom-0 h-16 bg-gradient-to-b from-white/0 to-white"></div>
|
|
81
|
+
</div>
|
|
82
|
+
|
|
83
|
+
<div class="flex flex-row gap-4">
|
|
84
|
+
<div class="shrink-0 w-10 h-10 bg-primary/20 rounded-md flex justify-center items-center">
|
|
85
|
+
<svg class="h-6 w-6 fill-primary" viewBox="0 0 256 256">
|
|
86
|
+
<path
|
|
87
|
+
fill="currentColor"
|
|
88
|
+
d="M208 24H72a32 32 0 0 0-32 32v168a8 8 0 0 0 8 8h144a8 8 0 0 0 0-16H56a16 16 0 0 1 16-16h136a8 8 0 0 0 8-8V32a8 8 0 0 0-8-8m-88 16h48v72l-19.21-14.4a8 8 0 0 0-9.6 0L120 112Zm80 144H72a31.8 31.8 0 0 0-16 4.29V56a16 16 0 0 1 16-16h32v88a8 8 0 0 0 12.8 6.4L144 114l27.21 20.4A8 8 0 0 0 176 136a8 8 0 0 0 8-8V40h16Z"
|
|
89
|
+
/>
|
|
90
|
+
</svg>
|
|
91
|
+
</div>
|
|
92
|
+
|
|
93
|
+
<div class="space-y-1">
|
|
94
|
+
<h2 class="text-lg font-semibold">
|
|
95
|
+
<a href="https://docs.adonisjs.com" target="_blank">
|
|
96
|
+
<span>Documentation</span>
|
|
97
|
+
<span class="absolute inset-0"></span>
|
|
98
|
+
</a>
|
|
99
|
+
</h2>
|
|
100
|
+
|
|
101
|
+
<p class="text-sm text-sand-11 group-hover:text-sand-12 transition ease-in-out duration-700">
|
|
102
|
+
Dive into the official documentation to learn AdonisJS. Read carefully to discover
|
|
103
|
+
an unmatched set of features, best practices and developer experience. Through
|
|
104
|
+
examples, guides and API references, you'll find everything you need to build your
|
|
105
|
+
next project. From installation to deployment, we've got you covered.
|
|
106
|
+
</p>
|
|
107
|
+
</div>
|
|
108
|
+
</div>
|
|
109
|
+
</article>
|
|
110
|
+
|
|
111
|
+
<article class="relative p-6 shadow-sm hover:shadow border border-sand-7 hover:border-sand-8 rounded-2xl transition ease-in-out duration-700 group flex flex-row gap-4">
|
|
112
|
+
<div class="shrink-0 w-10 h-10 bg-primary/20 rounded-md flex justify-center items-center">
|
|
113
|
+
<svg class="h-6 w-6 fill-primary" viewBox="0 0 256 256">
|
|
114
|
+
<path
|
|
115
|
+
fill="currentColor"
|
|
116
|
+
d="m164.44 105.34-48-32A8 8 0 0 0 104 80v64a8 8 0 0 0 12.44 6.66l48-32a8 8 0 0 0 0-13.32M120 129.05V95l25.58 17ZM216 40H40a16 16 0 0 0-16 16v112a16 16 0 0 0 16 16h176a16 16 0 0 0 16-16V56a16 16 0 0 0-16-16m0 128H40V56h176zm16 40a8 8 0 0 1-8 8H32a8 8 0 0 1 0-16h192a8 8 0 0 1 8 8"
|
|
117
|
+
/>
|
|
118
|
+
</svg>
|
|
119
|
+
</div>
|
|
120
|
+
|
|
121
|
+
<div class="space-y-1">
|
|
122
|
+
<h2 class="text-lg font-semibold">
|
|
123
|
+
<a href="https://adocasts.com" target="_blank">
|
|
124
|
+
<span>Adocasts</span>
|
|
125
|
+
<span class="absolute inset-0"></span>
|
|
126
|
+
</a>
|
|
127
|
+
</h2>
|
|
128
|
+
|
|
129
|
+
<p class="text-sm text-sand-11 group-hover:text-sand-12 transition ease-in-out duration-700">
|
|
130
|
+
Level up your development and Adonis skills with hours of video content, from
|
|
131
|
+
beginner to advanced, through databases, testing, and more.
|
|
132
|
+
</p>
|
|
133
|
+
</div>
|
|
134
|
+
</article>
|
|
135
|
+
|
|
136
|
+
<article class="relative p-6 shadow-sm hover:shadow border border-sand-7 hover:border-sand-8 rounded-2xl transition ease-in-out duration-700 group flex flex-row gap-4">
|
|
137
|
+
<div class="shrink-0 w-10 h-10 bg-primary/20 rounded-md flex justify-center items-center">
|
|
138
|
+
<svg class="h-6 w-6 fill-primary" viewBox="0 0 256 256">
|
|
139
|
+
<path
|
|
140
|
+
fill="currentColor"
|
|
141
|
+
d="M208 96a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16h-32a16 16 0 0 0-16 16v8H96v-8a16 16 0 0 0-16-16H48a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h8v64h-8a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-8h64v8a16 16 0 0 0 16 16h32a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16h-8V96Zm-32-48h32v32h-32ZM48 48h32v15.9a.5.5 0 0 0 0 .2V80H48Zm32 160H48v-32h32v15.9a.5.5 0 0 0 0 .2zm128 0h-32v-32h32Zm-24-48h-8a16 16 0 0 0-16 16v8H96v-8a16 16 0 0 0-16-16h-8V96h8a16 16 0 0 0 16-16v-8h64v8a16 16 0 0 0 16 16h8Z"
|
|
142
|
+
/>
|
|
143
|
+
</svg>
|
|
144
|
+
</div>
|
|
145
|
+
|
|
146
|
+
<div class="space-y-1">
|
|
147
|
+
<h2 class="text-lg font-semibold">
|
|
148
|
+
<a href="https://packages.adonisjs.com" target="_blank">
|
|
149
|
+
<span>Packages</span>
|
|
150
|
+
<span class="absolute inset-0"></span>
|
|
151
|
+
</a>
|
|
152
|
+
</h2>
|
|
153
|
+
|
|
154
|
+
<p class="text-sm text-sand-11 group-hover:text-sand-12 transition ease-in-out duration-700">
|
|
155
|
+
Supercharge your AdonisJS application with packages built and maintained by both the
|
|
156
|
+
core team and the community.
|
|
157
|
+
</p>
|
|
158
|
+
</div>
|
|
159
|
+
</article>
|
|
160
|
+
|
|
161
|
+
<article class="relative p-6 shadow-sm hover:shadow border border-sand-7 hover:border-sand-8 rounded-2xl transition ease-in-out duration-700 group flex flex-row gap-4">
|
|
162
|
+
<div class="shrink-0 w-10 h-10 bg-primary/20 rounded-md flex justify-center items-center">
|
|
163
|
+
<svg class="h-6 w-6 fill-primary" viewBox="0 0 256 256">
|
|
164
|
+
<path
|
|
165
|
+
fill="currentColor"
|
|
166
|
+
d="M128 24a104 104 0 1 0 104 104A104.11 104.11 0 0 0 128 24m0 192a88 88 0 1 1 88-88 88.1 88.1 0 0 1-88 88m44.42-143.16-64 32a8.05 8.05 0 0 0-3.58 3.58l-32 64A8 8 0 0 0 80 184a8.1 8.1 0 0 0 3.58-.84l64-32a8.05 8.05 0 0 0 3.58-3.58l32-64a8 8 0 0 0-10.74-10.74M138 138l-40.11 20.11L118 118l40.15-20.07Z"
|
|
167
|
+
/>
|
|
168
|
+
</svg>
|
|
169
|
+
</div>
|
|
170
|
+
|
|
171
|
+
<div class="space-y-1">
|
|
172
|
+
<h2 class="text-lg font-semibold">
|
|
173
|
+
<a href="https://discord.gg/vDcEjq6" target="_blank">
|
|
174
|
+
<span>Discord</span>
|
|
175
|
+
<span class="absolute inset-0"></span>
|
|
176
|
+
</a>
|
|
177
|
+
</h2>
|
|
178
|
+
|
|
179
|
+
<p class="text-sm text-sand-11 group-hover:text-sand-12 transition ease-in-out duration-700">
|
|
180
|
+
Never get lost again, ask questions, and share your knowledge or projects with a
|
|
181
|
+
growing and supportive community. Join us.
|
|
182
|
+
</p>
|
|
183
|
+
</div>
|
|
184
|
+
</article>
|
|
185
|
+
</div>
|
|
186
|
+
|
|
187
|
+
{/* Features */}
|
|
188
|
+
<div class="grow mt-10 mb-8 px-16 xl:px-8 max-w-screen-xl mx-auto">
|
|
189
|
+
<div class="grid grid-cols-1 sm:grid-cols-2 xl:grid-cols-4 gap-4">
|
|
190
|
+
<article class="relative py-4 px-5 bg-white border border-transparent rounded-lg hover:border-sand-8 hover:shadow-sm transition duration-100 ease-in-out group">
|
|
191
|
+
<h2 class="font-semibold text-sand-12">
|
|
192
|
+
<a href="https://lucid.adonisjs.com" target="_blank" class="flex flex-row gap-2">
|
|
193
|
+
<span class="bg-[#D5EAE7] h-6 w-6 flex justify-center items-center rounded">
|
|
194
|
+
<svg class="h-4 w-4 fill-[#0E766E]" viewBox="0 0 24 24">
|
|
195
|
+
<g
|
|
196
|
+
fill="none"
|
|
197
|
+
stroke="currentColor"
|
|
198
|
+
stroke-linecap="round"
|
|
199
|
+
stroke-linejoin="round"
|
|
200
|
+
stroke-width="2"
|
|
201
|
+
>
|
|
202
|
+
<path d="M4 6a8 3 0 1 0 16 0A8 3 0 1 0 4 6" />
|
|
203
|
+
<path d="M4 6v6a8 3 0 0 0 16 0V6" />
|
|
204
|
+
<path d="M4 12v6a8 3 0 0 0 16 0v-6" />
|
|
205
|
+
</g>
|
|
206
|
+
</svg>
|
|
207
|
+
</span>
|
|
208
|
+
<span>Lucid</span>
|
|
209
|
+
<span class="absolute inset-0"></span>
|
|
210
|
+
</a>
|
|
211
|
+
</h2>
|
|
212
|
+
|
|
213
|
+
<p class="mt-4 text-sm text-sand-11 group-hover:text-sand-12 transition ease-in-out duration-100">
|
|
214
|
+
A SQL ORM with a powerful query builder, active record, migrations, and model
|
|
215
|
+
factories. Everything you need to work with databases.
|
|
216
|
+
</p>
|
|
217
|
+
|
|
218
|
+
<svg
|
|
219
|
+
class="absolute top-4 right-5 opacity-0 group-hover:opacity-100 text-sand-9 w-4 h-4 transition ease-in-out duration-100"
|
|
220
|
+
viewBox="0 0 24 24"
|
|
221
|
+
>
|
|
222
|
+
<path
|
|
223
|
+
fill="none"
|
|
224
|
+
stroke="currentColor"
|
|
225
|
+
stroke-linecap="round"
|
|
226
|
+
stroke-linejoin="round"
|
|
227
|
+
stroke-width="2"
|
|
228
|
+
d="M12 6H6a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2v-6m-7 1 9-9m-5 0h5v5"
|
|
229
|
+
/>
|
|
230
|
+
</svg>
|
|
231
|
+
</article>
|
|
232
|
+
|
|
233
|
+
<article class="relative py-4 px-5 bg-white border border-transparent rounded-lg hover:border-sand-8 hover:shadow-sm transition duration-100 ease-in-out group">
|
|
234
|
+
<h2 class="font-semibold text-sand-12">
|
|
235
|
+
<a href="https://vinejs.dev/" target="_blank" class="flex flex-row gap-2">
|
|
236
|
+
<span class="bg-[#F3DBFC] h-6 w-6 flex justify-center items-center rounded">
|
|
237
|
+
<svg class="h-4 w-4 fill-[#CA5AF2]" viewBox="0 0 24 24">
|
|
238
|
+
<path
|
|
239
|
+
fill="none"
|
|
240
|
+
stroke="currentColor"
|
|
241
|
+
stroke-linecap="round"
|
|
242
|
+
stroke-linejoin="round"
|
|
243
|
+
stroke-width="2"
|
|
244
|
+
d="M12 3a12 12 0 0 0 8.5 3A12 12 0 0 1 12 21 12 12 0 0 1 3.5 6 12 12 0 0 0 12 3"
|
|
245
|
+
/>
|
|
246
|
+
</svg>
|
|
247
|
+
</span>
|
|
248
|
+
<span>Vine</span>
|
|
249
|
+
<span class="absolute inset-0"></span>
|
|
250
|
+
</a>
|
|
251
|
+
</h2>
|
|
252
|
+
|
|
253
|
+
<p class="mt-4 text-sm text-sand-11 group-hover:text-sand-12 transition ease-in-out duration-100">
|
|
254
|
+
A yet simple but feature rich and type-safe form data validation. It comes with 50+
|
|
255
|
+
built-in rules and an expressive API to define custom rules.
|
|
256
|
+
</p>
|
|
257
|
+
|
|
258
|
+
<svg
|
|
259
|
+
class="absolute top-4 right-5 opacity-0 group-hover:opacity-100 text-sand-9 w-4 h-4 transition ease-in-out duration-100"
|
|
260
|
+
viewBox="0 0 24 24"
|
|
261
|
+
>
|
|
262
|
+
<path
|
|
263
|
+
fill="none"
|
|
264
|
+
stroke="currentColor"
|
|
265
|
+
stroke-linecap="round"
|
|
266
|
+
stroke-linejoin="round"
|
|
267
|
+
stroke-width="2"
|
|
268
|
+
d="M12 6H6a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2v-6m-7 1 9-9m-5 0h5v5"
|
|
269
|
+
/>
|
|
270
|
+
</svg>
|
|
271
|
+
</article>
|
|
272
|
+
|
|
273
|
+
<article class="relative py-4 px-5 bg-white border border-transparent rounded-lg hover:border-sand-8 hover:shadow-sm transition duration-100 ease-in-out group">
|
|
274
|
+
<h2 class="font-semibold text-sand-12">
|
|
275
|
+
<a href="https://inertiajs.com/" target="_blank" class="flex flex-row gap-2">
|
|
276
|
+
<span class="bg-[#B8EAE0] h-6 w-6 flex justify-center items-center rounded">
|
|
277
|
+
<svg class="h-4 w-4 fill-[#4BBBA5]" viewBox="0 0 24 24">
|
|
278
|
+
<path
|
|
279
|
+
fill="none"
|
|
280
|
+
stroke="currentColor"
|
|
281
|
+
stroke-linecap="round"
|
|
282
|
+
stroke-linejoin="round"
|
|
283
|
+
stroke-width="2"
|
|
284
|
+
d="m12.5 8l4 4l-4 4H17l4-4l-4-4zm-9 0l4 4l-4 4H8l4-4l-4-4z"
|
|
285
|
+
/>
|
|
286
|
+
</svg>
|
|
287
|
+
</span>
|
|
288
|
+
<span>InertiaJS</span>
|
|
289
|
+
<span class="absolute inset-0"></span>
|
|
290
|
+
</a>
|
|
291
|
+
</h2>
|
|
292
|
+
|
|
293
|
+
<p class="mt-4 text-sm text-sand-11 group-hover:text-sand-12 transition ease-in-out duration-100">
|
|
294
|
+
The modern monolithic application architecture. It allows you to build single-page
|
|
295
|
+
applications without building an API.
|
|
296
|
+
</p>
|
|
297
|
+
|
|
298
|
+
<svg
|
|
299
|
+
class="absolute top-4 right-5 opacity-0 group-hover:opacity-100 text-sand-9 w-4 h-4 transition ease-in-out duration-100"
|
|
300
|
+
viewBox="0 0 24 24"
|
|
301
|
+
>
|
|
302
|
+
<path
|
|
303
|
+
fill="none"
|
|
304
|
+
stroke="currentColor"
|
|
305
|
+
stroke-linecap="round"
|
|
306
|
+
stroke-linejoin="round"
|
|
307
|
+
stroke-width="2"
|
|
308
|
+
d="M12 6H6a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2v-6m-7 1 9-9m-5 0h5v5"
|
|
309
|
+
/>
|
|
310
|
+
</svg>
|
|
311
|
+
</article>
|
|
312
|
+
|
|
313
|
+
<article class="relative py-4 px-5 bg-white border border-transparent rounded-lg hover:border-sand-8 hover:shadow-sm transition duration-100 ease-in-out group">
|
|
314
|
+
<h2 class="font-semibold text-sand-12">
|
|
315
|
+
<a href="https://japa.dev" target="_blank" class="flex flex-row gap-2">
|
|
316
|
+
<span class="bg-[#FACDDC] h-6 w-6 flex justify-center items-center rounded">
|
|
317
|
+
<svg class="h-4 w-4 fill-[#DD3074]" viewBox="0 0 256 256">
|
|
318
|
+
<path
|
|
319
|
+
fill="currentColor"
|
|
320
|
+
d="m240.49 83.51-60-60a12 12 0 0 0-17 0L34.28 152.75a48.77 48.77 0 0 0 69 69l111.2-111.26 21.31-7.11a12 12 0 0 0 4.7-19.87M86.28 204.75a24.77 24.77 0 0 1-35-35l28.13-28.13c7.73-2.41 19.58-3 35.06 5a84 84 0 0 0 21.95 8ZM204.2 88.62a12.15 12.15 0 0 0-4.69 2.89l-38.89 38.9c-7.73 2.41-19.58 3-35.06-5a84 84 0 0 0-21.94-8L172 49l37.79 37.79Z"
|
|
321
|
+
/>
|
|
322
|
+
</svg>
|
|
323
|
+
</span>
|
|
324
|
+
<span>Japa</span>
|
|
325
|
+
<span class="absolute inset-0"></span>
|
|
326
|
+
</a>
|
|
327
|
+
</h2>
|
|
328
|
+
|
|
329
|
+
<p class="mt-4 text-sm text-sand-11 group-hover:text-sand-12 transition ease-in-out duration-100">
|
|
330
|
+
From JSON API tests using Open API schema to browser tests with Playwrighht, it
|
|
331
|
+
comes with everything you need to test your application.
|
|
332
|
+
</p>
|
|
333
|
+
|
|
334
|
+
<svg
|
|
335
|
+
class="absolute top-4 right-5 opacity-0 group-hover:opacity-100 text-sand-9 w-4 h-4 transition ease-in-out duration-100"
|
|
336
|
+
viewBox="0 0 24 24"
|
|
337
|
+
>
|
|
338
|
+
<path
|
|
339
|
+
fill="none"
|
|
340
|
+
stroke="currentColor"
|
|
341
|
+
stroke-linecap="round"
|
|
342
|
+
stroke-linejoin="round"
|
|
343
|
+
stroke-width="2"
|
|
344
|
+
d="M12 6H6a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2v-6m-7 1 9-9m-5 0h5v5"
|
|
345
|
+
/>
|
|
346
|
+
</svg>
|
|
347
|
+
</article>
|
|
348
|
+
</div>
|
|
349
|
+
</div>
|
|
10
350
|
|
|
11
|
-
<
|
|
12
|
-
|
|
13
|
-
<
|
|
14
|
-
</
|
|
351
|
+
<div class="text-sm text-center [&>code]:font-medium [&>code]:text-[#a599ff] bg-sand-12 text-sand-1 fixed bottom-0 left-0 right-0 py-2">
|
|
352
|
+
Route for this page is registered in <code>start/routes.ts</code> file, rendering{' '}
|
|
353
|
+
<code>inertia/pages/home.tsx</code> template
|
|
354
|
+
</div>
|
|
15
355
|
</div>
|
|
16
356
|
</>
|
|
17
357
|
)
|
|
@@ -8,13 +8,64 @@
|
|
|
8
8
|
<meta charset="utf-8">
|
|
9
9
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
10
10
|
|
|
11
|
-
<
|
|
11
|
+
<link rel="preconnect" href="https://fonts.bunny.net">
|
|
12
|
+
<link href="https://fonts.bunny.net/css?family=instrument-sans:400,400i,500,500i,600,600i,700,700i" rel="stylesheet" />
|
|
13
|
+
|
|
14
|
+
<style>
|
|
15
|
+
:root {
|
|
16
|
+
--sand-1: #fdfdfc;
|
|
17
|
+
--sand-2: #f9f9f8;
|
|
18
|
+
--sand-3: #f1f0ef;
|
|
19
|
+
--sand-4: #e9e8e6;
|
|
20
|
+
--sand-5: #e2e1de;
|
|
21
|
+
--sand-6: #dad9d6;
|
|
22
|
+
--sand-7: #cfceca;
|
|
23
|
+
--sand-8: #bcbbb5;
|
|
24
|
+
--sand-9: #8d8d86;
|
|
25
|
+
--sand-10: #82827c;
|
|
26
|
+
--sand-11: #63635e;
|
|
27
|
+
--sand-12: #21201c;
|
|
28
|
+
}
|
|
29
|
+
</style>
|
|
30
|
+
|
|
31
|
+
<script src="https://cdn.tailwindcss.com"></script>
|
|
32
|
+
|
|
33
|
+
<script>
|
|
34
|
+
tailwind.config = {
|
|
35
|
+
theme: {
|
|
36
|
+
extend: {
|
|
37
|
+
fontFamily: {
|
|
38
|
+
sans: ['Instrument Sans', 'sans-serif'],
|
|
39
|
+
},
|
|
40
|
+
colors: {
|
|
41
|
+
primary: {
|
|
42
|
+
DEFAULT: '#5A45FF',
|
|
43
|
+
},
|
|
44
|
+
sand: {
|
|
45
|
+
1: 'var(--sand-1)',
|
|
46
|
+
2: 'var(--sand-2)',
|
|
47
|
+
3: 'var(--sand-3)',
|
|
48
|
+
4: 'var(--sand-4)',
|
|
49
|
+
5: 'var(--sand-5)',
|
|
50
|
+
6: 'var(--sand-6)',
|
|
51
|
+
7: 'var(--sand-7)',
|
|
52
|
+
8: 'var(--sand-8)',
|
|
53
|
+
9: 'var(--sand-9)',
|
|
54
|
+
10: 'var(--sand-10)',
|
|
55
|
+
11: 'var(--sand-11)',
|
|
56
|
+
12: 'var(--sand-12)',
|
|
57
|
+
},
|
|
58
|
+
},
|
|
59
|
+
},
|
|
60
|
+
},
|
|
61
|
+
}
|
|
62
|
+
</script>
|
|
12
63
|
|
|
13
64
|
@inertiaHead()
|
|
14
65
|
{{ "@vite(['inertia/app/app.tsx', `inertia/pages/${page.component}.tsx`])" }}
|
|
15
66
|
</head>
|
|
16
67
|
|
|
17
|
-
<body>
|
|
68
|
+
<body class="min-h-screen w-screen font-sans">
|
|
18
69
|
@inertia()
|
|
19
70
|
</body>
|
|
20
71
|
|
|
@@ -63,8 +63,7 @@ var edgePluginInertia = () => {
|
|
|
63
63
|
edge.global(
|
|
64
64
|
"inertia",
|
|
65
65
|
(page = {}, attributes = {}) => {
|
|
66
|
-
if (page.ssrBody)
|
|
67
|
-
return page.ssrBody;
|
|
66
|
+
if (page.ssrBody) return page.ssrBody;
|
|
68
67
|
const className = attributes?.class ? ` class="${attributes.class}"` : "";
|
|
69
68
|
const id = attributes?.id ? ` id="${attributes.id}"` : ' id="app"';
|
|
70
69
|
const tag = attributes?.as || "div";
|