├── .gitignore ├── README.md ├── components ├── date.js ├── layout.js └── layout.module.css ├── lib └── posts.js ├── package.json ├── pages ├── _app.js ├── api │ └── hello.js ├── index.js └── posts │ └── [id].js ├── posts ├── pre-rendering.md └── ssg-ssr.md ├── public ├── favicon.ico ├── images │ └── profile.jpg └── vercel.svg └── styles ├── Home.module.css ├── globals.css └── utils.module.css /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioErdeljac/nextjs-blog/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioErdeljac/nextjs-blog/HEAD/README.md -------------------------------------------------------------------------------- /components/date.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioErdeljac/nextjs-blog/HEAD/components/date.js -------------------------------------------------------------------------------- /components/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioErdeljac/nextjs-blog/HEAD/components/layout.js -------------------------------------------------------------------------------- /components/layout.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioErdeljac/nextjs-blog/HEAD/components/layout.module.css -------------------------------------------------------------------------------- /lib/posts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioErdeljac/nextjs-blog/HEAD/lib/posts.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioErdeljac/nextjs-blog/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioErdeljac/nextjs-blog/HEAD/pages/_app.js -------------------------------------------------------------------------------- /pages/api/hello.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioErdeljac/nextjs-blog/HEAD/pages/api/hello.js -------------------------------------------------------------------------------- /pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioErdeljac/nextjs-blog/HEAD/pages/index.js -------------------------------------------------------------------------------- /pages/posts/[id].js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioErdeljac/nextjs-blog/HEAD/pages/posts/[id].js -------------------------------------------------------------------------------- /posts/pre-rendering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioErdeljac/nextjs-blog/HEAD/posts/pre-rendering.md -------------------------------------------------------------------------------- /posts/ssg-ssr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioErdeljac/nextjs-blog/HEAD/posts/ssg-ssr.md -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioErdeljac/nextjs-blog/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/images/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioErdeljac/nextjs-blog/HEAD/public/images/profile.jpg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioErdeljac/nextjs-blog/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /styles/Home.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioErdeljac/nextjs-blog/HEAD/styles/Home.module.css -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioErdeljac/nextjs-blog/HEAD/styles/globals.css -------------------------------------------------------------------------------- /styles/utils.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AntonioErdeljac/nextjs-blog/HEAD/styles/utils.module.css --------------------------------------------------------------------------------