Skip to content

Commit c9ec21b

Browse files
author
ComputelessComputer
committed
Add screenshot to README and landing page
Add the provided Openbird app screenshot to the README and Astro homepage.
1 parent ba21040 commit c9ec21b

3 files changed

Lines changed: 40 additions & 0 deletions

File tree

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,8 @@ Openbird has four main surfaces:
125125
- Chat: asks questions against your local activity log
126126
- Settings: provider setup, exclusions, retention, pause, and delete controls
127127

128+
![Openbird Today view showing a generated daily review on macOS](./apps/landing/public/openbird-screenshot.png)
129+
128130
## Current State
129131

130132
Openbird is early, but the core loop works:
232 KB
Loading

apps/landing/src/pages/index.astro

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,18 @@ const faqItems = [
8383

8484
</p>
8585

86+
<figure class="product-shot">
87+
<img
88+
src="/openbird-screenshot.png"
89+
alt="Openbird Today view showing a generated daily review timeline on macOS"
90+
loading="eager"
91+
/>
92+
<figcaption>
93+
The Today view turns your local activity log into a grounded daily review you can inspect,
94+
cite, and follow up on.
95+
</figcaption>
96+
</figure>
97+
8698
<h2>At a glance</h2>
8799

88100
<ul>
@@ -159,3 +171,29 @@ const faqItems = [
159171
void resolveLatestDownload();
160172
</script>
161173
</BaseLayout>
174+
175+
<style>
176+
.product-shot {
177+
margin: 28px 0 32px;
178+
padding: 12px;
179+
border: 1px solid var(--line);
180+
border-radius: 18px;
181+
background: linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%);
182+
box-shadow:
183+
0 18px 40px rgba(17, 17, 17, 0.08),
184+
inset 0 1px 0 rgba(255, 255, 255, 0.9);
185+
}
186+
187+
.product-shot img {
188+
width: 100%;
189+
border: 1px solid #dddddd;
190+
border-radius: 12px;
191+
}
192+
193+
.product-shot figcaption {
194+
margin-top: 12px;
195+
margin-bottom: 0;
196+
color: var(--muted);
197+
font-size: 0.92rem;
198+
}
199+
</style>

0 commit comments

Comments
 (0)