Logo Lanfrica

godwillmakeaday/africa-institutional-intelligence-desk

Domaine:

socioeconomic

Type de record:

software
Créateur:
god
Hôte:
# Africa Record Desk **A source-mapped institutional signals platform.** Africa Record Desk organizes public-facing records, notices, gazettes, regulatory updates, procurement signals, land notices, court-adjacent information, and policy movements into structured briefs. Nigeria-first, with the continent on the roadmap. > **We do not claim ownership over public information.** Public documents, official > notices, gazettes, court lists, regulations, and government publications remain the > property of their original public authorities or lawful publishers. The platform's > value is classification, source mapping, jurisdiction mapping, risk labelling, > summaries, alerts, and professional briefings. > **Demonstration build.** All records shown are sample / demonstration records, driven > by the `DEMO_MODE` flag in `src/config.js`. Set `DEMO_MODE = false` to remove all > demonstration labelling in one place at launch. --- ## Stack - **Vite** + **React 18** with **React Router** - **Tailwind CSS** - Local data in `src/data/intelligenceItems.js` - **Build-time prerendering** for indexability (see below) ## Run & build ```bash npm install npm run dev # dev server npm run build # client build + SSR build + prerender (full, indexable output) npm run build:client # client-only build (no prerender), if needed npm run preview # preview the built site ``` ## Indexability (server-rendered pages, JSON-LD, sitemap) `npm run build` runs three steps: a client build, an SSR build (`src/entry-server.jsx`), and `scripts/prerender.mjs`. The prerender renders **every route — and every `/brief/ ` record — to its own static HTML file** under `dist/`, each with a route-specific ` `, description, canonical, and OpenGraph/Twitter tags. Brief pages also carry **JSON-LD (`Report` schema)** built from the record fields (jurisdiction, source type, ref, filed date, sectors, risk, status, verification). A **`sitemap.xml`** is generated for all routes. - The desk/lis …