-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
41 lines (41 loc) · 1.35 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>New page</title>
<link rel="stylesheet" href="/dist/tailwind.css" />
</head>
<body class="ml-12 mt-16 p-8 shadow-2xl w-1/2">
<h1 class="font-heading mb-24 shadow-rainbow text-5xl">Hello, there!</h1>
<p class="text-blue-900">
Welcome to our amazing test page where we showcase our fancy customized
Tailwind CSS theme!
</p>
<div class="container mx-auto px-4">
<div class="flex flex-wrap justify-center">
<div class="p-4 w-full lg:w-7/12" x-data="searchBox">
<input
type="search"
name="search"
x-model.debounce:value="searchText"
x-bind:placeholder="placeholder" />
<div id="result" class="py-4">
<ul class="space-y-6">
<template x-for="(result, index) in results" :key="index">
<li>
<a
x-bind:href="result.data.url"
x-text="result.data.title"
target="_blank"></a>
</li>
</template>
</ul>
</div>
</div>
</div>
</div>
<div
class="bg-center bg-cover bg-design-image bg-no-repeat blur-none z-0 lg:bg-design-image-large h-60"></div>
<script src="/dist/js/main.js"></script>
</body>
</html>