├── .gitignore ├── README.md ├── app.vue ├── components ├── BlogPostList.vue ├── BlogPostMeta.vue ├── TheHero.vue └── TheNavbar.vue ├── nuxt.config.ts ├── package.json ├── pages ├── blog │ ├── my-first-blog-post.vue │ └── my-second-blog-post.vue └── index.vue └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/build-a-blog-with-nuxt-3-and-nuxt-content-v2/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/build-a-blog-with-nuxt-3-and-nuxt-content-v2/HEAD/README.md -------------------------------------------------------------------------------- /app.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/build-a-blog-with-nuxt-3-and-nuxt-content-v2/HEAD/app.vue -------------------------------------------------------------------------------- /components/BlogPostList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/build-a-blog-with-nuxt-3-and-nuxt-content-v2/HEAD/components/BlogPostList.vue -------------------------------------------------------------------------------- /components/BlogPostMeta.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/build-a-blog-with-nuxt-3-and-nuxt-content-v2/HEAD/components/BlogPostMeta.vue -------------------------------------------------------------------------------- /components/TheHero.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/build-a-blog-with-nuxt-3-and-nuxt-content-v2/HEAD/components/TheHero.vue -------------------------------------------------------------------------------- /components/TheNavbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/build-a-blog-with-nuxt-3-and-nuxt-content-v2/HEAD/components/TheNavbar.vue -------------------------------------------------------------------------------- /nuxt.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/build-a-blog-with-nuxt-3-and-nuxt-content-v2/HEAD/nuxt.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/build-a-blog-with-nuxt-3-and-nuxt-content-v2/HEAD/package.json -------------------------------------------------------------------------------- /pages/blog/my-first-blog-post.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/build-a-blog-with-nuxt-3-and-nuxt-content-v2/HEAD/pages/blog/my-first-blog-post.vue -------------------------------------------------------------------------------- /pages/blog/my-second-blog-post.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/build-a-blog-with-nuxt-3-and-nuxt-content-v2/HEAD/pages/blog/my-second-blog-post.vue -------------------------------------------------------------------------------- /pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/build-a-blog-with-nuxt-3-and-nuxt-content-v2/HEAD/pages/index.vue -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Pop/build-a-blog-with-nuxt-3-and-nuxt-content-v2/HEAD/tsconfig.json --------------------------------------------------------------------------------