Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions public/robots.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
User-agent: *

# Next.JS Crawl Budget Performance Updates
# Block files ending in .json, _buildManifest.js, _middlewareManifest.js, _ssgManifest.js, and any other JS files
# The asterisks allows any file name
# The dollar sign ensures it only matches the end of an URL and not a oddly formatted url (e.g. /locations.json.html)
Disallow: /*.json$
Disallow: /*_buildManifest.js$
Disallow: /*_middlewareManifest.js$
Disallow: /*_ssgManifest.js$
Disallow: /*.js$

# All posts with unconfigured (default) accounts
# eg paragraph.xyz/@colin@paragraph.xyz
Disallow: /@*@*.*$

# All welcome posts
Disallow: /*welcome-to-paragraph$
Disallow: /*welcome-to-papyrus$

# Disallow all API calls
# eg /api/amp, /api/event
Disallow: /api*$
8 changes: 8 additions & 0 deletions src/pages/_app.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,14 @@ const navigation = [
{ title: 'Paragraph Link', href: '/docs/link' },
],
},
{
title: 'Integrations',
links: [
{ title: 'Unlock Protocol', href: '/docs/integrations/unlock' },
{ title: 'Referring Subscribers', href: '/docs/integrations/referrals' },
{ title: 'Coinvise', href: '/docs/integrations/referrals' },
],
},
]

function getNodeText(node) {
Expand Down