-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
64 lines (57 loc) · 2.14 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- SEO Meta Tags -->
<title>Parquet Viewer - View and Query Parquet Files Online</title>
<meta name="description"
content="A web-based Parquet file viewer and query tool. Easily explore and analyze your Parquet files using SQL queries." />
<meta name="keywords"
content="parquet, data viewer, SQL query, data analysis, big data, data tools, rust, webAssembly, datafusion" />
<meta name="author" content="Xiangpeng Hao" />
<!-- Open Graph / Social Media Meta Tags -->
<meta property="og:title" content="Parquet Viewer - View and Query Parquet Files" />
<meta property="og:description" content="A web-based Parquet file viewer and query tool." />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://parquet-viewer.xiangpeng.systems" />
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
primary: '#4a5568',
},
fontFamily: {
sans: ['JetBrains Mono', 'Menlo', 'Monaco', 'Consolas', 'Liberation Mono', 'Courier New', 'monospace'],
},
}
}
}
</script>
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/styles/default.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/highlight.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/languages/sql.min.js"></script>
<!-- Cloudflare Web Analytics -->
<script defer src='https://static.cloudflareinsights.com/beacon.min.js'
data-cf-beacon='{"token": "cdf9b270eac24614a52f26d4b465b8ae"}'></script><!-- End Cloudflare Web Analytics -->
<style>
@keyframes slideIn {
from {
opacity: 0;
transform: translateY(-20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.animate-slide-in {
animation: slideIn 0.3s ease-out forwards;
}
</style>
</head>
<body class="bg-gray-50"></body>
</html>