forked from ethereumclassic/ethereumclassic.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
159 lines (141 loc) · 6.14 KB
/
index.html
File metadata and controls
159 lines (141 loc) · 6.14 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FOUNDUPS</title>
<meta name="description" content="AI + Blockchain for Democratization of Value">
<meta name="theme-color" content="#0a0a0a">
<!-- Open Graph -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://foundups.org">
<meta property="og:title" content="FOUNDUPS">
<meta property="og:description" content="AI + Blockchain for Democratization of Value">
<meta property="og:image" content="https://foundups.com/logo-dog.png">
<meta property="og:image:width" content="512">
<meta property="og:image:height" content="512">
<meta property="og:site_name" content="FOUNDUPS">
<!-- Twitter Card -->
<meta name="twitter:card" content="summary">
<meta name="twitter:site" content="@foundupscom">
<meta name="twitter:title" content="FOUNDUPS">
<meta name="twitter:description" content="AI + Blockchain for Democratization of Value">
<meta name="twitter:image" content="https://foundups.com/logo-dog.png">
<link rel="canonical" href="https://foundups.org">
<link rel="icon" type="image/png" href="https://foundups.com/favicon-32x32.png">
<link rel="apple-touch-icon" href="https://foundups.com/logo-dog.png">
<style>
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
background: #0a0a0a;
color: #e4e2ec;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 2rem;
}
.container { text-align: center; max-width: 400px; }
.logo {
width: 120px;
height: 120px;
border-radius: 24px;
margin-bottom: 1.5rem;
animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.7; }
}
.brand {
font-size: 1.4rem;
font-weight: 700;
letter-spacing: 0.05em;
margin-bottom: 0.75rem;
color: #e4e2ec;
}
.message {
color: #9e9baf;
font-size: 1rem;
line-height: 1.6;
}
.manual-link {
display: inline-block;
margin-top: 1.5rem;
padding: 0.75rem 1.5rem;
background: rgba(124, 92, 252, 0.15);
border: 1px solid rgba(124, 92, 252, 0.3);
border-radius: 8px;
color: #7c5cfc;
text-decoration: none;
font-size: 0.9rem;
transition: all 0.2s ease;
}
.manual-link:hover {
background: rgba(124, 92, 252, 0.25);
border-color: rgba(124, 92, 252, 0.5);
}
.bot-notice {
display: none;
margin-top: 2rem;
padding: 1rem;
background: rgba(255, 255, 255, 0.05);
border-radius: 8px;
font-size: 0.85rem;
color: #6b6880;
}
</style>
<script>
(function() {
var botPatterns = [
'LinkedInBot', 'Twitterbot', 'facebookexternalhit', 'Facebot',
'Discordbot', 'Slackbot', 'WhatsApp', 'TelegramBot',
'Googlebot', 'bingbot', 'Baiduspider', 'YandexBot',
'DuckDuckBot', 'Applebot', 'PinterestBot', 'redditbot',
'Embedly', 'Quora Link Preview', 'Showyoubot', 'outbrain',
'vkShare', 'W3C_Validator', 'crawler', 'spider', 'bot'
];
var userAgent = navigator.userAgent || '';
var isBot = botPatterns.some(function(pattern) {
return userAgent.toLowerCase().indexOf(pattern.toLowerCase()) !== -1;
});
var discordUrl = 'https://discord.com/invite/cpRA5Mz';
if (!isBot) {
// Human visitor — show branded splash for 2.5s then redirect
setTimeout(function() {
window.location.replace(discordUrl);
}, 2500);
} else {
// Bot/scraper — show OG metadata, no redirect
document.addEventListener('DOMContentLoaded', function() {
var notice = document.querySelector('.bot-notice');
if (notice) notice.style.display = 'block';
});
}
})();
</script>
<!-- Fallback for no-JS browsers -->
<noscript>
<meta http-equiv="refresh" content="3;url=https://discord.com/invite/cpRA5Mz">
</noscript>
</head>
<body>
<div class="container">
<img src="https://foundups.com/logo-dog.png" alt="FOUNDUPS" class="logo">
<div class="brand">FOUND<span style="color:#7c5cfc">UPS</span>span></div>div>
<p class="message">Redirecting to FOUNDUPS community...</p>p>
<a href="https://discord.com/invite/cpRA5Mz" class="manual-link">Click here if not redirected</a>a>
<div class="bot-notice">
Bot/scraper detected. This page serves Open Graph metadata for link previews.
Human visitors are redirected to our Discord community.
</div>div>
</div>div>
</body>
</html>html>
</body>
</noscript>
</script>
</style></title>
</head>