From c041641634650c31e03c70dcad132fd94cb08e63 Mon Sep 17 00:00:00 2001 From: benj Date: Thu, 9 Apr 2026 16:10:08 +0800 Subject: Rework landing page with editorial layout, new demo, and LLM CTA MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 in , 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) --- landing/data/catalog.toml | 83 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 83 insertions(+) create mode 100644 landing/data/catalog.toml (limited to 'landing/data') 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", +] -- cgit v1.2.3