roc/www/public/index.html
Elijah Schow 39e03ee612
Improve website typography
This commit adds minimal styles to improve the reading experience on the placeholder website.

 - Set a max width
 - Increase leading (line height)
 - Center the content
 - Add space after list items to let them breath
 - Change the font to sans-serif*

___
*This change isn't strictly necessary, but sans-serif fonts are arguably more legible on digital displays than their serif counterparts. Your mileage may vary.
2022-02-18 21:08:13 -06:00

52 lines
2.1 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>The Roc Programming Language</title>
<!-- <meta name="description" content="A language for making delightful software."> -->
<meta name="viewport" content="width=device-width">
<style type="text/css">
html {
max-width: 35em;
margin: 0 auto;
font-family: sans-serif;
line-height: 145%;
}
li {
margin-bottom: 0.5rem;
}
</style>
<!-- <link rel="icon" href="/favicon.svg"> -->
</head>
<body>
<h1>Work in Progress</h1>
<p>Roc's initial release is still under development, and this website is a placeholder until that release is ready.
</p>
<p>In the meantime, if you'd like to learn more about Roc, here are some videos:</p>
<ul>
<li><a href="https://media.handmade-seattle.com/roc-lang">Roc at Handmade Seattle</a> - November 12,
2021 (very low-level explanation of how Roc's compiler makes programs run fast)</li>
<li><a href="https://youtu.be/vzfy4EKwG_Y">Outperforming Imperative with Pure Functional Languages</a> - October 1,
2021 (about Roc's runtime performance and optimizer)</li>
<li><a href="https://youtu.be/6qzWm_eoUXM">A taste of Roc</a> - September 23, 2021 (syntax, application examples)
</li>
<li><a href="https://youtu.be/cpQwtwVKAfU?t=75">Roc at the Philly ETE conference</a> - May 6, 2021 (platforms and
applications)</li>
<li><a href="https://youtu.be/FMyyYdFSOHA">Roc on Zig Showtime</a> - April 24, 2021 (making a platform)</li>
<li><a href="https://youtu.be/ZnYa99QoznE?t=4790">Roc at the Berlin FP Meetup</a> - September 1, 2020 (overall
vision for the language)</li>
</ul>
<p>To set clear expectations around Roc's readiness for serious use - it's not ready yet! - the repository where it's
developed is private for now.</p>
<p>Anyone can get access to the repo <a href="https://www.youtube.com/watch?v=6qzWm_eoUXM&t=4353s">in this way</a>, or
you can download a zip of <a href="roc-source-code.zip">the source code</a>, although the zip isn't updated very
often and is
definitely behind what's in the repo.</p>
</body>
</html>