-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
77 lines (77 loc) · 4.17 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="./alpine.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<style>[x-cloak]{ display:none }</style>
<title>Create Alpine App</title>
</head>
<body>
<!--
Starter template designed at: https://play.tailwindcss.com/x2cGr9TLBr
-->
<div class="relative flex min-h-screen flex-col justify-center overflow-hidden bg-gray-50 py-6 sm:py-12" x-cloak>
<img src="/img/beams.jpg" alt="" class="absolute top-1/2 left-1/2 max-w-none -translate-x-1/2 -translate-y-1/2" width="1308" />
<div class="relative bg-white px-6 pt-10 pb-8 shadow-xl ring-1 ring-gray-900/5 sm:mx-auto sm:max-w-lg sm:rounded-lg sm:px-10">
<div class="mx-auto max-w-md">
<div class="h-6 flex items-center space-x-5 font-semibold">
<svg width="55" height="25" viewBox="0 0 55 25" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="m42.753 0 12.112 12.06-12.112 12.058L30.641 12.06 42.753 0Z" fill="#77C1D2"/><path fill-rule="evenodd" clip-rule="evenodd" d="m12.473 0 25.11 25H13.358L.36 12.06 12.473 0Z" fill="#2D3441"/></svg>
<span>Create Alpine App</span>
</div>
<div class="divide-y divide-gray-300/50">
<div class="space-y-6 py-8 text-base leading-7 text-gray-600">
<p>Welcome to Create Alpine App. A simple starter application for your Alpine and TailwindCSS applications.</p>
<ul class="space-y-4">
<li class="flex items-center">
<svg class="h-6 w-6 flex-none fill-sky-100 stroke-sky-500 stroke-2" stroke-linecap="round" stroke-linejoin="round">
<circle cx="12" cy="12" r="11" />
<path d="m8 13 2.165 2.165a1 1 0 0 0 1.521-.126L16 9" fill="none" />
</svg>
<p class="ml-4">
Start a local dev server by running
<code class="text-sm font-bold text-gray-900">npm run dev</code>
</p>
</li>
<li class="flex items-center">
<svg class="h-6 w-6 flex-none fill-sky-100 stroke-sky-500 stroke-2" stroke-linecap="round" stroke-linejoin="round">
<circle cx="12" cy="12" r="11" />
<path d="m8 13 2.165 2.165a1 1 0 0 0 1.521-.126L16 9" fill="none" />
</svg>
<p class="ml-4">
Hot reloading is enabled by default
</p>
</li>
<li class="flex items-center">
<svg class="h-6 w-6 flex-none fill-sky-100 stroke-sky-500 stroke-2" stroke-linecap="round" stroke-linejoin="round">
<circle cx="12" cy="12" r="11" />
<path d="m8 13 2.165 2.165a1 1 0 0 0 1.521-.126L16 9" fill="none" />
</svg>
<p class="ml-4">
Modify this page inside of
<code class="text-sm font-bold text-gray-900">index.html</code>
</p>
</li>
<li class="flex items-center">
<svg class="h-6 w-6 flex-none fill-sky-100 stroke-sky-500 stroke-2" stroke-linecap="round" stroke-linejoin="round">
<circle cx="12" cy="12" r="11" />
<path d="m8 13 2.165 2.165a1 1 0 0 0 1.521-.126L16 9" fill="none" />
</svg>
<p class="ml-4">To build your app, run <code class="text-sm font-bold text-gray-900">npm run build</code></p>
</li>
</ul>
<p>Need more functionality? Easily add some back-end magic by porting this app over to a Tall stack application.</p>
</div>
<div class="pt-8 text-base font-semibold leading-7">
<p class="text-gray-900">Give us a star on Github</p>
<p>
<a href="https://github.com/thedevdojo/create-alpine-app" class="text-sky-500 hover:text-sky-600">Learn more →</a>
</p>
</div>
</div>
</div>
</div>
</div>
<script type="module" src="/index.js"></script>
</body>
</html>