{"id":50759365,"url":"https://github.com/selimdev00/orion","last_synced_at":"2026-06-11T08:30:44.461Z","repository":{"id":361446345,"uuid":"1254492186","full_name":"selimdev00/orion","owner":"selimdev00","description":"Space launches explorer - Next.js 14 App Router, RSC, SpaceX API, URL-driven search/filter, pure SCSS (no Tailwind)","archived":false,"fork":false,"pushed_at":"2026-05-30T16:36:46.000Z","size":920,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-05-30T18:14:41.936Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/selimdev00.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-05-30T16:25:40.000Z","updated_at":"2026-05-30T16:36:50.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/selimdev00/orion","commit_stats":null,"previous_names":["selimdev00/orion"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/selimdev00/orion","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/selimdev00%2Forion","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/selimdev00%2Forion/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/selimdev00%2Forion/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/selimdev00%2Forion/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/selimdev00","download_url":"https://codeload.github.com/selimdev00/orion/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/selimdev00%2Forion/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34190582,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-11T02:00:06.485Z","response_time":57,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-06-11T08:30:43.687Z","updated_at":"2026-06-11T08:30:44.448Z","avatar_url":"https://github.com/selimdev00.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Orion - Space Launches Explorer\n\nA small Next.js 14 web app that lets you browse, search and filter every SpaceX\nlaunch. Animated landing page, a filterable launch list, and a detail view for\neach mission with rocket specs, links and a photo gallery.\n\nBuilt as a portfolio piece focused on the App Router, React Server Components,\nand a set of lightweight CSS / SVG animations.\n\n## Stack\n\n- **Next.js 14** (App Router, pinned to `14.2.x`) + **React 18**\n- **TypeScript** (strict mode)\n- **SCSS modules** (`*.module.scss`) plus a global `src/app/globals.scss` for\n  design tokens and reset\n- **No Tailwind, no CSS framework, no UI kit** - everything is hand-written\n  SCSS using CSS custom properties as the token layer\n- ESLint (`eslint-config-next`) + Prettier\n\n## Data source\n\nPublic **SpaceX API v4** (`https://api.spacexdata.com/v4`) - no API key\nrequired. Data is fetched in Server Components with Next.js ISR\n(`next: { revalidate: 3600 }`), so pages render as static-ish HTML and refresh\nhourly. The list page uses the `POST /launches/query` endpoint for server-side\nsearch, filtering and pagination.\n\nOrion is an independent project and is not affiliated with SpaceX.\n\n## Routes\n\n| Route             | Type    | What it does                                                                                |\n| ----------------- | ------- | ------------------------------------------------------------------------------------------- |\n| `/`               | Static  | Animated landing: SVG starfield + orbit, intro steps, latest launch, count-up stats         |\n| `/launches`       | Dynamic | Launch grid; search / status / year filters + pagination, all in the URL                    |\n| `/launches/[id]`  | SSG     | Mission detail: patch, rocket, links, failures, Flickr gallery; dynamic metadata, 12 recent ids pre-rendered |\n\nEach route segment ships its own `loading.tsx` (shimmer skeletons) and error /\nnot-found handling.\n\n## Animations\n\nCSS keyframes and SVG drive all motion - twinkling starfield, rotating orbit\nrings with a satellite on an `animateMotion` path, scroll-reveal fade/slide\n(custom IntersectionObserver hook), SVG path-draw connector, count-up stats,\ncard hovers and loading shimmers. Everything is guarded by\n`prefers-reduced-motion`.\n\n## Getting started\n\n```bash\nnpm install      # Node 22\nnpm run build    # production build (exercises generateStaticParams + RSC fetches)\nnpm run start    # serve the production build\nnpm run lint     # eslint\nnpm run format   # prettier --write\n```\n\n\u003e Note: the project is verified with `npm run build`.\n\n## Project structure\n\n```\nsrc/\n  app/\n    layout.tsx            # root layout: header + footer shell\n    page.tsx              # landing page (RSC)\n    launches/\n      page.tsx            # list (reads searchParams, POST /launches/query)\n      loading.tsx         # skeleton grid\n      error.tsx           # error boundary with retry\n      [id]/\n        page.tsx          # detail + generateMetadata + generateStaticParams\n        loading.tsx\n        not-found.tsx\n  components/\n    landing/              # Hero, Starfield, Orbit, IntroSteps, LatestLaunch, Stats, CountUp\n    launches/             # Filters, Pagination, Gallery\n    Header / Footer / LaunchCard / StatusBadge / Reveal\n  hooks/useReveal.ts      # IntersectionObserver scroll-reveal\n  lib/\n    spacex.ts             # typed SpaceX API client + interfaces\n    format.ts             # date helpers\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fselimdev00%2Forion","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fselimdev00%2Forion","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fselimdev00%2Forion/lists"}