-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
87 lines (78 loc) · 4.13 KB
/
index.html
File metadata and controls
87 lines (78 loc) · 4.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Refresh Labs</title>
<!-- Favicon tags -->
<link rel="apple-touch-icon" sizes="180x180" href="https://t1.gstatic.com/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&url=https%3A%2F%2Frefreshlabs.xyz&size=180">
<link rel="icon" type="image/png" sizes="32x32" href="https://t1.gstatic.com/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&url=https%3A%2F%2Frefreshlabs.xyz&size=32">
<link rel="icon" type="image/png" sizes="16x16" href="https://t1.gstatic.com/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&url=https%3A%2F%2Frefreshlabs.xyz&size=16">
<link rel="manifest" href="/site.webmanifest">
<link rel="mask-icon" href="https://t1.gstatic.com/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&url=https%3A%2F%2Frefreshlabs.xyz&size=180" color="#5bbad5">
<link rel="shortcut icon" href="https://t1.gstatic.com/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&url=https%3A%2F%2Frefreshlabs.xyz&size=16">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="msapplication-config" content="/browserconfig.xml">
<meta name="theme-color" content="#ffffff">
<!-- Facebook Meta Tags -->
<meta property="og:url" content="https://refreshlabs.xyz">
<meta property="og:type" content="website">
<meta property="og:title" content="Refresh Labs">
<meta property="og:description" content="Building the future of decentralized finance with innovative solutions">
<meta property="og:image" content="https://framerusercontent.com/images/tYQA4Qx1YR7mDObcZJgn82sCI.png">
<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary_large_image">
<meta property="twitter:domain" content="refreshlabs.xyz">
<meta property="twitter:url" content="https://refreshlabs.xyz">
<meta name="twitter:title" content="Refresh Labs">
<meta name="twitter:description" content="Building the future of decentralized finance with innovative solutions">
<meta name="twitter:image" content="https://framerusercontent.com/images/tYQA4Qx1YR7mDObcZJgn82sCI.png">
<style>
body, html { margin: 0; padding: 0; height: 100%; overflow: hidden; }
iframe { width: 100%; height: 100%; border: none; }
</style>
<script>
function injectFramerBadgeRemoval() {
var iframe = document.querySelector('iframe');
if (iframe) {
iframe.onload = function() {
var iframeDoc = iframe.contentDocument || iframe.contentWindow.document;
var style = iframeDoc.createElement('style');
style.textContent = '.__framer-badge { display: none !important; }';
iframeDoc.head.appendChild(style);
var script = iframeDoc.createElement('script');
script.textContent = `
(function() {
function removeBadge() {
var badge = document.querySelector('.__framer-badge');
if (badge) {
badge.remove();
}
var container = document.getElementById('__framer-badge-container');
if (container) {
container.remove();
}
requestAnimationFrame(removeBadge);
}
removeBadge();
var observer = new MutationObserver(function(mutations) {
mutations.forEach(function(mutation) {
if (mutation.addedNodes.length) {
removeBadge();
}
});
});
observer.observe(document.body, { childList: true, subtree: true });
})();
`;
iframeDoc.body.appendChild(script);
};
}
}
injectFramerBadgeRemoval();
</script>
</head>
<body>
<iframe src="https://refreshlabs.framer.website/"></iframe>
</body>
</html>