Skip to content

Commit fdce8ca

Browse files
committed
Logo and social sharing metadata
1 parent 2eea553 commit fdce8ca

File tree

2 files changed

+228
-1
lines changed

2 files changed

+228
-1
lines changed

index.html

+25-1
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,38 @@
44
<head>
55
<title>Nix Reproducible Builds</title>
66
<link rel="stylesheet" href="styles/index.css">
7+
<meta property="og:image" content="nixos-rb-logo.svg">
8+
<meta property="og:title" content="Nix Reproducible Builds">
9+
<meta property="og:description" content="Reproducible Builds allow us to have independently-verifiable binaries. This page summarizes the Nix project's progress towards that goal.">
710
<style>
811
body {
912
padding: 3em;
1013
}
14+
#heading {
15+
width: auto;
16+
margin-left: auto;
17+
margin-right: auto;
18+
}
19+
#logo {
20+
height: 14em;
21+
}
22+
h1 {
23+
font-size: 300%;
24+
color: #1e5b96ff;
25+
}
1126
</style>
1227
</head>
1328
<body>
14-
<h1>Nix Reproducible Builds</h1>
29+
<table id="heading"><tr>
30+
<td><img id="logo" src="nixos-rb-logo.svg"></td>
31+
<td><h1>Nix<br>Reproducible Builds</h1></td>
32+
</tr></table>
33+
<p>
34+
When compiling from the same source on independent infrastructure
35+
yields bit-by-bit idential results, this gives confidence that
36+
the build infrastructure was not compromised and the artifact really
37+
does correspond to the source.
38+
</p>
1539
<p>
1640
Because a Nix derivation has deterministic references to all
1741
of its dependencies, and the build happens in a sandbox,

nixos-rb-logo.svg

+203
Loading

0 commit comments

Comments
 (0)