forked from auxolotl/website
feat: update goals, roadmap, and add forum link
This commit is contained in:
parent
d697f2daf3
commit
134cc83632
|
@ -4,6 +4,7 @@
|
||||||
|
|
||||||
<section id="goals">
|
<section id="goals">
|
||||||
<h2 class="title">Goals</h2>
|
<h2 class="title">Goals</h2>
|
||||||
|
<div class="goals">
|
||||||
<ol>
|
<ol>
|
||||||
<li class="goal">
|
<li class="goal">
|
||||||
<h3 class="name">Independent</h3>
|
<h3 class="name">Independent</h3>
|
||||||
|
@ -50,6 +51,7 @@
|
||||||
</p>
|
</p>
|
||||||
</li>
|
</li>
|
||||||
</ol>
|
</ol>
|
||||||
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
|
@ -57,6 +59,9 @@
|
||||||
max-width: 800px;
|
max-width: 800px;
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
padding: 4rem 1rem;
|
padding: 4rem 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.goals {
|
||||||
padding-left: 2.5rem;
|
padding-left: 2.5rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,16 +10,15 @@ interface Props {}
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="right">
|
<div class="right">
|
||||||
<!-- TODO: Enable these once the pages are ready. -->
|
|
||||||
<!--
|
|
||||||
<nav>
|
<nav>
|
||||||
<ul>
|
<ul>
|
||||||
|
<!--
|
||||||
<li><a href="https://aux.computer/documentation">Documentation</a></li>
|
<li><a href="https://aux.computer/documentation">Documentation</a></li>
|
||||||
<li><a href="https://aux.computer/contribute">Contribute</a></li>
|
<li><a href="https://aux.computer/contribute">Contribute</a></li>
|
||||||
<li><a href="https://aux.computer/community">Community</a></li>
|
-->
|
||||||
|
<li><a href="https://forum.aux.computer">Community</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
-->
|
|
||||||
</div>
|
</div>
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
|
|
|
@ -4,6 +4,7 @@
|
||||||
|
|
||||||
<section id="roadmap">
|
<section id="roadmap">
|
||||||
<h2 class="title">Roadmap</h2>
|
<h2 class="title">Roadmap</h2>
|
||||||
|
<div class="phases">
|
||||||
<ol>
|
<ol>
|
||||||
<li class="phase">
|
<li class="phase">
|
||||||
<h3 class="name">Soft Fork</h3>
|
<h3 class="name">Soft Fork</h3>
|
||||||
|
@ -99,6 +100,7 @@
|
||||||
</p>
|
</p>
|
||||||
</li>
|
</li>
|
||||||
</ol>
|
</ol>
|
||||||
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
|
@ -106,6 +108,9 @@
|
||||||
max-width: 800px;
|
max-width: 800px;
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
padding: 4rem 1rem;
|
padding: 4rem 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.phases {
|
||||||
padding-left: 2.5rem;
|
padding-left: 2.5rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -15,6 +15,7 @@ const { title } = Astro.props;
|
||||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
||||||
<meta name="generator" content={Astro.generator} />
|
<meta name="generator" content={Astro.generator} />
|
||||||
<title>{title}</title>
|
<title>{title}</title>
|
||||||
|
<meta name="verify" content="https://github.com/jakehamilton" />
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<slot />
|
<slot />
|
||||||
|
|
Loading…
Reference in a new issue