-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
104 lines (92 loc) · 3.95 KB
/
index.html
File metadata and controls
104 lines (92 loc) · 3.95 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>DripCode Studio Labs — tools that work harder than anyone on your team</title>
<meta name="description" content="DripCode Studio Labs builds tools that automate the friction out of daily life — for individuals, teams, and anyone in between." />
<meta name="keywords" content="dripcode, studio, labs, tools, automation, productivity" />
<meta name="author" content="DripCode Studio" />
<!-- Open Graph -->
<meta property="og:title" content="DripCode Studio Labs" />
<meta property="og:description" content="We build tools that work harder than anyone on your team." />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://dripcodelab.com" />
<meta property="og:image" content="https://dripcodelab.com/assets/main-logo.svg" />
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="DripCode Studio Labs" />
<meta name="twitter:description" content="We build tools that work harder than anyone on your team." />
<meta name="twitter:image" content="https://dripcodelab.com/assets/main-logo.svg" />
<!-- Favicon -->
<link rel="icon" type="image/x-icon" href="./assets/favicon.ico" />
<link
href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Inter:wght@300;400;500;600&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="./styles.css" />
</head>
<body>
<!-- NAV -->
<nav>
<a class="nav-logo" href="#"><img class="nav-logo-img" src="./assets/main-logo.svg" alt="DripCode Studio" /></a>
<ul class="nav-links">
<li><a href="#about">about</a></li>
<li><a href="#tools">tools</a></li>
<li><a href="#contact">work with us</a></li>
</ul>
</nav>
<!-- HERO -->
<section class="hero">
<canvas id="network-canvas"></canvas>
<p class="hero-eyebrow">DripCode Studio Labs</p>
<h1>the <span class="accent">system</span><br />runs itself.</h1>
<p class="hero-sub">
we build tools that work harder than anyone on your team.
</p>
<a href="#tools" class="hero-cta">explore the lab →</a>
</section>
<!-- TOOLS -->
<section class="tools-section" id="tools">
<p class="section-label">tools & apps</p>
<div class="tools-grid" id="tools-grid"></div>
</section>
<div class="divider"></div>
<!-- ABOUT -->
<section class="about-section" id="about">
<div>
<h2>built by one.<br />works for many.</h2>
<p>
DripCode Studio Labs is an independent digital studio focused on
building tools that automate the friction out of daily life — for
individuals, teams, and anyone in between.
</p>
<p>
Every product is designed to start small and scale quietly. No
dashboards for the sake of dashboards. Just things that work.
</p>
</div>
</section>
<div class="divider"></div>
<!-- CONTACT -->
<section class="contact-section" id="contact">
<h2>let's build<br />something together.</h2>
<p>
have an idea that needs a system behind it? reach out and let's figure
it out.
</p>
<a href="mailto:dripcodestudio@gmail.com" class="contact-btn"
>get in touch →</a
>
</section>
<!-- FOOTER -->
<footer>
<div class="footer-links">
<a class="footer-link" href="https://www.dripcodestudio.com/" target="_blank" rel="noopener">DripCode Studio</a>
<a class="footer-link" href="https://github.com/DripCode-Studio" target="_blank" rel="noopener">GitHub</a>
</div>
<span class="copy" id="copyright-year">© 2026. all rights reserved.</span>
</footer>
<script src="./script.js"></script>
</body>
</html>