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
3 changes: 3 additions & 0 deletions PROJECT_STATUS.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ maintenance-first support.

## Timeline

- **2026-07-31:** Added locally verified Open Graph/Twitter image metadata and
SoftwareApplication structured data to the public landing layout; production
deployment remains separate.
- **2026-07-29:** Added an owned `/changelog` with verified release outcomes and
direct GitHub Roadmap and Source links.
- **2026-07-13:** Shipped authenticated RSS/Atom reading and OPML import.
Expand Down
15 changes: 15 additions & 0 deletions landing-astro/src/layouts/Layout.astro
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,25 @@ const SITE_URL = 'https://read.significanthobbies.com';
<meta property="og:site_name" content="Library Reader" />
<meta property="og:title" content={title} />
<meta property="og:description" content={description} />
<meta property="og:image" content={`${SITE_URL}/icon.svg`} />

<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content={title} />
<meta name="twitter:description" content={description} />
<meta name="twitter:image" content={`${SITE_URL}/icon.svg`} />
<script
is:inline
type="application/ld+json"
set:html={JSON.stringify({
'@context': 'https://schema.org',
'@type': 'SoftwareApplication',
name: 'Library Reader',
url: SITE_URL,
description,
applicationCategory: 'ProductivityApplication',
operatingSystem: 'Web',
})}
/>
</head>
<body class="antialiased">
<slot />
Expand Down
2 changes: 1 addition & 1 deletion public/api-ai.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
{
"id": "login",
"url": "https://read.significanthobbies.com/login",
"md": null,
"md": "https://read.significanthobbies.com/login.md",
"kind": "static",
"description": "Sign in"
}
Expand Down
11 changes: 11 additions & 0 deletions public/login.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Sign in to Reader

Reader uses Google sign-in to open a private research library.

## Privacy boundary

- Saved articles, PDFs, highlights, notes, lists, boards, and AI conversations are private.
- This public page explains the sign-in boundary; it does not expose account data.
- Personal library routes are intentionally excluded from the public sitemap and agent catalog.

Sign in: https://read.significanthobbies.com/login
1 change: 0 additions & 1 deletion public/sitemap.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url><loc>https://read.significanthobbies.com/</loc></url>
<url><loc>https://read.significanthobbies.com/api/ai</loc></url>
<url><loc>https://read.significanthobbies.com/index.md</loc></url>
<url><loc>https://read.significanthobbies.com/llms.txt</loc></url>
<url><loc>https://read.significanthobbies.com/login</loc></url>
Expand Down
2 changes: 1 addition & 1 deletion src/agent-edge.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export const AGENT_SURFACE = {
{
"id": "login",
"url": "https://read.significanthobbies.com/login",
"md": null,
"md": "https://read.significanthobbies.com/login.md",
"kind": "static",
"description": "Sign in"
}
Expand Down