├── .gitignore ├── README.md ├── components ├── Author.jsx ├── Categories.jsx ├── Comments.jsx ├── CommentsForm.jsx ├── FeaturedPostCard.jsx ├── Header.jsx ├── Layout.jsx ├── Loader.jsx ├── PostCard.jsx ├── PostDetail.jsx ├── PostWidget.jsx └── index.js ├── next-env.d.ts ├── next.config.js ├── package.json ├── pages ├── _app.tsx ├── api │ └── comments.js ├── category │ └── [slug].js ├── index.js └── post │ └── [slug].js ├── postcss.config.js ├── public ├── bg.jpg ├── favicon.ico └── vercel.svg ├── sections ├── FeaturedPosts.jsx └── index.js ├── services └── index.js ├── styles └── globals.scss ├── tailwind.config.js └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uchiha-suraj/NextJs-GraphQL-blog-site/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uchiha-suraj/NextJs-GraphQL-blog-site/HEAD/README.md -------------------------------------------------------------------------------- /components/Author.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uchiha-suraj/NextJs-GraphQL-blog-site/HEAD/components/Author.jsx -------------------------------------------------------------------------------- /components/Categories.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uchiha-suraj/NextJs-GraphQL-blog-site/HEAD/components/Categories.jsx -------------------------------------------------------------------------------- /components/Comments.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uchiha-suraj/NextJs-GraphQL-blog-site/HEAD/components/Comments.jsx -------------------------------------------------------------------------------- /components/CommentsForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uchiha-suraj/NextJs-GraphQL-blog-site/HEAD/components/CommentsForm.jsx -------------------------------------------------------------------------------- /components/FeaturedPostCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uchiha-suraj/NextJs-GraphQL-blog-site/HEAD/components/FeaturedPostCard.jsx -------------------------------------------------------------------------------- /components/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uchiha-suraj/NextJs-GraphQL-blog-site/HEAD/components/Header.jsx -------------------------------------------------------------------------------- /components/Layout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uchiha-suraj/NextJs-GraphQL-blog-site/HEAD/components/Layout.jsx -------------------------------------------------------------------------------- /components/Loader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uchiha-suraj/NextJs-GraphQL-blog-site/HEAD/components/Loader.jsx -------------------------------------------------------------------------------- /components/PostCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uchiha-suraj/NextJs-GraphQL-blog-site/HEAD/components/PostCard.jsx -------------------------------------------------------------------------------- /components/PostDetail.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uchiha-suraj/NextJs-GraphQL-blog-site/HEAD/components/PostDetail.jsx -------------------------------------------------------------------------------- /components/PostWidget.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uchiha-suraj/NextJs-GraphQL-blog-site/HEAD/components/PostWidget.jsx -------------------------------------------------------------------------------- /components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uchiha-suraj/NextJs-GraphQL-blog-site/HEAD/components/index.js -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uchiha-suraj/NextJs-GraphQL-blog-site/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uchiha-suraj/NextJs-GraphQL-blog-site/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uchiha-suraj/NextJs-GraphQL-blog-site/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uchiha-suraj/NextJs-GraphQL-blog-site/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/api/comments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uchiha-suraj/NextJs-GraphQL-blog-site/HEAD/pages/api/comments.js -------------------------------------------------------------------------------- /pages/category/[slug].js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uchiha-suraj/NextJs-GraphQL-blog-site/HEAD/pages/category/[slug].js -------------------------------------------------------------------------------- /pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uchiha-suraj/NextJs-GraphQL-blog-site/HEAD/pages/index.js -------------------------------------------------------------------------------- /pages/post/[slug].js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uchiha-suraj/NextJs-GraphQL-blog-site/HEAD/pages/post/[slug].js -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uchiha-suraj/NextJs-GraphQL-blog-site/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uchiha-suraj/NextJs-GraphQL-blog-site/HEAD/public/bg.jpg -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uchiha-suraj/NextJs-GraphQL-blog-site/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uchiha-suraj/NextJs-GraphQL-blog-site/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /sections/FeaturedPosts.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uchiha-suraj/NextJs-GraphQL-blog-site/HEAD/sections/FeaturedPosts.jsx -------------------------------------------------------------------------------- /sections/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uchiha-suraj/NextJs-GraphQL-blog-site/HEAD/sections/index.js -------------------------------------------------------------------------------- /services/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uchiha-suraj/NextJs-GraphQL-blog-site/HEAD/services/index.js -------------------------------------------------------------------------------- /styles/globals.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uchiha-suraj/NextJs-GraphQL-blog-site/HEAD/styles/globals.scss -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uchiha-suraj/NextJs-GraphQL-blog-site/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uchiha-suraj/NextJs-GraphQL-blog-site/HEAD/tsconfig.json --------------------------------------------------------------------------------