diff --git a/dapp/src/pages/DashboardPage/PageLayout/PageLayoutColumn.tsx b/dapp/src/pages/DashboardPage/PageLayout/PageLayoutColumn.tsx
index dda976593..6e06c7e8f 100644
--- a/dapp/src/pages/DashboardPage/PageLayout/PageLayoutColumn.tsx
+++ b/dapp/src/pages/DashboardPage/PageLayout/PageLayoutColumn.tsx
@@ -10,7 +10,7 @@ function PageLayoutColumn(props: PageLayoutColumnProps) {
return (
+ {[
+ { label: "Documentation", url: EXTERNAL_HREF.DOCS },
+ { label: "Blog", url: EXTERNAL_HREF.BLOG },
+ { label: "FAQ", url: EXTERNAL_HREF.FAQ },
+ ].map(({ label, url }) => (
+
+ {label}
+
+ ))}
+
+ )
+}
diff --git a/dapp/src/pages/DashboardPage/index.tsx b/dapp/src/pages/DashboardPage/index.tsx
index 314899b01..811c9f212 100644
--- a/dapp/src/pages/DashboardPage/index.tsx
+++ b/dapp/src/pages/DashboardPage/index.tsx
@@ -8,6 +8,7 @@ import { PageLayout, PageLayoutColumn } from "./PageLayout"
import AcrePointsCard from "./AcrePointsCard"
import { CurrentSeasonCard } from "./CurrentSeasonCard"
import BeehiveCard from "./BeehiveCard"
+import UsefulLinks from "./UsefulLinks"
export default function DashboardPage() {
const isMobileMode = useMobileMode()
@@ -31,6 +32,7 @@ export default function DashboardPage() {
+
)