rsnext/examples/basic-css
2024-05-08 21:47:14 +02: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 chore: update prettier to 3.2.5 (#65092) 2024-05-08 21:47:14 +02: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).