import Head from next/head
import Image from next/image
import Script from next/script
import Link from next/link
import styles from "./FileName.module.css"
className = {styles.className}
import "./filename.css"
=> Use this in _app.js
, Normal method to import CSS file as Global style sheet <style jsx>
{`
selector {
property: value;
}
`}
</style>
<style jsx global>
=> Styles became global wherever the component is importednpm install --global yarn
=> Install Yarn globallyyarn create next-app
yarn dev