Skip to content
Merged
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
2 changes: 1 addition & 1 deletion config.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
base_url = "https://pulseengine.eu"
title = "PulseEngine"
description = "The formally verified WebAssembly Component Model engine for safety-critical systems"
description = "The formally verified WebAssembly Component Model engine for safety-critical systems. Static fusion, verified optimization, and supply chain attestation in Rust."
default_language = "en"
compile_sass = true
build_search_index = false
Expand Down
24 changes: 22 additions & 2 deletions static/og-image-generator.html
Original file line number Diff line number Diff line change
Expand Up @@ -49,13 +49,31 @@
margin-bottom: 24px;
}
.accent { color: #6c8cff; }
.headline {
font-size: 32px;
font-weight: 600;
color: #e1e4ed;
margin-bottom: 20px;
letter-spacing: -0.5px;
}
.subtitle {
font-size: 28px;
font-size: 24px;
font-weight: 400;
color: #8b90a0;
line-height: 1.4;
max-width: 800px;
margin: 0 auto;
margin-bottom: 32px;
}
.cta {
display: inline-block;
font-size: 18px;
font-weight: 600;
color: #0f1117;
background: #6c8cff;
padding: 10px 28px;
border-radius: 6px;
letter-spacing: 0.5px;
}
.url {
position: absolute;
Expand All @@ -76,7 +94,9 @@
<body>
<div class="content">
<div class="title">Pulse<span class="accent">Engine</span></div>
<div class="subtitle">Formally verified WebAssembly for safety-critical systems</div>
<div class="headline">Formally Verified WebAssembly for Safety-Critical Systems</div>
<div class="subtitle">Rust toolchain — static fusion, verified optimization, supply chain attestation</div>
<div class="cta">Explore the toolchain →</div>
</div>
<div class="url">pulseengine.eu</div>
</body>
Expand Down
Binary file modified static/og-image.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
<meta property="og:url" content="{{ section.permalink }}">
{% else %}
<meta property="og:type" content="website">
<meta property="og:title" content="{{ config.title }}">
<meta property="og:title" content="{{ config.title }} — Formally Verified WebAssembly for Safety-Critical Systems">
<meta property="og:description" content="{{ config.description }}">
<meta property="og:url" content="{{ config.base_url }}">
{% endif %}
Expand All @@ -50,7 +50,7 @@
<meta name="twitter:title" content="{{ section.title }}">
<meta name="twitter:description" content="{{ section.description | default(value=config.description) }}">
{% else %}
<meta name="twitter:title" content="{{ config.title }}">
<meta name="twitter:title" content="{{ config.title }} — Formally Verified WebAssembly for Safety-Critical Systems">
<meta name="twitter:description" content="{{ config.description }}">
{% endif %}
<meta name="twitter:image" content="{{ config.base_url }}/og-image.png">
Expand Down
Loading