this repo has no description
1package frontend
2
3templ Home() {
4 @Base()
5}
6
7templ Account() {
8 @Base()
9}
10
11templ Something(name, email string) {
12 @Base()
13 <div class="relative flex justify-center overflow-hidden bg-gray-50 py-6 sm:py-12">
14 <div class="flex-1 mx-auto w-full max-w-md bg-white px-6 pt-6 pb-6 shadow-xl ring-1 ring-gray-900/5 sm:rounded-xl sm:px-8">
15 <div class="w-full">
16 <div class="text-center">
17 <h1 class="text-3xl font-semibold text-gray-900">Your username is</h1>
18 <p class="mt-2 text-gray-500">{ name }</p>
19 </div>
20 <div class="text-center">
21 <h1 class="text-3xl font-semibold text-gray-900">Your email is</h1>
22 <p class="mt-2 text-gray-500">{ email }</p>
23 </div>
24 </div>
25 </div>
26 <div class="flex-1 mx-auto w-full max-w-md bg-white px-6 pt-6 pb-6 shadow-xl ring-1 ring-gray-900/5 sm:rounded-xl sm:px-8">
27 <div class="w-full">
28 <div class="text-center">
29 <h1 class="text-3xl font-semibold text-gray-900">Your username is</h1>
30 <p class="mt-2 text-gray-500">{ name }</p>
31 </div>
32 <div class="text-center">
33 <h1 class="text-3xl font-semibold text-gray-900">Your email is</h1>
34 <p class="mt-2 text-gray-500">{ email }</p>
35 </div>
36 </div>
37 </div>
38 <div class="flex-1 mx-auto w-full max-w-md bg-white px-6 pt-6 pb-6 shadow-xl ring-1 ring-gray-900/5 sm:rounded-xl sm:px-8">
39 <div class="w-full">
40 <div class="text-center">
41 <h1 class="text-3xl font-semibold text-gray-900">Your username is</h1>
42 <p class="mt-2 text-gray-500">{ name }</p>
43 </div>
44 <div class="text-center">
45 <h1 class="text-3xl font-semibold text-gray-900">Your email is</h1>
46 <p class="mt-2 text-gray-500">{ email }</p>
47 </div>
48 </div>
49 </div>
50 </div>
51}