├── .env.example ├── .eslintignore ├── .eslintrc.js ├── .gitattributes ├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .husky ├── .gitignore └── pre-commit ├── LICENSE ├── README.md ├── components ├── Canvas.js ├── ClientReload.js ├── Footer.js ├── Image.js ├── InstallApp.js ├── LayoutWrapper.js ├── Link.js ├── MDXComponents.js ├── MobileNav.js ├── PageTitle.js ├── Pagination.js ├── Pre.js ├── SEO.js ├── ScroolToTop.js ├── SectionContainer.js ├── TOCInline.js ├── Tag.js ├── ThemeSwitch.js ├── analytics │ ├── GoogleAnalytics.js │ ├── Plausible.js │ ├── SimpleAnalytics.js │ └── index.js └── social-icons │ ├── external.svg │ ├── facebook.svg │ ├── github.svg │ ├── index.js │ ├── instagram.svg │ ├── linkedin.svg │ ├── mail.svg │ └── twitter.svg ├── css ├── prism.css └── tailwind.css ├── data ├── authors │ └── default.md ├── blog │ ├── code-sample.md │ ├── guide-to-using-images-in-nextjs.mdx │ ├── my-fancy-title.md │ ├── new-blog.mdx │ └── waving-hand.mdx ├── headerNavLinks.js └── siteMetadata.js ├── jsconfig.json ├── layouts ├── AuthorLayout.js ├── ListLayout.js ├── PostLayout.js └── PostSimple.js ├── lib ├── generate-rss.js ├── mdx.js ├── remark-code-title.js ├── remark-img-to-jsx.js ├── remark-toc-headings.js ├── tags.js └── utils │ ├── dateUtils.js │ ├── files.js │ ├── formatDate.js │ ├── htmlEscaper.js │ └── kebabCase.js ├── next.config.js ├── package.json ├── pages ├── 404.js ├── _app.js ├── _document.js ├── _offline.js ├── about.js ├── blog │ ├── [...slug].js │ └── page │ │ └── [page].js ├── index.js ├── tags.js └── tags │ └── [tag].js ├── postcss.config.js ├── prettier.config.js ├── public ├── icons │ ├── icon-128x128.png │ ├── icon-144x144.png │ ├── icon-152x152.png │ ├── icon-192x192.png │ ├── icon-384x384.png │ ├── icon-48x48.png │ ├── icon-512x512.png │ ├── icon-72x72.png │ ├── icon-96x96.png │ └── maskable.png ├── manifest.json └── static │ ├── images │ ├── brain.jpg │ └── me.jpg │ └── screenshots │ ├── gif.gif │ ├── one.jpg │ ├── three.jpg │ └── two.jpg ├── scripts ├── compose.js ├── generate-sitemap.js └── next-remote-watch.js ├── tailwind.config.js └── yarn.lock /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: timlrx 4 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/README.md -------------------------------------------------------------------------------- /components/Canvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/components/Canvas.js -------------------------------------------------------------------------------- /components/ClientReload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/components/ClientReload.js -------------------------------------------------------------------------------- /components/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/components/Footer.js -------------------------------------------------------------------------------- /components/Image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/components/Image.js -------------------------------------------------------------------------------- /components/InstallApp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/components/InstallApp.js -------------------------------------------------------------------------------- /components/LayoutWrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/components/LayoutWrapper.js -------------------------------------------------------------------------------- /components/Link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/components/Link.js -------------------------------------------------------------------------------- /components/MDXComponents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/components/MDXComponents.js -------------------------------------------------------------------------------- /components/MobileNav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/components/MobileNav.js -------------------------------------------------------------------------------- /components/PageTitle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/components/PageTitle.js -------------------------------------------------------------------------------- /components/Pagination.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/components/Pagination.js -------------------------------------------------------------------------------- /components/Pre.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/components/Pre.js -------------------------------------------------------------------------------- /components/SEO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/components/SEO.js -------------------------------------------------------------------------------- /components/ScroolToTop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/components/ScroolToTop.js -------------------------------------------------------------------------------- /components/SectionContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/components/SectionContainer.js -------------------------------------------------------------------------------- /components/TOCInline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/components/TOCInline.js -------------------------------------------------------------------------------- /components/Tag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/components/Tag.js -------------------------------------------------------------------------------- /components/ThemeSwitch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/components/ThemeSwitch.js -------------------------------------------------------------------------------- /components/analytics/GoogleAnalytics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/components/analytics/GoogleAnalytics.js -------------------------------------------------------------------------------- /components/analytics/Plausible.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/components/analytics/Plausible.js -------------------------------------------------------------------------------- /components/analytics/SimpleAnalytics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/components/analytics/SimpleAnalytics.js -------------------------------------------------------------------------------- /components/analytics/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/components/analytics/index.js -------------------------------------------------------------------------------- /components/social-icons/external.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/components/social-icons/external.svg -------------------------------------------------------------------------------- /components/social-icons/facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/components/social-icons/facebook.svg -------------------------------------------------------------------------------- /components/social-icons/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/components/social-icons/github.svg -------------------------------------------------------------------------------- /components/social-icons/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/components/social-icons/index.js -------------------------------------------------------------------------------- /components/social-icons/instagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/components/social-icons/instagram.svg -------------------------------------------------------------------------------- /components/social-icons/linkedin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/components/social-icons/linkedin.svg -------------------------------------------------------------------------------- /components/social-icons/mail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/components/social-icons/mail.svg -------------------------------------------------------------------------------- /components/social-icons/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/components/social-icons/twitter.svg -------------------------------------------------------------------------------- /css/prism.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/css/prism.css -------------------------------------------------------------------------------- /css/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/css/tailwind.css -------------------------------------------------------------------------------- /data/authors/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/data/authors/default.md -------------------------------------------------------------------------------- /data/blog/code-sample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/data/blog/code-sample.md -------------------------------------------------------------------------------- /data/blog/guide-to-using-images-in-nextjs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/data/blog/guide-to-using-images-in-nextjs.mdx -------------------------------------------------------------------------------- /data/blog/my-fancy-title.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/data/blog/my-fancy-title.md -------------------------------------------------------------------------------- /data/blog/new-blog.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/data/blog/new-blog.mdx -------------------------------------------------------------------------------- /data/blog/waving-hand.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/data/blog/waving-hand.mdx -------------------------------------------------------------------------------- /data/headerNavLinks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/data/headerNavLinks.js -------------------------------------------------------------------------------- /data/siteMetadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/data/siteMetadata.js -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/jsconfig.json -------------------------------------------------------------------------------- /layouts/AuthorLayout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/layouts/AuthorLayout.js -------------------------------------------------------------------------------- /layouts/ListLayout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/layouts/ListLayout.js -------------------------------------------------------------------------------- /layouts/PostLayout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/layouts/PostLayout.js -------------------------------------------------------------------------------- /layouts/PostSimple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/layouts/PostSimple.js -------------------------------------------------------------------------------- /lib/generate-rss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/lib/generate-rss.js -------------------------------------------------------------------------------- /lib/mdx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/lib/mdx.js -------------------------------------------------------------------------------- /lib/remark-code-title.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/lib/remark-code-title.js -------------------------------------------------------------------------------- /lib/remark-img-to-jsx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/lib/remark-img-to-jsx.js -------------------------------------------------------------------------------- /lib/remark-toc-headings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/lib/remark-toc-headings.js -------------------------------------------------------------------------------- /lib/tags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/lib/tags.js -------------------------------------------------------------------------------- /lib/utils/dateUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/lib/utils/dateUtils.js -------------------------------------------------------------------------------- /lib/utils/files.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/lib/utils/files.js -------------------------------------------------------------------------------- /lib/utils/formatDate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/lib/utils/formatDate.js -------------------------------------------------------------------------------- /lib/utils/htmlEscaper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/lib/utils/htmlEscaper.js -------------------------------------------------------------------------------- /lib/utils/kebabCase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/lib/utils/kebabCase.js -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/package.json -------------------------------------------------------------------------------- /pages/404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/pages/404.js -------------------------------------------------------------------------------- /pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/pages/_app.js -------------------------------------------------------------------------------- /pages/_document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/pages/_document.js -------------------------------------------------------------------------------- /pages/_offline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/pages/_offline.js -------------------------------------------------------------------------------- /pages/about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/pages/about.js -------------------------------------------------------------------------------- /pages/blog/[...slug].js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/pages/blog/[...slug].js -------------------------------------------------------------------------------- /pages/blog/page/[page].js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/pages/blog/page/[page].js -------------------------------------------------------------------------------- /pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/pages/index.js -------------------------------------------------------------------------------- /pages/tags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/pages/tags.js -------------------------------------------------------------------------------- /pages/tags/[tag].js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/pages/tags/[tag].js -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/postcss.config.js -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/prettier.config.js -------------------------------------------------------------------------------- /public/icons/icon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/public/icons/icon-128x128.png -------------------------------------------------------------------------------- /public/icons/icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/public/icons/icon-144x144.png -------------------------------------------------------------------------------- /public/icons/icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/public/icons/icon-152x152.png -------------------------------------------------------------------------------- /public/icons/icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/public/icons/icon-192x192.png -------------------------------------------------------------------------------- /public/icons/icon-384x384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/public/icons/icon-384x384.png -------------------------------------------------------------------------------- /public/icons/icon-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/public/icons/icon-48x48.png -------------------------------------------------------------------------------- /public/icons/icon-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/public/icons/icon-512x512.png -------------------------------------------------------------------------------- /public/icons/icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/public/icons/icon-72x72.png -------------------------------------------------------------------------------- /public/icons/icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/public/icons/icon-96x96.png -------------------------------------------------------------------------------- /public/icons/maskable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/public/icons/maskable.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/static/images/brain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/public/static/images/brain.jpg -------------------------------------------------------------------------------- /public/static/images/me.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/public/static/images/me.jpg -------------------------------------------------------------------------------- /public/static/screenshots/gif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/public/static/screenshots/gif.gif -------------------------------------------------------------------------------- /public/static/screenshots/one.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/public/static/screenshots/one.jpg -------------------------------------------------------------------------------- /public/static/screenshots/three.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/public/static/screenshots/three.jpg -------------------------------------------------------------------------------- /public/static/screenshots/two.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/public/static/screenshots/two.jpg -------------------------------------------------------------------------------- /scripts/compose.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/scripts/compose.js -------------------------------------------------------------------------------- /scripts/generate-sitemap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/scripts/generate-sitemap.js -------------------------------------------------------------------------------- /scripts/next-remote-watch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/scripts/next-remote-watch.js -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thekamalkashyap/blogging-website-template/HEAD/yarn.lock --------------------------------------------------------------------------------