Skip to content

Commit 30417f4

Browse files
committed
Switched from AI icons to icons composed from fluent-icon and twemoji and changed output dir structure
1 parent b2dfef3 commit 30417f4

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

85 files changed

+281
-89
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,12 @@ jobs:
3333
PARCEL_WORKER_BACKEND: process
3434
run: npm run build
3535

36+
# Move pages into root of build folder
37+
- name: Move pages
38+
run: |
39+
mv dist/4XX/*.html ./
40+
mv dist/5XX/*.html ./
41+
3642
# Deploy to GitHub Pages
3743
- name: Deploy to GitHub Pages
3844
uses: JamesIves/github-pages-deploy-action@v4

README.md

Lines changed: 48 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -14,52 +14,55 @@ Here's a list of all available error pages and their demo links:
1414

1515
| Error Code | Page Name | Description | Demo Link | Custom Icon? |
1616
| ---------- | ---------- | ------------------------------- | ---------------------------------------------------------------------- | ------------- |
17-
| `400` | `400.html` | Bad Request | [Demo 400](https://tobidi0410.github.io/error-pages/4XX/http-400.html) ||
18-
| `401` | `401.html` | Unauthorized | [Demo 401](https://tobidi0410.github.io/error-pages/4XX/http-401.html) ||
19-
| `402` | `402.html` | Payment Required | [Demo 402](https://tobidi0410.github.io/error-pages/4XX/http-402.html) ||
20-
| `403` | `403.html` | Forbidden | [Demo 403](https://tobidi0410.github.io/error-pages/4XX/http-403.html) ||
21-
| `404` | `404.html` | Not Found | [Demo 404](https://tobidi0410.github.io/error-pages/4XX/http-404.html) ||
22-
| `405` | `405.html` | Method Not Allowed | [Demo 405](https://tobidi0410.github.io/error-pages/4XX/http-405.html) ||
23-
| `406` | `406.html` | Not Acceptable | [Demo 406](https://tobidi0410.github.io/error-pages/4XX/http-406.html) | |
24-
| `407` | `407.html` | Proxy Authentication Required | [Demo 407](https://tobidi0410.github.io/error-pages/4XX/http-407.html) ||
25-
| `408` | `408.html` | Request Timeout | [Demo 408](https://tobidi0410.github.io/error-pages/4XX/http-408.html) ||
26-
| `409` | `409.html` | Conflict | [Demo 409](https://tobidi0410.github.io/error-pages/4XX/http-409.html) ||
27-
| `410` | `410.html` | Gone | [Demo 410](https://tobidi0410.github.io/error-pages/4XX/http-410.html) ||
28-
| `411` | `411.html` | Length Required | [Demo 411](https://tobidi0410.github.io/error-pages/4XX/http-411.html) ||
29-
| `412` | `412.html` | Precondition Failed | [Demo 412](https://tobidi0410.github.io/error-pages/4XX/http-412.html) ||
30-
| `413` | `413.html` | Payload Too Large | [Demo 413](https://tobidi0410.github.io/error-pages/4XX/http-413.html) ||
31-
| `414` | `414.html` | URI Too Long | [Demo 414](https://tobidi0410.github.io/error-pages/4XX/http-414.html) ||
32-
| `415` | `415.html` | Unsupported Media Type | [Demo 415](https://tobidi0410.github.io/error-pages/4XX/http-415.html) | ❌ |1
33-
| `416` | `416.html` | Range Not Satisfiable | [Demo 416](https://tobidi0410.github.io/error-pages/4XX/http-416.html) ||
34-
| `417` | `417.html` | Expectation Failed | [Demo 417](https://tobidi0410.github.io/error-pages/4XX/http-417.html) ||
35-
| `418` | `418.html` | I'm a teapot | [Demo 418](https://tobidi0410.github.io/error-pages/4XX/http-418.html) | |
36-
| `419` | `419.html` | Authentication Timeout | [Demo 419](https://tobidi0410.github.io/error-pages/4XX/http-419.html) ||
37-
| `420` | `420.html` | Method Failure | [Demo 420](https://tobidi0410.github.io/error-pages/4XX/http-420.html) ||
38-
| `421` | `421.html` | Misdirected Request | [Demo 421](https://tobidi0410.github.io/error-pages/4XX/http-421.html) ||
39-
| `422` | `422.html` | Unprocessable Entity | [Demo 422](https://tobidi0410.github.io/error-pages/4XX/http-422.html) ||
40-
| `423` | `423.html` | Locked | [Demo 423](https://tobidi0410.github.io/error-pages/4XX/http-423.html) ||
41-
| `424` | `424.html` | Failed Dependency | [Demo 424](https://tobidi0410.github.io/error-pages/4XX/http-424.html) ||
42-
| `425` | `425.html` | Too Early | [Demo 425](https://tobidi0410.github.io/error-pages/4XX/http-425.html) ||
43-
| `426` | `426.html` | Upgrade Required | [Demo 426](https://tobidi0410.github.io/error-pages/4XX/http-426.html) ||
44-
| `427` | `427.html` | Unassigned | [Demo 427](https://tobidi0410.github.io/error-pages/4XX/http-427.html) ||
45-
| `428` | `428.html` | Precondition Required | [Demo 428](https://tobidi0410.github.io/error-pages/4XX/http-428.html) ||
46-
| `429` | `429.html` | Too Many Requests | [Demo 429](https://tobidi0410.github.io/error-pages/4XX/http-429.html) ||
47-
| `430` | `430.html` | Unassigned | [Demo 430](https://tobidi0410.github.io/error-pages/4XX/http-430.html) ||
48-
| `500` | `500.html` | Internal Server Error | [Demo 500](https://tobidi0410.github.io/error-pages/5XX/http-500.html) ||
49-
| `501` | `501.html` | Not Implemented | [Demo 501](https://tobidi0410.github.io/error-pages/5XX/http-501.html) ||
50-
| `502` | `502.html` | Bad Gateway | [Demo 502](https://tobidi0410.github.io/error-pages/5XX/http-502.html) | |
51-
| `503` | `503.html` | Service Unavailable | [Demo 503](https://tobidi0410.github.io/error-pages/5XX/http-503.html) ||
52-
| `504` | `504.html` | Gateway Timeout | [Demo 504](https://tobidi0410.github.io/error-pages/5XX/http-504.html) ||
53-
| `505` | `505.html` | HTTP Version Not Supported | [Demo 505](https://tobidi0410.github.io/error-pages/5XX/http-505.html) ||
54-
| `506` | `506.html` | Variant Also Negotiates | [Demo 506](https://tobidi0410.github.io/error-pages/5XX/http-506.html) ||
55-
| `507` | `507.html` | Insufficient Storage | [Demo 507](https://tobidi0410.github.io/error-pages/5XX/http-507.html) ||
56-
| `508` | `508.html` | Loop Detected | [Demo 508](https://tobidi0410.github.io/error-pages/5XX/http-508.html) ||
57-
| `509` | `509.html` | Bandwidth Limit Exceeded | [Demo 509](https://tobidi0410.github.io/error-pages/5XX/http-509.html) ||
58-
| `510` | `510.html` | Not Extended | [Demo 510](https://tobidi0410.github.io/error-pages/5XX/http-510.html) ||
59-
| `511` | `511.html` | Network Authentication Required | [Demo 511](https://tobidi0410.github.io/error-pages/5XX/http-511.html) ||
17+
| `400` | `400.html` | Bad Request | [Demo 400](https://tobidi0410.github.io/error-pages/http-400.html) ||
18+
| `401` | `401.html` | Unauthorized | [Demo 401](https://tobidi0410.github.io/error-pages/http-401.html) ||
19+
| `402` | `402.html` | Payment Required | [Demo 402](https://tobidi0410.github.io/error-pages/http-402.html) ||
20+
| `403` | `403.html` | Forbidden | [Demo 403](https://tobidi0410.github.io/error-pages/http-403.html) ||
21+
| `404` | `404.html` | Not Found | [Demo 404](https://tobidi0410.github.io/error-pages/http-404.html) ||
22+
| `405` | `405.html` | Method Not Allowed | [Demo 405](https://tobidi0410.github.io/error-pages/http-405.html) ||
23+
| `406` | `406.html` | Not Acceptable | [Demo 406](https://tobidi0410.github.io/error-pages/http-406.html) | |
24+
| `407` | `407.html` | Proxy Authentication Required | [Demo 407](https://tobidi0410.github.io/error-pages/http-407.html) ||
25+
| `408` | `408.html` | Request Timeout | [Demo 408](https://tobidi0410.github.io/error-pages/http-408.html) ||
26+
| `409` | `409.html` | Conflict | [Demo 409](https://tobidi0410.github.io/error-pages/http-409.html) ||
27+
| `410` | `410.html` | Gone | [Demo 410](https://tobidi0410.github.io/error-pages/http-410.html) ||
28+
| `411` | `411.html` | Length Required | [Demo 411](https://tobidi0410.github.io/error-pages/http-411.html) ||
29+
| `412` | `412.html` | Precondition Failed | [Demo 412](https://tobidi0410.github.io/error-pages/http-412.html) ||
30+
| `413` | `413.html` | Payload Too Large | [Demo 413](https://tobidi0410.github.io/error-pages/http-413.html) ||
31+
| `414` | `414.html` | URI Too Long | [Demo 414](https://tobidi0410.github.io/error-pages/http-414.html) ||
32+
| `415` | `415.html` | Unsupported Media Type | [Demo 415](https://tobidi0410.github.io/error-pages/http-415.html) ||
33+
| `416` | `416.html` | Range Not Satisfiable | [Demo 416](https://tobidi0410.github.io/error-pages/http-416.html) ||
34+
| `417` | `417.html` | Expectation Failed | [Demo 417](https://tobidi0410.github.io/error-pages/http-417.html) ||
35+
| `418` | `418.html` | I'm a teapot | [Demo 418](https://tobidi0410.github.io/error-pages/http-418.html) | |
36+
| `419` | `419.html` | Authentication Timeout | [Demo 419](https://tobidi0410.github.io/error-pages/http-419.html) ||
37+
| `420` | `420.html` | Method Failure | [Demo 420](https://tobidi0410.github.io/error-pages/http-420.html) ||
38+
| `421` | `421.html` | Misdirected Request | [Demo 421](https://tobidi0410.github.io/error-pages/http-421.html) ||
39+
| `422` | `422.html` | Unprocessable Entity | [Demo 422](https://tobidi0410.github.io/error-pages/http-422.html) ||
40+
| `423` | `423.html` | Locked | [Demo 423](https://tobidi0410.github.io/error-pages/http-423.html) ||
41+
| `424` | `424.html` | Failed Dependency | [Demo 424](https://tobidi0410.github.io/error-pages/http-424.html) ||
42+
| `425` | `425.html` | Too Early | [Demo 425](https://tobidi0410.github.io/error-pages/http-425.html) ||
43+
| `426` | `426.html` | Upgrade Required | [Demo 426](https://tobidi0410.github.io/error-pages/http-426.html) ||
44+
| `427` | `427.html` | Unassigned | [Demo 427](https://tobidi0410.github.io/error-pages/http-427.html) ||
45+
| `428` | `428.html` | Precondition Required | [Demo 428](https://tobidi0410.github.io/error-pages/http-428.html) ||
46+
| `429` | `429.html` | Too Many Requests | [Demo 429](https://tobidi0410.github.io/error-pages/http-429.html) ||
47+
| `430` | `430.html` | Unassigned | [Demo 430](https://tobidi0410.github.io/error-pages/http-430.html) ||
48+
| `500` | `500.html` | Internal Server Error | [Demo 500](https://tobidi0410.github.io/error-pages/http-500.html) ||
49+
| `501` | `501.html` | Not Implemented | [Demo 501](https://tobidi0410.github.io/error-pages/http-501.html) ||
50+
| `502` | `502.html` | Bad Gateway | [Demo 502](https://tobidi0410.github.io/error-pages/http-502.html) | |
51+
| `503` | `503.html` | Service Unavailable | [Demo 503](https://tobidi0410.github.io/error-pages/http-503.html) ||
52+
| `504` | `504.html` | Gateway Timeout | [Demo 504](https://tobidi0410.github.io/error-pages/http-504.html) ||
53+
| `505` | `505.html` | HTTP Version Not Supported | [Demo 505](https://tobidi0410.github.io/error-pages/http-505.html) ||
54+
| `506` | `506.html` | Variant Also Negotiates | [Demo 506](https://tobidi0410.github.io/error-pages/http-506.html) ||
55+
| `507` | `507.html` | Insufficient Storage | [Demo 507](https://tobidi0410.github.io/error-pages/http-507.html) ||
56+
| `508` | `508.html` | Loop Detected | [Demo 508](https://tobidi0410.github.io/error-pages/http-508.html) ||
57+
| `509` | `509.html` | Bandwidth Limit Exceeded | [Demo 509](https://tobidi0410.github.io/error-pages/http-509.html) ||
58+
| `510` | `510.html` | Not Extended | [Demo 510](https://tobidi0410.github.io/error-pages/http-510.html) ||
59+
| `511` | `511.html` | Network Authentication Required | [Demo 511](https://tobidi0410.github.io/error-pages/http-511.html) ||
6060

6161
---
6262

63+
## 📝 License & Attribution
64+
- [Twemoji](https://github.com/twitter/twemoji) — by Twitter — [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/)
65+
- [Fluent System Icons](https://github.com/microsoft/fluentui-system-icons) — by Microsoft — [MIT](https://opensource.org/licenses/MIT)
66+
6367
## 🤖 AI Disclaimer
64-
Some error descriptions, advice, and explanations in this repository are generated by artificial intelligence.
65-
All images and icons are generated using Bing Image Creator.
68+
Some error descriptions, advice, and explanations in this repository are generated by artificial intelligence.

0 commit comments

Comments
 (0)