Skip to content

Commit cd8be36

Browse files
authored
Merge pull request #288 from wpengine/chore-post-go-live-404s
Chore: Fixed some 404s
2 parents 6b9c938 + 9433d3a commit cd8be36

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

redirects-old-site.mjs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const redirectsOldSite = [
66
},
77
{
88
source: "/tutorial/react-components-to-gutenberg-blocks",
9-
destination: "/docs/explanation/react-components-to-blocks/",
9+
destination: "/docs/how-to/custom-blocks/",
1010
permanent: true,
1111
},
1212
{
@@ -46,7 +46,7 @@ const redirectsOldSite = [
4646
},
4747
{
4848
source: "/guide/how-to-use-apollo-in-faust",
49-
destination: "/docs/how-to/use-wpgraphql-smart-cache/",
49+
destination: "/docs/how-to/query-data-in-the-browser/",
5050
permanent: true,
5151
},
5252
{
@@ -308,7 +308,7 @@ const redirectsOldSite = [
308308
},
309309
{
310310
source: "/guide/how-to-use-the-faust-example-project",
311-
destination: "/docs/",
311+
destination: "/docs/tutorial/learn-faust/",
312312
permanent: true,
313313
},
314314
{

src/pages/docs/explanation/deploy-your-app/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Faust.js uses the `package.json` [engines field](https://docs.npmjs.com/cli/v9/c
1414

1515
## Building Your App
1616

17-
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](https://developers.wpengine.com/docs/atlas/framework-guides/next-js/next/) for Next.js apps.
17+
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](https://developers.wpengine.com/docs/atlas/framework-guides/next-js/next/) for Next.js apps.
1818

1919
## Deploying to WP Engine's Headless Platform
2020

src/pages/docs/how-to/rendering-blocks/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Activate the plugin on the WordPress plugins page.
3131
The `@faust/blocks` package contains a small reference list of core blocks that you can use in your site.
3232

3333
> [!TIP]
34-
> These blocks are provided as a quick start option and reference. Blocks can be [overridden](/docs/how-to/override-blocks/) and [custom blocks](/docs/how-to/custom-blocks/) added to fit your site's needs.
34+
> These blocks are provided as a quick start option and reference. Blocks can be [overridden](/docs/how-to/custom-blocks/) and [custom blocks](/docs/how-to/custom-blocks/) added to fit your site's needs.
3535
3636
### A. Install the @faust/blocks package
3737

src/pages/docs/reference/blockset/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ wp-blocks
4242
```
4343

4444
> [!NOTE]
45-
> See our [React Components to Blocks](/docs/how-to/react-components-to-blocks/) how-to guide for more information on how to create React components that can be used as blocks in the Block Editor.
45+
> See our [React Components to Blocks](/docs/how-to/custom-blocks/) how-to guide for more information on how to create React components that can be used as blocks in the Block Editor.
4646
4747
## `blockset` Command Usage
4848

src/pages/docs/tutorial/learn-faust/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -417,7 +417,7 @@ Reload the http://localhost:3000/blog/hello-world/ page in your frontend app and
417417
More information about using Faust to render blocks, override WordPress core blocks with your own implementation, and even add support for custom blocks can be found in these how-to guides:
418418
419419
- [Rendering Blocks](/docs/how-to/rendering-blocks/)
420-
- [Override Blocks](/docs/how-to/override-blocks/)
420+
- [Override Blocks](/docs/how-to/custom-blocks/)
421421
- [Custom Blocks](/docs/how-to/custom-blocks/)
422422
423423
## Next steps

0 commit comments

Comments
 (0)