rsnext/examples/basic-css
Arian 832cbb3330
chore: migrate basic-css example from page router to app router (#62980)
### Adding or Updating Examples

Migrate the basic-css example from page router to app router. If it
needs further updates, Please let me know

Happy to contribute

---------

Co-authored-by: Steven <steven@ceriously.com>
2024-03-07 15:44:13 +00:00
..
app chore: migrate basic-css example from page router to app router (#62980) 2024-03-07 15:44:13 +00:00
.gitignore Add .yarn/install-state.gz to .gitignore (#56637) 2023-10-18 16:34:48 +00:00
next-env.d.ts Remove incorrect entries for pnpm debug log (#47241) 2023-03-26 22:26:05 -07:00
package.json Convert basic-css example to TypeScript (#38091) 2022-06-29 11:11:53 +00:00
README.md update example Deploy button URLs (#48842) 2023-04-26 13:31:44 -04:00
styles.module.css Add CSS Modules examples to docs (#15601) 2020-07-29 14:43:48 +00:00
tsconfig.json chore: migrate basic-css example from page router to app router (#62980) 2024-03-07 15:44:13 +00:00

Basic CSS example

Next.js has built-in support for CSS Modules allowing you to write scoped CSS by automatically creating a unique class name. CSS Module files can be imported anywhere in your application and you don't have to worry about collisions.

Deploy your own

Deploy the example using Vercel or preview live with StackBlitz

Deploy with Vercel

How to use

Execute create-next-app with npm, Yarn, or pnpm to bootstrap the example:

npx create-next-app --example basic-css basic-css-app
yarn create next-app --example basic-css basic-css-app
pnpm create next-app --example basic-css basic-css-app

Deploy it to the cloud with Vercel (Documentation).