├── .editorconfig ├── .gitignore ├── .nowignore ├── .yarnclean ├── README.md ├── assets ├── Inter-Regular-subset.woff ├── Inter-Regular-subset.woff2 ├── README.md ├── css │ └── tailwind.css ├── inter-subset.css └── nuxtguide-logo.svg ├── components ├── ArticleCard.vue ├── ArticleCardBody.vue ├── ArticleGrid.vue ├── ImageSrcSet.vue ├── Logo.vue ├── Pagination.vue ├── README.md ├── RelatedItems.vue └── SignIn.vue ├── layouts ├── README.md └── default.vue ├── middleware ├── README.md └── router-auth.js ├── now.json ├── nuxt.config.js ├── package.json ├── pages ├── README.md ├── _type │ ├── _slug.vue │ └── index.vue ├── createaccount.vue ├── index.vue ├── login.vue ├── page │ └── _page.vue ├── pages │ └── _slug.vue └── tagged │ └── _id.vue ├── plugins ├── README.md ├── filters.js ├── flip.js ├── lazy.js ├── menu.js ├── suggest.js └── timeago.js ├── static ├── README.md ├── _headers ├── _redirects ├── favicon.ico └── fonts │ ├── Inter-Black.woff │ ├── Inter-Black.woff2 │ ├── Inter-BlackItalic.woff │ ├── Inter-BlackItalic.woff2 │ ├── Inter-Bold.woff │ ├── Inter-Bold.woff2 │ ├── Inter-BoldItalic.woff │ ├── Inter-BoldItalic.woff2 │ ├── Inter-ExtraBold.woff │ ├── Inter-ExtraBold.woff2 │ ├── Inter-ExtraBoldItalic.woff │ ├── Inter-ExtraBoldItalic.woff2 │ ├── Inter-ExtraLight-BETA.woff │ ├── Inter-ExtraLight-BETA.woff2 │ ├── Inter-ExtraLightItalic-BETA.woff │ ├── Inter-ExtraLightItalic-BETA.woff2 │ ├── Inter-Italic.woff │ ├── Inter-Italic.woff2 │ ├── Inter-Light-BETA.woff │ ├── Inter-Light-BETA.woff2 │ ├── Inter-LightItalic-BETA.woff │ ├── Inter-LightItalic-BETA.woff2 │ ├── Inter-Medium.woff │ ├── Inter-Medium.woff2 │ ├── Inter-MediumItalic.woff │ ├── Inter-MediumItalic.woff2 │ ├── Inter-Regular.css │ ├── Inter-Regular.woff │ ├── Inter-Regular.woff2 │ ├── Inter-SemiBold.woff │ ├── Inter-SemiBold.woff2 │ ├── Inter-SemiBoldItalic.woff │ ├── Inter-SemiBoldItalic.woff2 │ ├── Inter-Thin-BETA.woff │ ├── Inter-Thin-BETA.woff2 │ ├── Inter-ThinItalic-BETA.woff │ ├── Inter-ThinItalic-BETA.woff2 │ └── inter.css ├── store ├── README.md └── index.js ├── tailwind.config.js └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/.gitignore -------------------------------------------------------------------------------- /.nowignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/.nowignore -------------------------------------------------------------------------------- /.yarnclean: -------------------------------------------------------------------------------- 1 | *.yaml 2 | *.md 3 | *.lock 4 | LICENSE 5 | CHANGELOG 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/README.md -------------------------------------------------------------------------------- /assets/Inter-Regular-subset.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/assets/Inter-Regular-subset.woff -------------------------------------------------------------------------------- /assets/Inter-Regular-subset.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/assets/Inter-Regular-subset.woff2 -------------------------------------------------------------------------------- /assets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/assets/README.md -------------------------------------------------------------------------------- /assets/css/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/assets/css/tailwind.css -------------------------------------------------------------------------------- /assets/inter-subset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/assets/inter-subset.css -------------------------------------------------------------------------------- /assets/nuxtguide-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/assets/nuxtguide-logo.svg -------------------------------------------------------------------------------- /components/ArticleCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/components/ArticleCard.vue -------------------------------------------------------------------------------- /components/ArticleCardBody.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/components/ArticleCardBody.vue -------------------------------------------------------------------------------- /components/ArticleGrid.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/components/ArticleGrid.vue -------------------------------------------------------------------------------- /components/ImageSrcSet.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/components/ImageSrcSet.vue -------------------------------------------------------------------------------- /components/Logo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/components/Logo.vue -------------------------------------------------------------------------------- /components/Pagination.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/components/Pagination.vue -------------------------------------------------------------------------------- /components/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/components/README.md -------------------------------------------------------------------------------- /components/RelatedItems.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/components/RelatedItems.vue -------------------------------------------------------------------------------- /components/SignIn.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/components/SignIn.vue -------------------------------------------------------------------------------- /layouts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/layouts/README.md -------------------------------------------------------------------------------- /layouts/default.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/layouts/default.vue -------------------------------------------------------------------------------- /middleware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/middleware/README.md -------------------------------------------------------------------------------- /middleware/router-auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/middleware/router-auth.js -------------------------------------------------------------------------------- /now.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/now.json -------------------------------------------------------------------------------- /nuxt.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/nuxt.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/package.json -------------------------------------------------------------------------------- /pages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/pages/README.md -------------------------------------------------------------------------------- /pages/_type/_slug.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/pages/_type/_slug.vue -------------------------------------------------------------------------------- /pages/_type/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/pages/_type/index.vue -------------------------------------------------------------------------------- /pages/createaccount.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/pages/createaccount.vue -------------------------------------------------------------------------------- /pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/pages/index.vue -------------------------------------------------------------------------------- /pages/login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/pages/login.vue -------------------------------------------------------------------------------- /pages/page/_page.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/pages/page/_page.vue -------------------------------------------------------------------------------- /pages/pages/_slug.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/pages/pages/_slug.vue -------------------------------------------------------------------------------- /pages/tagged/_id.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/pages/tagged/_id.vue -------------------------------------------------------------------------------- /plugins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/plugins/README.md -------------------------------------------------------------------------------- /plugins/filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/plugins/filters.js -------------------------------------------------------------------------------- /plugins/flip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/plugins/flip.js -------------------------------------------------------------------------------- /plugins/lazy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/plugins/lazy.js -------------------------------------------------------------------------------- /plugins/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/plugins/menu.js -------------------------------------------------------------------------------- /plugins/suggest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/plugins/suggest.js -------------------------------------------------------------------------------- /plugins/timeago.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/plugins/timeago.js -------------------------------------------------------------------------------- /static/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/static/README.md -------------------------------------------------------------------------------- /static/_headers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/static/_headers -------------------------------------------------------------------------------- /static/_redirects: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/static/_redirects -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/fonts/Inter-Black.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/static/fonts/Inter-Black.woff -------------------------------------------------------------------------------- /static/fonts/Inter-Black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/static/fonts/Inter-Black.woff2 -------------------------------------------------------------------------------- /static/fonts/Inter-BlackItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/static/fonts/Inter-BlackItalic.woff -------------------------------------------------------------------------------- /static/fonts/Inter-BlackItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/static/fonts/Inter-BlackItalic.woff2 -------------------------------------------------------------------------------- /static/fonts/Inter-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/static/fonts/Inter-Bold.woff -------------------------------------------------------------------------------- /static/fonts/Inter-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/static/fonts/Inter-Bold.woff2 -------------------------------------------------------------------------------- /static/fonts/Inter-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/static/fonts/Inter-BoldItalic.woff -------------------------------------------------------------------------------- /static/fonts/Inter-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/static/fonts/Inter-BoldItalic.woff2 -------------------------------------------------------------------------------- /static/fonts/Inter-ExtraBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/static/fonts/Inter-ExtraBold.woff -------------------------------------------------------------------------------- /static/fonts/Inter-ExtraBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/static/fonts/Inter-ExtraBold.woff2 -------------------------------------------------------------------------------- /static/fonts/Inter-ExtraBoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/static/fonts/Inter-ExtraBoldItalic.woff -------------------------------------------------------------------------------- /static/fonts/Inter-ExtraBoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/static/fonts/Inter-ExtraBoldItalic.woff2 -------------------------------------------------------------------------------- /static/fonts/Inter-ExtraLight-BETA.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/static/fonts/Inter-ExtraLight-BETA.woff -------------------------------------------------------------------------------- /static/fonts/Inter-ExtraLight-BETA.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/static/fonts/Inter-ExtraLight-BETA.woff2 -------------------------------------------------------------------------------- /static/fonts/Inter-ExtraLightItalic-BETA.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/static/fonts/Inter-ExtraLightItalic-BETA.woff -------------------------------------------------------------------------------- /static/fonts/Inter-ExtraLightItalic-BETA.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/static/fonts/Inter-ExtraLightItalic-BETA.woff2 -------------------------------------------------------------------------------- /static/fonts/Inter-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/static/fonts/Inter-Italic.woff -------------------------------------------------------------------------------- /static/fonts/Inter-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/static/fonts/Inter-Italic.woff2 -------------------------------------------------------------------------------- /static/fonts/Inter-Light-BETA.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/static/fonts/Inter-Light-BETA.woff -------------------------------------------------------------------------------- /static/fonts/Inter-Light-BETA.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/static/fonts/Inter-Light-BETA.woff2 -------------------------------------------------------------------------------- /static/fonts/Inter-LightItalic-BETA.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/static/fonts/Inter-LightItalic-BETA.woff -------------------------------------------------------------------------------- /static/fonts/Inter-LightItalic-BETA.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/static/fonts/Inter-LightItalic-BETA.woff2 -------------------------------------------------------------------------------- /static/fonts/Inter-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/static/fonts/Inter-Medium.woff -------------------------------------------------------------------------------- /static/fonts/Inter-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/static/fonts/Inter-Medium.woff2 -------------------------------------------------------------------------------- /static/fonts/Inter-MediumItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/static/fonts/Inter-MediumItalic.woff -------------------------------------------------------------------------------- /static/fonts/Inter-MediumItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/static/fonts/Inter-MediumItalic.woff2 -------------------------------------------------------------------------------- /static/fonts/Inter-Regular.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/static/fonts/Inter-Regular.css -------------------------------------------------------------------------------- /static/fonts/Inter-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/static/fonts/Inter-Regular.woff -------------------------------------------------------------------------------- /static/fonts/Inter-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/static/fonts/Inter-Regular.woff2 -------------------------------------------------------------------------------- /static/fonts/Inter-SemiBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/static/fonts/Inter-SemiBold.woff -------------------------------------------------------------------------------- /static/fonts/Inter-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/static/fonts/Inter-SemiBold.woff2 -------------------------------------------------------------------------------- /static/fonts/Inter-SemiBoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/static/fonts/Inter-SemiBoldItalic.woff -------------------------------------------------------------------------------- /static/fonts/Inter-SemiBoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/static/fonts/Inter-SemiBoldItalic.woff2 -------------------------------------------------------------------------------- /static/fonts/Inter-Thin-BETA.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/static/fonts/Inter-Thin-BETA.woff -------------------------------------------------------------------------------- /static/fonts/Inter-Thin-BETA.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/static/fonts/Inter-Thin-BETA.woff2 -------------------------------------------------------------------------------- /static/fonts/Inter-ThinItalic-BETA.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/static/fonts/Inter-ThinItalic-BETA.woff -------------------------------------------------------------------------------- /static/fonts/Inter-ThinItalic-BETA.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/static/fonts/Inter-ThinItalic-BETA.woff2 -------------------------------------------------------------------------------- /static/fonts/inter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/static/fonts/inter.css -------------------------------------------------------------------------------- /store/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/store/README.md -------------------------------------------------------------------------------- /store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/store/index.js -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jake-101/nuxtguide/HEAD/yarn.lock --------------------------------------------------------------------------------