diff options
author | Mitya Selivanov <automainint@guattari.tech> | 2025-03-09 12:13:37 +0100 |
---|---|---|
committer | Mitya Selivanov <automainint@guattari.tech> | 2025-03-09 12:13:37 +0100 |
commit | 4333359de7d637667ddd61e6aeebc034429199a1 (patch) | |
tree | eab0c4fe39fff3bda0e63336b5e0298792e6edb6 | |
parent | 0d145eb824f964421454bcd94c35659e8d8114f5 (diff) | |
download | cgi-4333359de7d637667ddd61e6aeebc034429199a1.zip |
Add X; Fix Manifold link
-rwxr-xr-x | main.c | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -463,7 +463,10 @@ static Redirect redirects[] = { .url = "https://discord.gg/jstDS8x", }, { .alias = "/twitter", - .url = "https://twitter.com/angsthotep", + .url = "https://x.com/angsthotep", + }, { + .alias = "/x", + .url = "https://x.com/angsthotep", }, { .alias = "/linkedin", .url = "https://linkedin.com/in/guattari", @@ -1959,7 +1962,6 @@ static Doc docs[NUM_DOCS] = { .action = ACTION_BLANK, .href = "/manifold", }, { - .width = 600, .text = "Manifold", }, { .type = TAG_END, @@ -2132,9 +2134,9 @@ static Doc docs[NUM_DOCS] = { }, { .type = TAG_BEGIN, .action = ACTION_BLANK, - .href = "/twitter", + .href = "/x", }, { - .text = "Twitter", + .text = "X", }, { .type = TAG_END, }, { |