This commit is contained in:
2026-03-19 17:29:58 +04:00
parent c566881cc2
commit 2234a1a068
5 changed files with 62 additions and 118 deletions
+4 -42
View File
@@ -1,15 +1,6 @@
<!DOCTYPE html>
<html lang="en" class="dark scroll-smooth">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Privacy — PingQL</title>
<meta name="description" content="PingQL's privacy policy. No tracking, no data sales, no ads. We store what we need and nothing more.">
<link rel="stylesheet" href="/assets/tailwind.css?v=<%= it.cssHash %>">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
<%~ include('./partials/public-head', { title: 'Privacy', description: "PingQL's privacy policy. No tracking, no data sales, no ads.", nav: 'privacy' }) %>
<style>
body { background: #0a0a0a; }
.grid-bg {
background-image:
linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
@@ -24,21 +15,8 @@
.prose-custom a { color: #60a5fa; text-decoration: none; }
.prose-custom a:hover { text-decoration: underline; }
</style>
</head>
<body class="bg-[#0a0a0a] text-gray-100 font-sans antialiased grid-bg">
<!-- Header -->
<header class="border-b border-gray-800/60 bg-[#0a0a0a]/80 backdrop-blur-md">
<div class="max-w-6xl mx-auto px-6 py-4 flex items-center justify-between">
<a href="/" class="font-mono text-lg font-bold tracking-tight">Ping<span class="text-blue-400">QL</span></a>
<div class="flex items-center gap-3">
<a href="/dashboard" class="text-sm text-gray-400 hover:text-gray-200 transition-colors">Sign in</a>
<a href="/dashboard" class="text-sm bg-blue-600 hover:bg-blue-500 text-white px-4 py-2 rounded-lg font-medium transition-colors">Get started</a>
</div>
</div>
</header>
<main class="max-w-2xl mx-auto px-6 py-20">
<main class="max-w-2xl mx-auto px-6 pt-28 pb-16">
<!-- Hero -->
<div class="mb-12">
@@ -131,20 +109,4 @@
</div>
</main>
<!-- Footer -->
<footer class="border-t border-gray-800/50 py-12 px-6 mt-12">
<div class="max-w-5xl mx-auto flex flex-col sm:flex-row items-center justify-between gap-6">
<div class="flex items-center gap-6">
<a href="/" class="text-lg font-bold tracking-tight font-mono">Ping<span class="text-blue-400">QL</span></a>
<nav class="flex items-center gap-5 text-sm text-gray-500">
<a href="/dashboard" class="hover:text-gray-300 transition-colors">Dashboard</a>
<a href="/docs" class="hover:text-gray-300 transition-colors">Docs</a>
<a href="/privacy" class="hover:text-gray-300 transition-colors">Privacy</a>
</nav>
</div>
<div class="text-xs text-gray-600">Built by Ico &#9823;</div>
</div>
</footer>
</body>
</html>
<%~ include('./partials/public-foot') %>