diff options
| author | benj <benj@rse8.com> | 2026-04-09 16:10:08 +0800 |
|---|---|---|
| committer | benj <benj@rse8.com> | 2026-04-09 16:10:08 +0800 |
| commit | c041641634650c31e03c70dcad132fd94cb08e63 (patch) | |
| tree | 8f714a6fc0a66b05b2e43afec75808fd29002a42 /landing/data/catalog.toml | |
| parent | 5f56e0eaf8030f78077fc93b441296bb51fe9331 (diff) | |
| download | tidyindex-c041641634650c31e03c70dcad132fd94cb08e63.tar tidyindex-c041641634650c31e03c70dcad132fd94cb08e63.tar.gz tidyindex-c041641634650c31e03c70dcad132fd94cb08e63.tar.bz2 tidyindex-c041641634650c31e03c70dcad132fd94cb08e63.tar.lz tidyindex-c041641634650c31e03c70dcad132fd94cb08e63.tar.xz tidyindex-c041641634650c31e03c70dcad132fd94cb08e63.tar.zst tidyindex-c041641634650c31e03c70dcad132fd94cb08e63.zip | |
Rework landing page with editorial layout, new demo, and LLM CTA
Replaces the generic SaaS template look with a left-aligned editorial
design — Fraunces serif headlines, monospace section markers (§ 01,
§ 02 …), hairline rules, and a quieter palette where the blue earns
its place rather than splashing on every surface.
The hero now leads with a real product demo (§ 01): one IRS 990 dataset
shown in three consumption shapes — a single normalized JSON record, a
JSONL bulk slice, and a token-efficient prose summary — instead of the
old fake-macOS code window. Each shape carries source-link receipts
back to the original filing, which doubles as a credibility signal and
a working illustration of the "every record has a receipt" promise.
§ 03 introduces a coverage widget driven by data/catalog.toml: four
auto-scrolling category windows (securities, government, regulatory,
science) showing 60 hand-picked datasets with seamless CSS-only
infinite-scroll loops, fade masks, hover-pause, and a
prefers-reduced-motion fallback that converts the windows into manually
scrollable lists.
Adds a discoverable /llms.txt at the static root — a markdown-light,
human-readable site description aimed at LLM agents — wired up via
<link rel="alternate"> in <head>, a comment in robots.txt, and a small
mono "for agents · GET /llms.txt →" satellite link sitting directly
under the hero CTA so any agent shallow-scraping the page hits the
machine path immediately.
Other changes: drops the XML format demo and the "promises" ledger
section entirely, swaps hello@ for contact@ across the site, and
renames the bottom CTA to a single-action "Ready when you are. → API
Key" close.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Diffstat (limited to '')
| -rw-r--r-- | landing/data/catalog.toml | 83 |
1 files changed, 83 insertions, 0 deletions
diff --git a/landing/data/catalog.toml b/landing/data/catalog.toml new file mode 100644 index 0000000..3882d68 --- /dev/null +++ b/landing/data/catalog.toml @@ -0,0 +1,83 @@ +# Datasets shown in the § 03 catalog widget on the landing page. +# Each category becomes one scrolling column. Order within a category is +# the order they scroll past, so put recognizable / flagship datasets first. + +[[categories]] +name = "securities & finance" +items = [ + "SEC EDGAR 10-K, 10-Q", + "SEC 13-F holdings", + "SEC Form 4 insiders", + "SEC 13-D/G ownership", + "SEC Form D placements", + "FFIEC HMDA mortgages", + "FDIC call reports", + "NCUA credit unions", + "FINRA BrokerCheck", + "SEC investment advisers", + "CFPB consumer complaints", + "CFPB rate spread data", + "Federal bankruptcy filings", + "FinCEN beneficial ownership", + "Delaware franchise tax", +] + +[[categories]] +name = "government & politics" +items = [ + "USAspending awards", + "FEC campaign finance", + "Federal lobbying (LDA)", + "Congressional votes", + "Congressional bills", + "Federal Register rules", + "FPDS procurement", + "Federal subawards (FSRS)", + "GSA Schedule pricing", + "Foreign agents (FARA)", + "Executive orders", + "Federal IT spending", + "DOJ settlements", + "State lobbying", + "State procurement", +] + +[[categories]] +name = "regulatory & legal" +items = [ + "IRS 990 & 990-PF", + "IRS Form 5500 plans", + "IRS Business Master File", + "SAM.gov registrations", + "OSHA inspections", + "EPA ECHO enforcement", + "PACER federal courts", + "State court records", + "UCC filings", + "Secretary of State (SOS)", + "State medical boards", + "State bar attorneys", + "State contractor licenses", + "ITC trade rulings", + "DEA registrations", +] + +[[categories]] +name = "science, health & IP" +items = [ + "USPTO patent grants", + "USPTO trademarks", + "Patent assignments", + "Copyright registrations", + "NIH RePORTER grants", + "NSF grant awards", + "FDA drug approvals", + "FDA 510(k) devices", + "FDA FAERS adverse events", + "FDA warning letters", + "ClinicalTrials.gov", + "NPI provider registry", + "IPEDS college financials", + "DOE College Scorecard", + "DOE SBIR/STTR awards", +] |
