-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
84 lines (70 loc) · 3.13 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<!-- Meta Tags -->
<meta name="description" content="Net Zero from Day Zero: the community for startups pushing for Net Zero">
<meta name="keywords" content="net zero, climate, startup">
<meta name="author" content="NZfDZ">
<!-- Social media / Open Graph meta tags -->
<meta property="og:title" content="Net Zero from Day Zero - the community for startups pushing for Net Zero">
<meta property="og:description" content="The community for startups pushing for Net Zero.">
<!-- <meta property="og:image" content="https://your-site.com/images/cheddar-logo.png"> -->
<meta property="og:url" content="https://www.nzfdz.com">
<!-- <meta name="twitter:card" content="summary_large_image"> -->
<title>NZfDZ | The community for Net Zero startups</title>
<link rel="icon" type="image/svg+xml" href="assets/nzfdz_favicon.svg">
<script src="https://cdn.tailwindcss.com"></script>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-SS0EBJFE7K"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-SS0EBJFE7K');
</script>
<style>
html, body {
height: 100%;
font: 'Inter', sans-serif;
}
iframe {
width: 100%;
height: 100vh;
}
</style>
</head>
<body class="bg-black text-white font-sans flex flex-col items-center justify-center h-full">
<!-- Main Content -->
<div class="container mx-auto text-left px-4 md:px-0 max-w-3xl">
<p class="text-xl md:text-2xl mb-6">One day... every company will be Net Zero from the day they're founded.</p>
<p class="text-xl md:text-2xl mb-6">It's the only way to ensure a sustainable future for all.</p>
<p class="text-xl md:text-2xl mb-6">We're building towards that day.</p>
<p class="text-xl md:text-2xl mb-20">Join the community of startups pushing for:</p>
<!-- Button to open iframe -->
<div class="flex justify-center">
<button id="joinButton" class="bg-white text-black py-2 px-6 rounded-full text-lg font-bold transition transform hover:scale-105">
Net Zero <span class="italic">from</span> Day Zero
</button>
</div>
</div>
<br>
<!-- Carbon badge -->
<div class="absolute bottom-4">
<div id="wcb" class="carbonbadge wcb-d"></div>
<script src="https://unpkg.com/[email protected]/b.min.js" defer></script>
</div>
<!-- Hidden iframe container -->
<div id="iframeContainer" class="fixed top-0 left-0 w-full h-full bg-black z-50 hidden">
<iframe id="signupIframe" src="" frameborder="0" class="border-none"></iframe>
</div>
<script>
document.getElementById('joinButton').addEventListener('click', function() {
document.getElementById('iframeContainer').classList.remove('hidden');
document.getElementById('signupIframe').src = 'https://form.typeform.com/to/sF0bz4KX'; // replace with your Typeform URL
});
</script>
</body>
</html>