diff --git a/docs/02-app/01-building-your-application/05-styling/03-css-in-js.mdx b/docs/02-app/01-building-your-application/05-styling/03-css-in-js.mdx index e16ca882f241a..ad0fa98d7fe1d 100644 --- a/docs/02-app/01-building-your-application/05-styling/03-css-in-js.mdx +++ b/docs/02-app/01-building-your-application/05-styling/03-css-in-js.mdx @@ -259,10 +259,8 @@ export default function RootLayout({ children }) { - [Styled Components](https://github.com/vercel/next.js/tree/canary/examples/with-styled-components) - [Emotion](https://github.com/vercel/next.js/tree/canary/examples/with-emotion) - [Linaria](https://github.com/vercel/next.js/tree/canary/examples/with-linaria) -- [Tailwind CSS + Emotion](https://github.com/vercel/next.js/tree/canary/examples/with-tailwindcss-emotion) - [Styletron](https://github.com/vercel/next.js/tree/canary/examples/with-styletron) - [Cxs](https://github.com/vercel/next.js/tree/canary/examples/with-cxs) -- [Aphrodite](https://github.com/vercel/next.js/tree/canary/examples/with-aphrodite) - [Fela](https://github.com/vercel/next.js/tree/canary/examples/with-fela) - [Stitches](https://github.com/vercel/next.js/tree/canary/examples/with-stitches) diff --git a/docs/02-app/02-api-reference/05-next-config-js/env.mdx b/docs/02-app/02-api-reference/05-next-config-js/env.mdx index 95c969621463c..3903516a1987d 100644 --- a/docs/02-app/02-api-reference/05-next-config-js/env.mdx +++ b/docs/02-app/02-api-reference/05-next-config-js/env.mdx @@ -17,13 +17,6 @@ description: Learn to add and access environment variables in your Next.js appli -
- Examples - -- [With env](https://github.com/vercel/next.js/tree/canary/examples/with-env-from-next-config-js) - -
- > **Good to know**: environment variables specified in this way will **always** be included in the JavaScript bundle, prefixing the environment variable name with `NEXT_PUBLIC_` only has an effect when specifying them [through the environment or .env files](/docs/app/building-your-application/configuring/environment-variables). diff --git a/docs/03-pages/01-building-your-application/01-routing/03-linking-and-navigating.mdx b/docs/03-pages/01-building-your-application/01-routing/03-linking-and-navigating.mdx index 030c6616b3a37..ad00347815fc7 100644 --- a/docs/03-pages/01-building-your-application/01-routing/03-linking-and-navigating.mdx +++ b/docs/03-pages/01-building-your-application/01-routing/03-linking-and-navigating.mdx @@ -110,13 +110,6 @@ In general we recommend using [`useRouter`](/docs/pages/api-reference/functions/ ## Imperative Routing -
- Examples - -- [Using Router](https://github.com/vercel/next.js/tree/canary/examples/using-router) - -
- [`next/link`](/docs/pages/api-reference/components/link) should be able to cover most of your routing needs, but you can also do client-side navigations without it, take a look at the [documentation for `next/router`](/docs/pages/api-reference/functions/use-router). The following example shows how to do basic page navigations with [`useRouter`](/docs/pages/api-reference/functions/use-router): diff --git a/docs/03-pages/02-api-reference/02-functions/use-router.mdx b/docs/03-pages/02-api-reference/02-functions/use-router.mdx index a1d2dbabc329c..8aec78b204f3d 100644 --- a/docs/03-pages/02-api-reference/02-functions/use-router.mdx +++ b/docs/03-pages/02-api-reference/02-functions/use-router.mdx @@ -54,13 +54,6 @@ The following methods are included inside `router`: ### router.push -
- Examples - -- [Using Router](https://github.com/vercel/next.js/tree/canary/examples/using-router) - -
- Handles client-side transitions, this method is useful for cases where [`next/link`](/docs/pages/api-reference/components/link) is not enough. ```js