There was an error while loading. Please reload this page.
Analyze link structure:
import { buildLinkGraph, findOrphanPages } from '@power-seo/links'; const graph = buildLinkGraph([ { url: '/home', links: ['/about', '/blog'] }, { url: '/blog', links: ['/home'] }, { url: '/orphan', links: [] }, ]); const orphans = findOrphanPages(graph);
Link graph analysis for better internal linking.