@@ -106,18 +102,28 @@ function Body({ children }: { children: ReactNode }): ReactElement {
)
+ const isLearnPage = config.filePath.includes("/learn/")
+
const content = (
<>
{renderComponent(themeContext.topContent)}
{children}
{gitTimestampEl}
{renderComponent(themeContext.bottomContent)}
- {activeType !== "page" && themeContext.pagination && (
-
- )}
+ {activeType !== "page" &&
+ themeContext.pagination &&
+ (isLearnPage ? (
+
+ ) : (
+
+ ))}
>
)
@@ -144,7 +150,8 @@ function Body({ children }: { children: ReactNode }): ReactElement {
diff --git a/src/components/tools-and-libraries.tsx b/src/components/tools-and-libraries.tsx
index 32c617f478..623a3630ef 100644
--- a/src/components/tools-and-libraries.tsx
+++ b/src/components/tools-and-libraries.tsx
@@ -346,7 +346,7 @@ function ToolsAndLibrariesSidebar({
diff --git a/src/pages/community/resources/official-channels.mdx b/src/pages/community/resources/official-channels.mdx
index 192c3e1519..ff165c4be5 100644
--- a/src/pages/community/resources/official-channels.mdx
+++ b/src/pages/community/resources/official-channels.mdx
@@ -68,7 +68,7 @@ Please follow these channels for updates and information:
},
{
icon: TwitterIcon,
- title: "𝕏",
+ title: "x.com",
link: "https://x.com/graphql",
description: "@graphql",
},
diff --git a/src/pages/learn/_meta.ts b/src/pages/learn/_meta.ts
index 29048f6fac..efcc5f53f6 100644
--- a/src/pages/learn/_meta.ts
+++ b/src/pages/learn/_meta.ts
@@ -25,7 +25,7 @@ export default {
type: "separator",
title: "Best Practices",
},
- "best-practices": "",
+ "best-practices": "Introduction",
"thinking-in-graphs": "",
"serving-over-http": "",
"file-uploads": "",
diff --git a/src/pages/learn/best-practices.mdx b/src/pages/learn/best-practices.mdx
index 7cf153a6af..4b667581c0 100644
--- a/src/pages/learn/best-practices.mdx
+++ b/src/pages/learn/best-practices.mdx
@@ -7,6 +7,7 @@ The GraphQL specification is intentionally silent on a handful of important issu
The articles in this section should not be taken as gospel, and in some cases may rightfully be ignored in favor of some other approach. Some articles introduce some of the philosophy developed within Facebook around designing and deploying GraphQL services, while others are more tactical suggestions for solving common problems like serving over HTTP and performing authorization.