├── .gitignore ├── Dockerfile ├── README.md ├── components.json ├── eslint.config.mjs ├── fly.toml ├── next.config.ts ├── package.json ├── pnpm-lock.yaml ├── postcss.config.mjs ├── src ├── app │ ├── favicon.ico │ ├── globals.css │ ├── layout.tsx │ ├── opengraph-image.png │ └── page.tsx ├── components │ ├── CPUCoreGrid.tsx │ ├── CurrentUsage.tsx │ ├── CustomTooltip.tsx │ ├── LoadingSkeleton.tsx │ ├── Logo.tsx │ ├── MetricCard.tsx │ ├── MetricChart.tsx │ ├── NodeCard.tsx │ ├── StatusDashboard.tsx │ ├── SystemInfo.tsx │ ├── TimeScaleContext.tsx │ ├── TimeScaleSelector.tsx │ └── ui │ │ ├── alert.tsx │ │ ├── badge.tsx │ │ ├── card.tsx │ │ ├── navigation-menu.tsx │ │ ├── skeleton.tsx │ │ └── tooltip.tsx └── lib │ ├── hooks.ts │ ├── types.ts │ └── utils.ts ├── tailwind.config.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/status/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/status/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/status/HEAD/README.md -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/status/HEAD/components.json -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/status/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /fly.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/status/HEAD/fly.toml -------------------------------------------------------------------------------- /next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/status/HEAD/next.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/status/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/status/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/status/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/status/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/status/HEAD/src/app/globals.css -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/status/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/opengraph-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/status/HEAD/src/app/opengraph-image.png -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/status/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/components/CPUCoreGrid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/status/HEAD/src/components/CPUCoreGrid.tsx -------------------------------------------------------------------------------- /src/components/CurrentUsage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/status/HEAD/src/components/CurrentUsage.tsx -------------------------------------------------------------------------------- /src/components/CustomTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/status/HEAD/src/components/CustomTooltip.tsx -------------------------------------------------------------------------------- /src/components/LoadingSkeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/status/HEAD/src/components/LoadingSkeleton.tsx -------------------------------------------------------------------------------- /src/components/Logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/status/HEAD/src/components/Logo.tsx -------------------------------------------------------------------------------- /src/components/MetricCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/status/HEAD/src/components/MetricCard.tsx -------------------------------------------------------------------------------- /src/components/MetricChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/status/HEAD/src/components/MetricChart.tsx -------------------------------------------------------------------------------- /src/components/NodeCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/status/HEAD/src/components/NodeCard.tsx -------------------------------------------------------------------------------- /src/components/StatusDashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/status/HEAD/src/components/StatusDashboard.tsx -------------------------------------------------------------------------------- /src/components/SystemInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/status/HEAD/src/components/SystemInfo.tsx -------------------------------------------------------------------------------- /src/components/TimeScaleContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/status/HEAD/src/components/TimeScaleContext.tsx -------------------------------------------------------------------------------- /src/components/TimeScaleSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/status/HEAD/src/components/TimeScaleSelector.tsx -------------------------------------------------------------------------------- /src/components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/status/HEAD/src/components/ui/alert.tsx -------------------------------------------------------------------------------- /src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/status/HEAD/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/status/HEAD/src/components/ui/card.tsx -------------------------------------------------------------------------------- /src/components/ui/navigation-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/status/HEAD/src/components/ui/navigation-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/status/HEAD/src/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /src/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/status/HEAD/src/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /src/lib/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/status/HEAD/src/lib/hooks.ts -------------------------------------------------------------------------------- /src/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/status/HEAD/src/lib/types.ts -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/status/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/status/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyrohost/status/HEAD/tsconfig.json --------------------------------------------------------------------------------