GithubHelp home page GithubHelp logo

pauloelias / next-tailwind-emotion-starter Goto Github PK

View Code? Open in Web Editor NEW
10.0 3.0 2.0 73 KB

Next.js starter using TailwindCSS 1.8+ and Emotion.

Home Page: https://next-tailwind-emotion-starter.netlify.app/

License: MIT License

JavaScript 96.88% CSS 3.12%
nextjs tailwindcss tailwind-css tailwind emotion emotionjs react reactjs next postcss custom-css

next-tailwind-emotion-starter's Introduction

Netlify Status

Next.js Gatsby Gatsby

Tailwind CSS βž• Emotion Starter for Next.js

Kick off your project with this bare-bones Tailwind CSS + Emotion starter for Next.js. This starter ships with the packages and configuration files you need to get hit the ground running on your next Tailwind CSS project.

πŸ’„ Demo

You can see a demo of the frontend over yonder.

πŸš€ Quick start

  1. Create a Next.js project.

    Use create-next-app to create a new application specifying the next-tailwind-emotion-starter starter.

    yarn create next-app my-next-tailwind-emotion-starter -e https://github.com/pauloelias/next-tailwind-emotion-starter
    # or
    npx create-next-app my-next-tailwind-emotion-starter -e https://github.com/pauloelias/next-tailwind-emotion-starter
  2. Start developing.

    Navigate into your new site’s directory and start it up.

    cd my-next-tailwind-emotion-starter/
    yarn run dev
  3. Open the source code and start editing!

    Your site is now running at http://localhost:3000!

    Open the my-next-tailwind-emotion-starter directory in your code editor of choice and edit ./pages/index.js.Save your changes and the browser will update in real time!

✨ Features?

This starter contains has the following features enabled by default:

  • Tailwind CSS: The full power of Tailwind is at your fingertips. Style your components using twin.macro to add Tailwind classes to your project.
  • Emotion: Best-in-class CSS-in-JS support with Emotion. Write your own custom styled components with Emotion or use twin.macro inside your styled components to add Tailwind CSS classes alongside your custom styling.
  • PostCSS: Use the flexibility of PostCSS to extend Tailwind's CSS or write your own CSS. Postcss-Preset-Env is enabled out-of-the box allowing you to write tomorrow's CSS today!

The rest of the Starter is based off of the Next.js default starter.

πŸ“¦ Example Components

To use Tailwind CSS classes inside of your components you use the twin.macro package. You can also create richer styled components using a combination of both Tailwind's classes and your own custom CSS with Emotion. Laslty, if needed, you can use PostCSS to write your own custom CSS as well.

Standalone Tailwind Classes

import tw from "twin.macro"

const Heading = tw.h1`
  text-2xl text-gray-500 uppercase
`

export default () => (
  <div>
    <Heading>Hello, world!</Heading>
  </div>
)

Styled Components with Emotion

import tw, { styled } from "twin.macro"

import pattern from "../images/pattern.png"

const Container = styled.div`
    ${tw`bg-gray-100 w-full`}
    background-image: url(${background});
    padding: 15px;
`

export default () => (
  <Container>
    <h1>Hello, world!</h1>
  </Container>
)

Combined Standalone + Styled Components Example

import tw, { styled } from "twin.macro"
import pattern from "../assets/images/pattern.png"

const Container = styled.div`
    ${tw`bg-gray-100 w-full`}
    background-image: url(${pattern});
    padding: 15px;
`

const Heading = tw.h1`
  text-2xl text-gray-500 uppercase
`

export default () => (
  <Container>
    <Heading>Hello, world!</Heading>
  </Container>
)

CSS Prop to inline Tailwind Classes

import tw, { css } from "twin.macro"

export default () => (
  <div
    css={css`
      ${tw`flex items-center justify-between px-4 py-3`}
    `}
  >
    <h1>Hello, world!</h1>
    <h2>I'm a flex item too!</h2>
  </div>
)

🧐 What's inside?

A quick look at the top-level files and directories you'll see inside this project.

.
β”œβ”€β”€ .babelrc
β”œβ”€β”€ .eslintignore
β”œβ”€β”€ .gitignore
β”œβ”€β”€ .nvmrc
β”œβ”€β”€ .prettierignore
β”œβ”€β”€ .prettierrc
β”œβ”€β”€ .stylelint.config.js
β”œβ”€β”€ .vscode/
β”œβ”€β”€ LICENSE
β”œβ”€β”€ README.md
β”œβ”€β”€ assets/
β”œβ”€β”€ babel-plugin-macros.config.js
β”œβ”€β”€ components/
β”œβ”€β”€ next.config.js
β”œβ”€β”€ package.json
β”œβ”€β”€ pages/
β”œβ”€β”€ postcss.config.js
β”œβ”€β”€ public/
└── tailwind.config.js
  1. .babelrc: This configuration file allows us to fine-tune Babel's configuration settings. In this starter we are adding the babel-preset-gatsby preset to allow us to customize Babel as needed.

  2. .eslintignore: This file specifies files and folders that we want to exclude from linting with Eslint.

  3. .gitignore: This file tells git which files it should not track / not maintain a version history for.

  4. .nvmrc: The .nvmrc allows you to lock down a project's node version when using nvm.

  5. .prettierignore: This file allows us to specifiy files that we want to exclude from formatting with Prettier.

  6. .prettierrc: This is a configuration file for Prettier. Prettier is a tool to help keep the formatting of your code consistent.

  7. .stylelint.config.js: Stylelint configuration file to customize stylelint rules in the project. Styleline is enabled to tame CSS errors displayed in some editors due to TailwindCSS's syntaxt inside CSS files.

  8. .vscode/: Base VS Code settings and extensions are provided to help make your life easier.

  9. LICENSE: Next.js is licensed under the MIT license.

  10. README.md: A text file containing useful reference information about this project.

  11. assets/: This directory contains assets that can be compiled with your project.

  12. babel-plugin-macros.config.js: This file helps us configure Tailwind CSS macros to be used with Emotion, our CSS-in-JS tool of choice.

  13. components/: Add this directory to your project. You will save your React component files inside this directory.

  14. next.config.js: This file allows you to customize advanced features of Next.js. We use this to configure the Next.js server and build phases. It's not included in the browser build.

  15. package.json: A manifest file for Node.js projects, which includes things like metadata (the project’s name, author, etc). This manifest is how npm knows which packages to install for your project.

  16. pages/: Your page components live inside here. Next.js pages are associated with routes based on the file name.

  17. postcss.config.js: This configuration file allows us to customize our PostCSS settings. PostCSS is used to compile the custom css we write outside of Emotion.

  18. public/: You can place static assets that do not need to be compiled in this directory.

  19. tailwind.config.js: This is the default Tailwind CSS configuration file.

πŸ’« Deploy

Deploy with Vercel

Deploy with Netlify

βœ… To Do

πŸ“š Learn More About Next.js

To learn more about Next.js, use the following resources:

You can check out the Next.js GitHub repository - your feedback and contributions are welcome!

next-tailwind-emotion-starter's People

Contributors

dependabot[bot] avatar pauloelias avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

next-tailwind-emotion-starter's Issues

[question] do you know if this setup is still possible with latest next?

Sorry for the somewhat redundant question, I am more of a backend, occasionally Vue developer...

Next.js, Tailwind, and Emotion are great tools but they are all new to me. I have used them all separately to a little extent, for learning purposes. I now trying to set them up together, thus I am looking for a stable way to use them in conjunction. Do you happen to have used a setup like this recently? E.g: with Next 12 or something?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.