Найден корректный robots.txt
Файл управления сканированием сайта роботами
?
Robots.txt указывает поисковым роботам, какие страницы сканировать, а какие — нет. Ошибки в файле могут случайно закрыть важные разделы от индексации.
Robots.txt настроен корректно. Размер файла: 9518 байт. Загружен за: 0сек.
Проверяемая страница не запрещена в robots.txt.
Показать содержимое robots.txt
# As a condition of accessing this website, you agree to abide by the following
# content signals:
# (a) If a Content-Signal = yes, you may collect content for the corresponding
# use.
# (b) If a Content-Signal = no, you may not collect content for the
# corresponding use.
# (c) If the website operator does not include a Content-Signal for a
# corresponding use, the website operator neither grants nor restricts
# permission via Content-Signal with respect to the corresponding use.
# The content signals and their meanings are:
# search: building a search index and providing search results (e.g., returning
# hyperlinks and short excerpts from your website's contents). Search does not
# include providing AI-generated search summaries.
# ai-input: inputting content into one or more AI models (e.g., retrieval
# augmented generation, grounding, or other real-time taking of content for
# generative AI search answers).
# ai-train: training or fine-tuning AI models.
# use: how AI systems may consume the content (immediate, reference, or full).
# ANY RESTRICTIONS EXPRESSED VIA CONTENT SIGNALS ARE EXPRESS RESERVATIONS OF
# RIGHTS UNDER ARTICLE 4 OF THE EUROPEAN UNION DIRECTIVE 2019/790 ON COPYRIGHT
# AND RELATED RIGHTS IN THE DIGITAL SINGLE MARKET.
# BEGIN Cloudflare Managed content
User-agent: *
Content-Signal: search=yes,ai-train=no,use=reference
Allow: /
User-agent: Amazonbot
Disallow: /
User-agent: Applebot-Extended
Disallow: /
User-agent: Bytespider
Disallow: /
User-agent: CCBot
Disallow: /
User-agent: ClaudeBot
Disallow: /
User-agent: CloudflareBrowserRenderingCrawler
Disallow: /
User-agent: Google-Extended
Disallow: /
User-agent: GPTBot
Disallow: /
User-agent: meta-externalagent
Disallow: /
# END Cloudflare Managed Content
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>thesimplest.net — apps that just work</title>
<meta name="description" content="Simple, thoughtful apps. See what's currently in the works.">
<meta property="og:title" content="thesimplest.net">
<meta property="og:description" content="Simple, thoughtful apps. See what's currently in the works.">
<meta property="og:image" content="https://cluhdmoyqzvjwoibsewe.supabase.co/storage/v1/object/public/public-images/app-icon.png">
<meta property="og:type" content="website">
<meta property="og:url" content="https://thesimplest.net">
<link rel="icon" type="image/x-icon" href="https://cluhdmoyqzvjwoibsewe.supabase.co/storage/v1/object/public/public-images/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://cluhdmoyqzvjwoibsewe.supabase.co/storage/v1/object/public/public-images/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://cluhdmoyqzvjwoibsewe.supabase.co/storage/v1/object/public/public-images/favicon-32x32.png">
<link rel="apple-touch-icon" sizes="180x180" href="https://cluhdmoyqzvjwoibsewe.supabase.co/storage/v1/object/public/public-images/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="192x192" href="https://cluhdmoyqzvjwoibsewe.supabase.co/storage/v1/object/public/public-images/app-icon.png">
<style>
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
--bg: #080808;
--surface: #111111;
--border: #1a1a1a;
--text: #F5F5F5;
--muted: #555;
--accent: #00C8F0;
}
html { color-scheme: dark; }
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
background: var(--bg);
color: var(--text);
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
overflow-x: hidden;
}
/* ── Ambient background glow ──────────────────────────── */
body::before {
content: "";
position: fixed;
top: 30%;
left: 50%;
width: 600px;
height: 600px;
transform: translate(-50%, -50%);
background: radial-gradient(circle, rgba(0, 200, 240, 0.06) 0%, transparent 70%);
pointer-events: none;
animation: ambient 8s ease-in-out infinite alternate;
}
@keyframes ambient {
0% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
100% { opacity: 1; transform: translate(-50%, -50%) scale(1.3); }
}
/* ── Page fade-in ─────────────────────────────────────── */
.page {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
flex: 1;
width: 100%;
max-width: 520px;
padding: 60px 24px;
animation: fadeUp 1s ease-out both;
}
@keyframes fadeUp {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
/* ── Wordmark ─────────────────────────────────────────── */
.wordmark {
font-size: 18px;
font-weight: 300;
letter-spacing: 0.25em;
text-transform: lowercase;
color: var(--muted);
margin-bottom: 72px;
animation: fadeUp 1s 0.15s ease-out both;
}
/* ── Section label ────────────────────────────────────── */
.section-label {
font-size: 11px;
font-weight: 700;
letter-spacing: 0.18em;
text-transform: uppercase;
color: var(--accent);
margin-bottom: 28px;
animation: fadeUp 1s 0.3s ease-out both;
}
.section-label::before,
.section-label::after {
content: "";
display: inline-block;
width: 24px;
height: 1px;
background: var(--accent);
vertical-align: middle;
opacity: 0.4;
}
.section-label::before { margin-right: 12px; }
.section-label::after { margin-left: 12px; }
/* ── Project card ─────────────────────────────────────── */
.project-card {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
text-decoration: none;
color: inherit;
background: var(--surface);
border: 1px solid var(--border);
border-radius: 24px;
padding: 44px 36px 40px;
width: 100%;
transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
animation: fadeUp 1s 0.45s ease-out both;
position: relative;
}
.project-card:hover {
transform: translateY(-4px);
border-color: rgba(0, 200, 240, 0.25);
box-shadow: 0 8px 40px rgba(0, 200, 240, 0.1), 0 0 0 1px rgba(0, 200, 240, 0.08);
}
.project-icon {
width: 80px;
height: 80px;
border-radius: 22px;
margin-bottom: 24px;
animation: glow 3s ease-in-out infinite alternate;
}
@keyframes glow {
0% { filter: drop-shadow(0 0 12px rgba(0, 200, 240, 0.2)); }
100% { filter: drop-shadow(0 0 28px rgba(0, 200, 240, 0.45)); }
}
.project-name {
font-size: 28px;
font-weight: 800;
letter-spacing: -1px;
margin-bottom: 8px;
}
.project-tagline {
font-size: 15px;
color: var(--muted);
line-height: 1.5;
max-width: 280px;
margin-bottom: 20px;
}
.badge {
display: inline-block;
font-size: 11px;
font-weight: 600;
letter-spacing: 0.06em;
text-transform: uppercase;
color: var(--accent);
background: rgba(0, 200, 240, 0.08);
border: 1px solid rgba(0, 200, 240, 0.15);
border-radius: 100px;
padding: 6px 16px;
}
.card-hint {
display: flex;
align-items: center;
gap: 6px;
margin-top: 24px;
font-size: 12px;
color: var(--muted);
letter-spacing: 0.04em;
transition: color 0.3s ease;
}
.project-card:hover .card-hint {
color: var(--accent);
}
.card-hint svg {
transition: transform 0.3s ease;
}
.project-card:hover .card-hint svg {
transform: translateX(3px);
}
/* ── Footer ───────────────────────────────────────────── */
footer {
padding: 32px 24px;
font-size: 12px;
color: #333;
animation: fadeUp 1s 0.6s ease-out both;
}
/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 400px) {
.project-card { padding: 36px 24px 32px; }
.project-name { font-size: 24px; }
.wordmark { margin-bottom: 52px; }
}
</style>
</head>
<body>
<main class="page">
<p class="wordmark">thesimplest.net</p>
<p class="section-label">Now cooking</p>
<a class="project-card" href="https://cardwarden.app">
<img class="project-icon" src="https://cluhdmoyqzvjwoibsewe.supabase.co/storage/v1/object/public/public-images/app-icon.png" alt="CardWarden" width="80" height="80">
<h2 class="project-name">CardWarden</h2>
<p class="project-tagline">Your rewards & gift cards — encrypted, organised, shared and synced with your loved ones in real time.</p>
<span class="badge">Coming soon · Android & iOS</span>
<span class="card-hint">
Find out more
<svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<polyline points="9 18 15 12 9 6"/>
</svg>
</span>
</a>
</main>
<footer>
<p>© 2026 thesimplest.net</p>
</footer>
</body>
</html>