Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions images/dn-logo-1.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/favicon.ico
Binary file not shown.
Binary file added images/placeholder.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
74 changes: 68 additions & 6 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,26 +29,88 @@
<div class="layout">
<div>
<div class="navbar-content">
<img class="devnode-logo" src="images/svg-logo.svg" alt="devnode logo" />
<img class="devnode-logo" src="images/dn-logo-1.svg" alt="devnode logo" />
<div>developers</div>
</div>
</div>
<div class="content">
<div class="hero">
<h1 class="header">
Open ecosystem of
Build your developer
</br>
developer learning communities
support community
</h1>
<div class="description">
Connect your learning community into an open and searchable knowledge base.
Faster support for developers learning and building with your technology — Grow usage and satisfaction while reducing workload.
</div>
<div class="button-group">
<button onclick="location.href='https://discord.gg/5ZbustXSWw'" type="button" class="button primary twitter">JOIN DISCORD</button>
<!-- <button onclick="location.href='https://radicle.community/t/devnode-aggregating-developer-learning-and-support-communities-across-discords/2875'" type="button" class="button button-group-item secondary">LEARN MORE</button> -->
<button onclick="location.href='https://twitter.com/devnode_'" type="button" class="button secondary twitter">
<img src="images/twitter.svg" alt="Twitter">
<div>FOLLOW</div>
</button>
</div>
<div>
image: discord, docs, devnode web
</div>
<img class="propimage" src="images/placeholder.png" alt="">
</div>
<div class="propcontainer">
<div class="prop">
<div class="propheader">
<h1>Meet your community where they are</h1>
</div>
<div class="propdescription">
<p>Growing ecosystem of interfaces :: show interfaces: discord, telegram, discourse, devnode.network, documentation</p>
</div>
<img class="propimage" src="images/placeholder.png" alt="">
</div>
</div>
<div class="propcontainer">
<div class="prop">
<div class="propheader">
<h1>Grow existing knowledge base</h1>
</div>
<div class="propdescription">
<p>global searchable graph of knowledge across communities.</p>
</div>
<img class="propimage" src="images/placeholder.png" alt="">
</div>
</div>
<div class="propcontainer">
<div class="prop">
<div class="propheader">
<h1>Faster support for your community</h1>
</div>
<div class="propdescription">
<p>AI bot built on community data - q&a, discord, docs.</p>
</div>
<img class="propimage" src="images/placeholder.png" alt="">
</div>
</div>
<div class="propcontainer">
<div class="prop">
<div class="propheader">
<h1>Grow the quality of human support</h1>
</div>
<div class="propdescription">
<p>build and reward contributor community with roles and payouts.</p>
</div>
<img class="propimage" src="images/placeholder.png" alt="">
</div>
</div>
<div class="propcontainer">
<div class="prop">
<div class="propheader">
<h1>Reduce Support Workload</h1>
</div>
<div class="propdescription">
<p>Devnode aggregates developer support communities across Discord servers, so you can focus on building your product.</p>
</div>
<img class="propimage" src="images/placeholder.png" alt="">
</div>
</div>
<div>
call to action: apply to join beta.
</div>
</div>
</body>
Expand Down
38 changes: 33 additions & 5 deletions styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
}

body {
background-color: #FC3532;
color: white;
/* background-color: #FC3532; */
/* color: white; */
margin: 0;
padding: 0;
}
Expand All @@ -17,6 +17,14 @@ hr {
opacity: 60%;
}

h1 {
font-size: 3rem;
line-height: 125%;
font-weight: 500;
margin: 0;
padding: 0;
}

.bottom-header {
background: url(images/devnode-gradient.svg);
background-size: cover;
Expand Down Expand Up @@ -75,7 +83,7 @@ hr {
}

.description {
width: 860px;
max-width: 1000px;
text-align: center;
padding: 0;
margin: 40px 0px;
Expand Down Expand Up @@ -105,8 +113,8 @@ hr {
justify-content: space-between;
}

.content {
height: calc(100% - 240px);
.hero {
/* height: calc(100% - 240px); */
display: flex;
flex-direction: column;
justify-content: center;
Expand All @@ -128,6 +136,26 @@ hr {
width: 'auto';
}

/* prop */
.propcontainer {
text-align: center;
margin-top: 40px;
}

.propdescription {
font-size: 1.5rem;
line-height: 150%;
margin: 0;
padding: 0;
}

.propimage {
width: 90%;
margin: 0 auto;
height: 100%;
object-fit: cover;
}

@media screen and (max-width: 1400px) {
.description-text {
font-size: calc(16px + 0.5vw);
Expand Down