-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (47 loc) · 2.33 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link href="https://unpkg.com/tailwindcss@^1.0/dist/tailwind.min.css" rel="stylesheet">
<title>Svelte 3 Demos</title>
</head>
<body class="bg-gray-700 text-white p-8 max-w-6xl m-auto">
<h1 class="text-orange-400 text-4xl mb-10">Svelte 3 Demos</h1>
<div class="flex flex-wrap">
<div class="w-full md:w-64 md:mr-4 mb-8">
<img class="w-full md:w-64 h-64 rounded bg-white object-contain" src="./demos/arrow/screenshot.png"/>
<div class="font-bold text-xl mt-2">SVG Bezier Arrow</div>
<div>
<a href="demos/arrow/public/index.html" class="underline">Demo</a>
<a href="https://github.com/gomezcabo/svelte-demos/tree/master/demos/arrow" class="ml-2 underline">Github</a>
</div>
</div>
<div href="demos/calendar/public/index.html" class="w-full md:w-64 md:mr-4 mb-8">
<img class="w-full md:w-64 h-64 rounded bg-white object-contain" src="./demos/calendar/screenshot.png"/>
<div class="font-bold text-xl mt-2">Todo app with calendar</div>
<div>
<a href="demos/calendar/public/index.html" class="underline">Demo</a>
<a href="https://github.com/gomezcabo/svelte-demos/tree/master/demos/calendar" class="underline ml-2">Github</a>
</div>
</div>
<div class="w-full md:w-64 md:mr-4 mb-8">
<img class="w-full md:w-64 h-64 rounded bg-white object-contain" src="./demos/cytoscape/screenshot.png"/>
<div class="font-bold text-xl mt-2 wrap">Cytoscape.js integration</div>
<div>
<a href="demos/cytoscape/public/index.html" class="underline">Demo</a>
<a href="https://github.com/gomezcabo/svelte-demos/tree/master/demos/cytoscape" class="underline ml-2">Github</a>
</div>
</div>
<div class="w-full md:w-64 md:mr-4 mb-8">
<img class="w-full md:w-64 h-64 rounded bg-white object-contain" src="./demos/minimap/screenshot.png"/>
<div class="font-bold text-xl mt-1">Minimap generator</div>
<div>
<a href="demos/minimap/public/index.html" class="underline">Demo</a>
<a href="https://github.com/gomezcabo/svelte-demos/tree/master/demos/minimap" class="ml-2 underline">Github</a>
</div>
</div>
</div>
</body>
</html>