55 lines
2.8 KiB
HTML
55 lines
2.8 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>BTCPay Contribute - Start contributing to Bitcoin</title>
|
|
<meta name="description" content="Find your path to contributing to BTCPay Server. Developer, tester, designer, or evangelist - pick your role and get started today." />
|
|
|
|
<!-- Open Graph -->
|
|
<meta property="og:title" content="BTCPay Contribute" />
|
|
<meta property="og:description" content="Pick your role - developer, tester, designer, or evangelist - and start contributing to BTCPay Server today." />
|
|
<meta property="og:type" content="website" />
|
|
<meta property="og:url" content="https://contribute.btcpayserver.org" />
|
|
|
|
<!-- Twitter Card -->
|
|
<meta name="twitter:card" content="summary" />
|
|
<meta name="twitter:title" content="BTCPay Contribute" />
|
|
<meta name="twitter:description" content="Pick your role and start contributing to BTCPay Server - developer, tester, designer, or evangelist." />
|
|
|
|
<!-- CSP - GitHub Pages ignores _headers, so enforce via meta tag -->
|
|
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self' 'unsafe-inline'; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; font-src 'self' https://fonts.gstatic.com; img-src 'self' data: https://avatars.githubusercontent.com https://img.youtube.com; connect-src 'self'; frame-src https://www.youtube.com" />
|
|
|
|
<!-- Favicon -->
|
|
<meta name="theme-color" content="#51b13e" />
|
|
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
|
|
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
|
|
<link rel="shortcut icon" href="/favicon.ico" />
|
|
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
|
|
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#51b13e" />
|
|
<link rel="manifest" href="/site.webmanifest" />
|
|
|
|
<!-- Fonts -->
|
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Space+Grotesk:wght@400;600;700&display=swap" />
|
|
|
|
<!-- Preconnect for YouTube thumbnails -->
|
|
<link rel="preconnect" href="https://img.youtube.com" />
|
|
|
|
<!-- Theme flash prevention — runs before React hydrates -->
|
|
<script>
|
|
(function() {
|
|
var t = localStorage.getItem('theme');
|
|
if (t === 'dark' || (!t && window.matchMedia('(prefers-color-scheme: dark)').matches)) {
|
|
document.documentElement.classList.add('dark');
|
|
}
|
|
})();
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|