diff --git a/src/pages/docs/explanation/blocks-faq/index.mdx b/src/pages/docs/explanation/blocks-faq/index.mdx index 8253683b..9ba12c85 100644 --- a/src/pages/docs/explanation/blocks-faq/index.mdx +++ b/src/pages/docs/explanation/blocks-faq/index.mdx @@ -7,7 +7,7 @@ export const metadata = { If the block does not have any attributes or has only a few of them declared in the `block.json` for that block (you can view the `block.json` file for the block at https://github.com/WordPress/gutenberg/blob/trunk/packages/block-library/), you can still try to extend the block API by declaring additional attributes for that block. -Follow the [filters reference guide](reference/plugin-filters) to create a block that uses the `additional_block_attributes` property. The attributes will then be available to query from that block. +Follow the [filters reference guide](/docs/reference/use-blocks-theme/) to create a block that uses the `additional_block_attributes` property. The attributes will then be available to query from that block. ```php class CoreCode extends WPGraphQL\ContentBlocks\Blocks\Block diff --git a/src/pages/docs/explanation/deploy-your-app/index.mdx b/src/pages/docs/explanation/deploy-your-app/index.mdx index 0b49d9db..3ee9f5bf 100644 --- a/src/pages/docs/explanation/deploy-your-app/index.mdx +++ b/src/pages/docs/explanation/deploy-your-app/index.mdx @@ -14,7 +14,7 @@ Faust.js uses the `package.json` [engines field](https://docs.npmjs.com/cli/v9/c ## Building Your App -Since Faust.js is built on top of Next.js, it shares the same build process. For details on how Next.js generates optimized production builds, refer to the [Next.js Build API](<(https://nextjs.org/docs/pages/building-your-application/deploying#nextjs-build-api)>) documentation. Additionally, you can explore the Headless Platform framework guide for Next.js apps [here](https://developers.wpengine.com/docs/atlas/framework-guides/next-js/next/). +Since Faust.js is built on top of Next.js, it shares the same build process. For details on how Next.js generates optimized production builds, refer to the [Next.js Build API](https://nextjs.org/docs/pages/building-your-application/deploying#nextjs-build-api) documentation. Additionally, you can explore the Headless Platform framework guide for Next.js apps [here](https://developers.wpengine.com/docs/atlas/framework-guides/next-js/next/). ## Deploying to WP Engine's Headless Platform diff --git a/src/pages/docs/how-to/rendering-blocks/index.mdx b/src/pages/docs/how-to/rendering-blocks/index.mdx index bc60d774..8c5b3f62 100644 --- a/src/pages/docs/how-to/rendering-blocks/index.mdx +++ b/src/pages/docs/how-to/rendering-blocks/index.mdx @@ -165,4 +165,4 @@ export default function Component({ loading, data }) { ## 3. All done! -run `npm run dev` and navigate to your front page to see the blocks rendered! For Further customization, you can [override blocks](/docs/how-to/override-blocks/) or [create custom blocks](/docs/how-to/custom-blocks/). +run `npm run dev` and navigate to your front page to see the blocks rendered! For Further customization, you can [create custom blocks](/docs/how-to/custom-blocks/). diff --git a/src/pages/docs/index.mdx b/src/pages/docs/index.mdx index 8657f486..8041abf1 100644 --- a/src/pages/docs/index.mdx +++ b/src/pages/docs/index.mdx @@ -14,12 +14,11 @@ From data fetching to Block components, Faust.js® has you covered. Build your h Some of the main Faust.js® features include: -| Feature | Description | -| -------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- | -| [Authentication](/docs/how-to/authentication/) | Authenticate users in your Next.js app with WordPress | -| [Block Components](/docs/how-to/rendering-blocks/) | Render WordPress blocks in your Next.js app | -| [Post Preview](/docs/how-to/post-previews/) | Preview posts and pages in your Next.js app before publishing them | -| [Template Hierarchy](/docs/how-to/rendering-blocks-with-the-template-hierarchy/) | Fetch data and render posts and pages with a React based version of WordPress' Template Hierarchy | +| Feature | Description | +| -------------------------------------------------- | ------------------------------------------------------------------ | +| [Authentication](/docs/how-to/authentication/) | Authenticate users in your Next.js app with WordPress | +| [Block Components](/docs/how-to/rendering-blocks/) | Render WordPress blocks in your Next.js app | +| [Post Preview](/docs/how-to/post-previews/) | Preview posts and pages in your Next.js app before publishing them | ## How to Use These Docs