### Next.js and CSS Shields Source: https://github.com/chainlift/liftkit-template/blob/main/README.md This snippet displays shields indicating the project's use of Next.js and CSS3. These shields are commonly used in README files to provide quick visual information about the project's technology stack. ```markdown [![css][css-shield]][css-url] [![NextJS][nextjs-shield]][nextjs-url] ``` -------------------------------- ### Next.js Shield Definition Source: https://github.com/chainlift/liftkit-template/blob/main/README.md Defines the markdown for a Next.js shield, including its URL and image source. This is used to link to the Next.js GitHub repository and display a badge indicating its presence. ```markdown [nextjs-shield]: https://img.shields.io/badge/Next.js-000000.svg?style=for-the-badge&logo=next.js&logoColor=white [nextjs-url]: https://github.com/vercel/next.js ``` -------------------------------- ### CSS3 Shield Definition Source: https://github.com/chainlift/liftkit-template/blob/main/README.md Defines the markdown for a CSS3 shield, including its URL and image source. This is used to link to the MDN Web Docs for CSS and display a badge indicating CSS3 support. ```markdown [css-shield]: https://img.shields.io/badge/CSS3-1572B6.svg?style=for-the-badge&logo=css3&logoColor=white [css-url]: https://developer.mozilla.org/en-US/docs/Web/CSS ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.