AI intelligence for the age of space — telemetry anomaly detection, debris prediction, and mission planning for the next generation of spacecraft operations.
Live: dsremo.com
dsremo.com is the public-facing site for dsremo — a one-person studio building AI tooling for spacecraft operators. The site is split into two halves:
- The studio — what's being built, what's live, how to get in touch.
- A space + Vedic-astronomy reading room — long-form pages on missions, pioneers, cosmology, Vedic mathematics and slokas. Built as a public commonplace book rather than a product feature.
It's a fully static Next.js site (no API routes, no server). The whole thing compiles to plain HTML/CSS/JS and serves from a CDN.
| Layer | Choice |
|---|---|
| Framework | Next.js 16 (App Router, static export) |
| UI | React 19 + TypeScript 5.9 |
| Styling | Tailwind CSS 3.4 + styled-jsx |
| Icons | lucide-react |
| Tests | Jest + @testing-library/react |
| Lint | ESLint (eslint-config-next) |
| Hosting | Static export → CDN |
next.config.js sets output: 'export' and trailingSlash: true, so npm run build produces a self-contained out/ directory that drops straight onto any static host.
/— home / overview/products— current products and prototypes/about— background, who's behind it/contact— get in touch/resources— curated space resources (agencies, telescopes, datasets, tools)
/cosmos— cosmos overview/missions— mission profiles (dynamic[slug]routes)/pioneers— pioneer profiles (dynamic[slug]routes)
Long-form pages on classical Indian astronomy, mathematics, and cosmology.
/vedic— index/vedic/astronomy·/vedic/cosmology·/vedic/cosmogenesis/vedic/mathematics·/vedic/slokas/vedic/cosmic-calendar·/vedic/celestial-events/vedic/body-cosmos·/vedic/corroboration·/vedic/inspiration
Requires Node.js 20+ and npm.
git clone https://github.com/dsremo/dsremo-website.git
cd dsremo-website
npm install
npm run dev # serves on http://localhost:3001Other scripts:
npm run build # static export → ./out/
npm test # jest unit tests
npm run lint # ESLint.
├── src/
│ ├── app/ # Next.js App Router pages (one folder per route)
│ │ ├── cosmos/ # Space content
│ │ ├── missions/
│ │ ├── pioneers/
│ │ ├── vedic/ # Vedic reading room
│ │ ├── products/ # Studio pages
│ │ ├── about/
│ │ ├── contact/
│ │ └── resources/
│ ├── components/ # Shared UI — Nav, Footer, StarField, NasaImage, etc.
│ ├── lib/ # Utility helpers
│ └── __tests__/ # Jest tests
├── public/ # Static assets (icons, og-image)
├── Resource/ # Source text for Vedic-content pages
├── resources/ # Other source notes
├── next.config.js
├── tailwind.config.js
├── package.json
└── README.md # ← you are here
This is a personal-brand site, so external PRs aren't actively solicited — but if you spot a factual error in a Vedic, mission, or pioneer page, an issue or PR is welcome.
- Site: dsremo.com
- Email: dsremo@gmail.com
- GitHub: @dsremo
MIT © Ashutosh Tiwari