Skip to content

Instantly share code, notes, and snippets.

@officialrajdeepsingh
Created August 17, 2022 08:28
nextjs, content layer, netlify cms structure folder

. ├── components │ ├── Banner.js │ ├── Footer.js │ ├── Header.js │ ├── ItemPost.js │ ├── Pagnation.js │ ├── Post.js │ └── Sidebar.js ├── config.js ├── contentlayer.config.ts ├── jsconfig.json ├── next.config.js ├── next-seo.config.js ├── next-sitemap.js ├── package.json ├── package-lock.json ├── pages │ ├── _app.js │ ├── blog │ │ └── [slug].js │ ├── category │ │ └── [slug].js │ ├── _document.js │ ├── index.js │ ├── page │ │ └── [page].js │ ├── Search.js │ └── tag │ └── [slug].js ├── posts │ ├── article-post-16.md │ ├── article-post-17.md │ ├── article-post-18.md │ ├── article-post-19.md │ ├── ... ├── public │ ├── admin │ │ ├── config.yml │ │ └── index.html │ ├── banner.png │ ├── favicon.ico │ ├── images │ │ ├── butterfly-7353884_960_720.webp │ │ ├── contentlayer.png │ │ ├── firstway-2.png │ │ ├── firstway.png │ │ ├── .... │ ├── robots.txt │ ├── sitemap-0.xml │ ├── sitemap.xml │ └── vercel.svg ├── README.md ├── styles │ └── globals.css └── utils └── index.js

12 directories, 79 files

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment