-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
126 lines (114 loc) · 4.08 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!--
* Copyright (C) 2024 Intel Corporation. All rights reserved.
* Licensed under the Apache License 2.0. See LICENSE in the project root for license information.
* SPDX-License-Identifier: Apache-2.0
-->
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="./style/tailwind.css" rel="stylesheet" />
<link href="./style/general.css" rel="stylesheet" />
<title>Web AI Showcase</title>
<style>
#sampleCardContainer > a {
background: rgba(255, 255, 255, 0.05);
backdrop-filter: blur(10px);
box-shadow: 10px 15px 20px 1px rgba(0, 0, 0, 0.15);
transition: all 0.35s ease;
}
#sampleCardContainer > a:hover {
box-shadow: 0px 2px 10px 1px rgba(0, 0, 0, 0.2);
}
</style>
</head>
<body>
<div id="naviBar" class="sticky top-0 z-50"></div>
<div class="main-content container mx-auto my-2 2xl:my-8 w-full">
<section class="flex flex-col px-10 2xl:px-20">
<div>
<h1 class="text-shadow-sm">
<span
class="font-sans block text-4xl font-semibold 2xl:text-5xl text-stone-50 2xl:my-4 my-1"
>Web AI Showcase</span
>
</h1>
<h2
class="2xl:mt-3 font-semibold text-stone-50 text-xl 2xl:text-2xl 2xl:my-4 my-1"
>
Start your AI journey from your client side, free forever!
</h2>
</div>
<div class="2xl:my-4 my-1">
<div
class="flex items-center gap-8 text-stone-50 2xl:text-md text-sm"
>
<div
id="backendFilterSelection"
class="flex gap-4 items-center"
></div>
<div
id="deviceFilterSelection"
class="flex gap-4 items-center"
></div>
</div>
</div>
<div
id="sampleCardContainer"
class="grid grid-cols-1 md:grid-cols-2 xl:grid-cols-3 xl:gap-x-14 md:gap-x-4 gap-y-4 2xl:gap-x-12 2xl:gap-y-6 2xl:my-4 my-1"
></div>
</section>
<section id="paginationSection">
<div class="flex items-center 2xl:my-4 my-1">
<div class="mx-auto">
<div
class="isolate inline-flex gap-x-3 -space-x-px rounded-md shadow-sm"
>
<div
id="prePageBtn"
class="cursor-pointer relative inline-flex items-center rounded-l-md px-2 py-2 text-stone-50 hover:bg-stone-500/50"
>
<svg
class="h-5 w-5"
viewBox="0 0 20 20"
fill="currentColor"
aria-hidden="true"
>
<path
fill-rule="evenodd"
d="M12.79 5.23a.75.75 0 01-.02 1.06L8.832 10l3.938 3.71a.75.75 0 11-1.04 1.08l-4.5-4.25a.75.75 0 010-1.08l4.5-4.25a.75.75 0 011.06.02z"
clip-rule="evenodd"
></path>
</svg>
</div>
<div
id="pageNumberWrapper"
class="text-sm font-semibold text-stone-50 items-center"
></div>
<div
id="nextPageBtn"
class="cursor-pointer relative inline-flex items-center rounded-r-md px-2 py-2 text-stone-50 hover:bg-stone-500/50"
>
<svg
class="h-5 w-5"
viewBox="0 0 20 20"
fill="currentColor"
aria-hidden="true"
>
<path
fill-rule="evenodd"
d="M7.21 14.77a.75.75 0 01.02-1.06L11.168 10 7.23 6.29a.75.75 0 111.04-1.08l4.5 4.25a.75.75 0 010 1.08l-4.5 4.25a.75.75 0 01-1.06-.02z"
clip-rule="evenodd"
></path>
</svg>
</div>
</div>
</div>
</div>
</section>
</div>
<footer id="footer"></footer>
</body>
<script type="module" src="./js/main.js"></script>
</html>