Найден корректный robots.txt
Файл управления сканированием сайта роботами
?
Robots.txt указывает поисковым роботам, какие страницы сканировать, а какие — нет. Ошибки в файле могут случайно закрыть важные разделы от индексации.
Кол-во редиректов для файла robots.txt 3 слишком большое! Это может вызывать затруднение при индексации поисковыми роботами!
Проверяемая страница не запрещена в robots.txt.
Цепочка редиректов для файла robots.txt:
http://crowdfireapp.com/robots.txt
301 MovedPermanently
https://crowdfireapp.com/robots.txt
301 MovedPermanently
https://www.crowdfireapp.com/robots.txt
200 OK
Показать содержимое robots.txt
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Crowdfire is evolving</title>
<link rel="icon" type="image/x-icon" href="favicon.ico">
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap">
<style>
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
line-height: 1.6;
margin: 0;
padding: 0;
background: linear-gradient(135deg, #f5f7fa 0%, #e4e7eb 100%);
color: #2d3748;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
.container {
width: 100%;
max-width: 800px;
margin: 40px auto;
padding: 0 20px;
box-sizing: border-box;
opacity: 0;
transform: translateY(20px);
animation: fadeIn 0.8s ease-out forwards;
}
@keyframes fadeIn {
to {
opacity: 1;
transform: translateY(0);
}
}
.logo {
text-align: center;
margin-bottom: 60px;
}
.logo svg {
width: 220px;
height: auto;
margin-bottom: 20px;
}
.logo .text {
font-size: 2.5em;
font-weight: 700;
color: #2c5282;
letter-spacing: -1px;
margin: 0;
background: linear-gradient(120deg, #2c5282, #4299e1);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
h1 {
font-size: 2.5em;
color: #1a202c;
margin-bottom: 40px;
font-weight: 700;
letter-spacing: -0.5px;
line-height: 1.2;
background: linear-gradient(120deg, #F6286E, #FA461E);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
animation: titleFade 1s ease-out forwards;
opacity: 0;
transform: translateY(10px);
animation-delay: 0.3s;
text-align: center;
}
@keyframes titleFade {
to {
opacity: 1;
transform: translateY(0);
}
}
.message {
background-color: white;
padding: 50px;
border-radius: 20px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
margin-bottom: 30px;
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.2);
transition: transform 0.3s ease;
text-align: left;
max-width: 650px;
margin-left: auto;
margin-right: auto;
}
.message:hover {
transform: translateY(-5px);
}
p {
margin-bottom: 25px;
font-size: 1.15em;
color: #4a5568;
line-height: 1.8;
opacity: 0;
animation: textFade 0.5s ease-out forwards;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}
p:nth-child(2) { animation-delay: 0.4s; }
p:nth-child(3) { animation-delay: 0.5s; }
p:nth-child(4) { animation-delay: 0.6s; }
p:nth-child(5) { animation-delay: 0.7s; }
@keyframes textFade {
to { opacity: 1; }
}
.contact {
background: linear-gradient(to right, #f7fafc, #edf2f7);
padding: 35px;
border-radius: 15px;
margin: 40px auto 20px;
border: 1px solid #e2e8f0;
transition: all 0.3s ease;
max-width: 500px;
text-align: center;
}
.contact:hover {
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}
.email {
color: #FA461E;
text-decoration: none;
font-weight: 600;
padding: 12px 24px;
border-radius: 8px;
background-color: #FFF5F5;
transition: all 0.3s ease;
display: inline-block;
margin-top: 15px;
cursor: pointer;
position: relative;
}
.email:hover {
background-color: #FED7D7;
transform: translateY(-2px);
}
.email::after {
content: 'Copied!';
position: absolute;
bottom: 100%;
left: 50%;
transform: translateX(-50%) translateY(-8px);
background-color: #FA461E;
color: white;
padding: 6px 12px;
border-radius: 6px;
font-size: 14px;
opacity: 0;
visibility: hidden;
transition: all 0.2s ease;
}
.email.copied::after {
opacity: 1;
visibility: visible;
transform: translateX(-50%) translateY(0);
}
@keyframes copyFeedback {
0% { opacity: 0; transform: translateX(-50%) translateY(-8px); }
20% { opacity: 1; transform: translateX(-50%) translateY(0); }
80% { opacity: 1; transform: translateX(-50%) translateY(0); }
100% { opacity: 0; transform: translateX(-50%) translateY(-8px); }
}
.email.animate-copy::after {
animation: copyFeedback 1.5s ease forwards;
}
.heart {
color: #e53e3e;
font-size: 1.4em;
display: inline-block;
animation: heartBeat 1.5s ease-in-out infinite;
vertical-align: middle;
margin: 0 3px;
}
@keyframes heartBeat {
0%, 100% { transform: scale(1); }
50% { transform: scale(1.1); }
}
.signature {
text-align: center;
font-style: italic;
margin-top: 40px;
font-weight: 500;
color: #2d3748;
padding: 20px;
position: relative;
max-width: 400px;
margin-left: auto;
margin-right: auto;
}
.signature::before,
.signature::after {
content: '';
position: absolute;
height: 1px;
width: 50px;
background: linear-gradient(to right, transparent, #cbd5e0, transparent);
left: 50%;
transform: translateX(-50%);
}
.signature::before { top: 0; }
.signature::after { bottom: 0; }
strong {
color: #2d3748;
font-weight: 600;
background: linear-gradient(120deg, #FEEBC8 0%, #FEEBC8 100%);
background-repeat: no-repeat;
background-size: 100% 0.2em;
background-position: 0 88%;
transition: background-size 0.25s ease-in;
padding: 0 2px;
}
strong:hover {
background-size: 100% 100%;
}
@media (max-width: 600px) {
.container {
margin: 20px auto;
padding: 0 15px;
}
h1 {
font-size: 2em;
margin-bottom: 30px;
padding: 0 10px;
}
.message {
padding: 30px 20px;
}
p {
font-size: 1.05em;
padding: 0 10px;
}
.contact {
padding: 25px 15px;
margin: 30px 10px 20px;
}
.email {
padding: 10px 20px;
font-size: 0.95em;
}
.logo svg {
width: 180px;
}
}
</style>
</head>
<body>
<div class="container">
<div class="logo">
<svg width="148" height="32" viewBox="0 0 148 32" xmlns="http://www.w3.org/2000/svg"><title>Logo</title><defs><linearGradient x1="100%" y1="0%" x2=".161%" y2="99.839%" id="a"><stop stop-color="#F6286E" offset="0%"/><stop stop-color="#FA461E" offset="100%"/></linearGradient></defs><g fill="none" fill-rule="evenodd"><path d="M28.8 15.97h-6.4V9.582H16V3.194h12.8V15.97zm3.2 0h-6.4c0 5.291-4.298 9.581-9.6 9.581s-9.6-4.29-9.6-9.581c0-5.292 4.298-9.582 9.6-9.582V0C7.163 0 0 7.15 0 15.97s7.163 15.969 16 15.969 16-7.15 16-15.97z" fill="url(#a)"/><path d="M48.636 25a8.844 8.844 0 0 0 6.317-2.688l-2.532-2.244c-.946 1.075-2.295 1.8-3.785 1.8-2.721 0-5.04-2.385-5.04-5.19 0-2.781 2.319-5.166 5.04-5.166 1.49 0 2.839.725 3.785 1.8l2.532-2.244a8.75 8.75 0 0 0-6.317-2.688C43.975 8.38 40 12.167 40 16.678 40 21.19 43.975 25 48.636 25zm11.14-10.122v-2.244H56.32V24.72h3.455v-5.773c0-2.268 1.632-3.717 4.187-3.717v-2.875c-1.869 0-3.383.958-4.187 2.524zM70.986 25c3.62 0 6.649-2.899 6.649-6.335s-3.029-6.311-6.649-6.311c-3.643 0-6.695 2.875-6.695 6.311S67.343 25 70.986 25zm0-2.875c-1.845 0-3.383-1.59-3.383-3.46 0-1.87 1.538-3.436 3.383-3.436 1.822 0 3.36 1.566 3.36 3.436 0 1.87-1.538 3.46-3.36 3.46zm10.809 2.594h3.1l2.294-7.597 2.272 7.597h3.099l4.164-12.085h-3.383l-2.319 7.527-2.413-7.527h-2.863l-2.413 7.527-2.319-7.527h-3.383l4.164 12.085zm25.264-16.34v5.985c-.97-1.262-2.39-2.01-4.116-2.01-3.265 0-5.631 2.618-5.631 6.311 0 3.717 2.366 6.335 5.63 6.335 1.728 0 3.147-.748 4.117-2.01v1.73h3.455V8.38h-3.455zm-3.123 13.746c-1.916 0-3.265-1.426-3.265-3.46 0-2.01 1.349-3.436 3.265-3.436 1.822 0 3.123 1.426 3.123 3.436 0 2.034-1.3 3.46-3.123 3.46zm13.01-10.145c0-.795.52-1.356 1.159-1.356.473 0 .946.164 1.182.397l.829-2.08c-.71-.631-1.822-1.052-2.816-1.052-2.153 0-3.667 1.52-3.667 3.693v1.052h-1.68v2.759h1.68v9.326h3.312v-9.326h2.65v-2.759h-2.65v-.654zm5.91-1.005c1.018 0 1.846-.842 1.846-1.87 0-.959-.828-1.824-1.846-1.824-1.065 0-1.893.865-1.893 1.824 0 1.028.828 1.87 1.893 1.87zm-1.75 13.744h3.454V12.634h-3.455V24.72zm9.223-9.84v-2.245h-3.455V24.72h3.455v-5.773c0-2.268 1.632-3.717 4.187-3.717v-2.875c-1.869 0-3.383.958-4.187 2.524zm11.258 7.106c-1.444 0-2.508-.889-2.91-2.198h8.825c0-4.558-2.248-7.433-6.08-7.433-3.574 0-6.294 2.641-6.294 6.288 0 3.717 2.839 6.358 6.482 6.358 1.799 0 3.904-.748 4.993-1.87l-2.2-2.22c-.663.63-1.846 1.075-2.816 1.075zm-.024-6.616c1.396 0 2.295.772 2.626 1.964h-5.465c.45-1.216 1.538-1.964 2.84-1.964z" fill="#FA461E"/></g></svg>
</div>
<div class="message">
<h1>Crowdfire is evolving 🚀</h1>
<p>After 15 years helping creators manage social media, we're becoming something new, a media platform dedicated to covering the intersection of social media, Web3, and AI.</p>
<p>Why? Because the landscape you're navigating is more complex than ever. Algorithms shift overnight. New platforms rise and fall. AI rewrites the rules. Web3 creates new opportunities. You need a trusted source cutting through the noise.</p>
<p>So we're doubling down on our mission: helping creators like you build, monetize, and own your digital future.</p>
<p><strong>What's changing:</strong><br>
→ Daily news & insights<br>
→ Covering bigger topics: social media, Web3, AI<br>
→ Same real talk, broader focus</p>
<p><strong>What's staying the same:</strong><br>
→ This community<br>
→ Our commitment to creators<br>
→ No BS approach</p>
<p style="text-align: center; font-size: 1.3em; font-weight: 600; margin-top: 40px;">The next chapter starts now. Are you in?</p>
</div>
</div>
<script>
function copyEmail(event) {
event.preventDefault();
const element = event.target;
const email = element.dataset.email;
navigator.clipboard.writeText(email).then(() => {
element.classList.add('animate-copy');
setTimeout(() => {
element.classList.remove('animate-copy');
}, 1500);
}).catch(err => {
console.error('Failed to copy:', err);
});
}
</script>
<script type="module" src="https://static.cloudflareinsights.com/beacon.min.js/v4513226cdae34746b4dedf0b4dfa099e1781791509496" integrity="sha512-ZE9pZaUXND66v380QUtch/5sE9tPFh2zg45pR2PB0CVkCtOREv2AJKkSidISWkysEuQ0EH8faUU5du78bx87UQ==" data-cf-beacon='{"version":"2024.11.0","token":"e2b757bad33443f8b299125dff2a6c4c","r":1}' crossorigin="anonymous"></script>
</body>
</html>