├── .eslintrc.json ├── .gitignore ├── .prettierrc ├── README.md ├── _authors └── makerkit.json ├── _collections └── lorem-ipsum.json ├── _posts ├── dextera-sibi-orbes.mdx └── lorem-reddita.mdx ├── components ├── Author.tsx ├── ClientOnly.tsx ├── CollectionLink.tsx ├── DarkModeToggle.tsx ├── DateFormatter.tsx ├── Footer.tsx ├── Header.tsx ├── LayoutContainer.tsx ├── Logo.tsx ├── MDXComponents.tsx ├── MDXRenderer.tsx ├── Meta.tsx ├── Post.tsx ├── PostBody.module.css ├── PostBody.tsx ├── PostHeader.tsx ├── PostImage.tsx ├── PostMetadata.tsx ├── PostPreview.tsx ├── PostTitle.tsx ├── PostsList.tsx └── ThemeProvider.tsx ├── configuration.ts ├── global.d.ts ├── lib ├── blog │ ├── api.ts │ ├── author.ts │ ├── blog-post.ts │ ├── collection.ts │ ├── compile-mdx.ts │ └── rss-feed.ts ├── is-browser.ts └── theme.ts ├── next-env.d.ts ├── next-sitemap.config.js ├── next.config.js ├── package.json ├── pages ├── [collection] │ └── [slug].tsx ├── _app.tsx └── index.tsx ├── postcss.config.js ├── public └── favicon.ico ├── styles ├── Home.module.css ├── github-dark.css └── globals.css ├── tailwind.config.js └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerkit/next-blog-kit/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerkit/next-blog-kit/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerkit/next-blog-kit/HEAD/README.md -------------------------------------------------------------------------------- /_authors/makerkit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerkit/next-blog-kit/HEAD/_authors/makerkit.json -------------------------------------------------------------------------------- /_collections/lorem-ipsum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerkit/next-blog-kit/HEAD/_collections/lorem-ipsum.json -------------------------------------------------------------------------------- /_posts/dextera-sibi-orbes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerkit/next-blog-kit/HEAD/_posts/dextera-sibi-orbes.mdx -------------------------------------------------------------------------------- /_posts/lorem-reddita.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerkit/next-blog-kit/HEAD/_posts/lorem-reddita.mdx -------------------------------------------------------------------------------- /components/Author.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerkit/next-blog-kit/HEAD/components/Author.tsx -------------------------------------------------------------------------------- /components/ClientOnly.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerkit/next-blog-kit/HEAD/components/ClientOnly.tsx -------------------------------------------------------------------------------- /components/CollectionLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerkit/next-blog-kit/HEAD/components/CollectionLink.tsx -------------------------------------------------------------------------------- /components/DarkModeToggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerkit/next-blog-kit/HEAD/components/DarkModeToggle.tsx -------------------------------------------------------------------------------- /components/DateFormatter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerkit/next-blog-kit/HEAD/components/DateFormatter.tsx -------------------------------------------------------------------------------- /components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerkit/next-blog-kit/HEAD/components/Footer.tsx -------------------------------------------------------------------------------- /components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerkit/next-blog-kit/HEAD/components/Header.tsx -------------------------------------------------------------------------------- /components/LayoutContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerkit/next-blog-kit/HEAD/components/LayoutContainer.tsx -------------------------------------------------------------------------------- /components/Logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerkit/next-blog-kit/HEAD/components/Logo.tsx -------------------------------------------------------------------------------- /components/MDXComponents.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerkit/next-blog-kit/HEAD/components/MDXComponents.tsx -------------------------------------------------------------------------------- /components/MDXRenderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerkit/next-blog-kit/HEAD/components/MDXRenderer.tsx -------------------------------------------------------------------------------- /components/Meta.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerkit/next-blog-kit/HEAD/components/Meta.tsx -------------------------------------------------------------------------------- /components/Post.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerkit/next-blog-kit/HEAD/components/Post.tsx -------------------------------------------------------------------------------- /components/PostBody.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerkit/next-blog-kit/HEAD/components/PostBody.module.css -------------------------------------------------------------------------------- /components/PostBody.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerkit/next-blog-kit/HEAD/components/PostBody.tsx -------------------------------------------------------------------------------- /components/PostHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerkit/next-blog-kit/HEAD/components/PostHeader.tsx -------------------------------------------------------------------------------- /components/PostImage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerkit/next-blog-kit/HEAD/components/PostImage.tsx -------------------------------------------------------------------------------- /components/PostMetadata.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerkit/next-blog-kit/HEAD/components/PostMetadata.tsx -------------------------------------------------------------------------------- /components/PostPreview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerkit/next-blog-kit/HEAD/components/PostPreview.tsx -------------------------------------------------------------------------------- /components/PostTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerkit/next-blog-kit/HEAD/components/PostTitle.tsx -------------------------------------------------------------------------------- /components/PostsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerkit/next-blog-kit/HEAD/components/PostsList.tsx -------------------------------------------------------------------------------- /components/ThemeProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerkit/next-blog-kit/HEAD/components/ThemeProvider.tsx -------------------------------------------------------------------------------- /configuration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerkit/next-blog-kit/HEAD/configuration.ts -------------------------------------------------------------------------------- /global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerkit/next-blog-kit/HEAD/global.d.ts -------------------------------------------------------------------------------- /lib/blog/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerkit/next-blog-kit/HEAD/lib/blog/api.ts -------------------------------------------------------------------------------- /lib/blog/author.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerkit/next-blog-kit/HEAD/lib/blog/author.ts -------------------------------------------------------------------------------- /lib/blog/blog-post.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerkit/next-blog-kit/HEAD/lib/blog/blog-post.ts -------------------------------------------------------------------------------- /lib/blog/collection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerkit/next-blog-kit/HEAD/lib/blog/collection.ts -------------------------------------------------------------------------------- /lib/blog/compile-mdx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerkit/next-blog-kit/HEAD/lib/blog/compile-mdx.ts -------------------------------------------------------------------------------- /lib/blog/rss-feed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerkit/next-blog-kit/HEAD/lib/blog/rss-feed.ts -------------------------------------------------------------------------------- /lib/is-browser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerkit/next-blog-kit/HEAD/lib/is-browser.ts -------------------------------------------------------------------------------- /lib/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerkit/next-blog-kit/HEAD/lib/theme.ts -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerkit/next-blog-kit/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next-sitemap.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerkit/next-blog-kit/HEAD/next-sitemap.config.js -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerkit/next-blog-kit/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerkit/next-blog-kit/HEAD/package.json -------------------------------------------------------------------------------- /pages/[collection]/[slug].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerkit/next-blog-kit/HEAD/pages/[collection]/[slug].tsx -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerkit/next-blog-kit/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerkit/next-blog-kit/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerkit/next-blog-kit/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerkit/next-blog-kit/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /styles/Home.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerkit/next-blog-kit/HEAD/styles/Home.module.css -------------------------------------------------------------------------------- /styles/github-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerkit/next-blog-kit/HEAD/styles/github-dark.css -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerkit/next-blog-kit/HEAD/styles/globals.css -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerkit/next-blog-kit/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/makerkit/next-blog-kit/HEAD/tsconfig.json --------------------------------------------------------------------------------