Skip to content

Commit 04cb3bf

Browse files
authored
Merge pull request #81 from celestiaorg/feature/remove-faq-page
Removed faq page and related links
2 parents 27398d3 + 69d672f commit 04cb3bf

File tree

4 files changed

+13
-148
lines changed

4 files changed

+13
-148
lines changed

src/app/faq/page.js

-32
This file was deleted.

src/data/faq/faqs.js

-92
This file was deleted.

src/data/faq/seo.js

-7
This file was deleted.

src/data/global/footer.js

+13-17
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
import XTwitterSVG from "@/macros/SVGs/XTwitterSVG";
21
import DiscordSVG from "@/macros/SVGs/DiscordSVG";
3-
import TelegramSVG from "@/macros/SVGs/TelegramSVG";
4-
import RedditSVG from "@/macros/SVGs/RedditSVG";
5-
import GithubSVG from "@/macros/SVGs/GithubSVG";
62
import ForumSVG from "@/macros/SVGs/ForumSVG";
3+
import GithubSVG from "@/macros/SVGs/GithubSVG";
4+
import RedditSVG from "@/macros/SVGs/RedditSVG";
5+
import TelegramSVG from "@/macros/SVGs/TelegramSVG";
6+
import XTwitterSVG from "@/macros/SVGs/XTwitterSVG";
77

88
const footerData = () => {
99
const columns = [
@@ -21,10 +21,6 @@ const footerData = () => {
2121
title: "GitHub",
2222
url: "https://github.com/celestiaorg",
2323
},
24-
{
25-
title: "FAQ",
26-
url: "/faq",
27-
},
2824
],
2925
},
3026
{
@@ -68,35 +64,35 @@ const footerData = () => {
6864
{
6965
title: "X (Twitter)",
7066
url: "https://x.com/celestia",
71-
icon: XTwitterSVG
67+
icon: XTwitterSVG,
7268
},
7369
{
7470
title: "Discord",
7571
url: "https://discord.com/invite/YsnTPcSfWQ",
76-
icon: DiscordSVG
72+
icon: DiscordSVG,
7773
},
7874
{
7975
title: "Telegram",
8076
url: "https://t.me/CelestiaCommunity/",
81-
icon: TelegramSVG
77+
icon: TelegramSVG,
8278
},
8379
{
8480
title: "Reddit",
8581
url: "https://www.reddit.com/r/CelestiaNetwork/",
86-
icon: RedditSVG
82+
icon: RedditSVG,
8783
},
8884
{
8985
title: "GitHub",
9086
url: "https://github.com/celestiaorg/",
91-
icon: GithubSVG
87+
icon: GithubSVG,
9288
},
9389
{
9490
title: "Forum",
9591
url: "https://forum.celestia.org/",
96-
icon: ForumSVG
97-
}
98-
]
99-
}
92+
icon: ForumSVG,
93+
},
94+
],
95+
},
10096
];
10197

10298
return columns;

0 commit comments

Comments
 (0)