├── .github └── workflows │ └── build-and-deploy.yaml ├── .gitignore ├── .prettierrc.json ├── LICENSE ├── README.md ├── app.vue ├── components └── trs-summary.vue ├── composables └── useReturnToSummary.ts ├── layouts ├── default.vue └── plain.vue ├── nuxt.config.ts ├── package.json ├── pages ├── admin │ ├── access-denied.vue │ ├── im-an-old-fart.vue │ └── index.vue ├── certificate.vue ├── check-your-answers.vue ├── colour.vue ├── confirmation.vue ├── cookies.vue ├── description.vue ├── drawing.vue ├── index.vue ├── select-teeth.vue └── your-details.vue ├── plugins ├── govuk-vue.js └── matomo.client.js ├── public ├── favicon.ico ├── images │ ├── crest.svg │ ├── department-of-teeth.png │ ├── department-of-teeth.svg │ ├── favicon.svg │ └── og-image.png └── robots.txt ├── server └── tsconfig.json ├── stores ├── response.ts └── settings.ts └── tsconfig.json /.github/workflows/build-and-deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matteason/tooth-reimbursement-service/HEAD/.github/workflows/build-and-deploy.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matteason/tooth-reimbursement-service/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matteason/tooth-reimbursement-service/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matteason/tooth-reimbursement-service/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matteason/tooth-reimbursement-service/HEAD/README.md -------------------------------------------------------------------------------- /app.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matteason/tooth-reimbursement-service/HEAD/app.vue -------------------------------------------------------------------------------- /components/trs-summary.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matteason/tooth-reimbursement-service/HEAD/components/trs-summary.vue -------------------------------------------------------------------------------- /composables/useReturnToSummary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matteason/tooth-reimbursement-service/HEAD/composables/useReturnToSummary.ts -------------------------------------------------------------------------------- /layouts/default.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matteason/tooth-reimbursement-service/HEAD/layouts/default.vue -------------------------------------------------------------------------------- /layouts/plain.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matteason/tooth-reimbursement-service/HEAD/layouts/plain.vue -------------------------------------------------------------------------------- /nuxt.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matteason/tooth-reimbursement-service/HEAD/nuxt.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matteason/tooth-reimbursement-service/HEAD/package.json -------------------------------------------------------------------------------- /pages/admin/access-denied.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matteason/tooth-reimbursement-service/HEAD/pages/admin/access-denied.vue -------------------------------------------------------------------------------- /pages/admin/im-an-old-fart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matteason/tooth-reimbursement-service/HEAD/pages/admin/im-an-old-fart.vue -------------------------------------------------------------------------------- /pages/admin/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matteason/tooth-reimbursement-service/HEAD/pages/admin/index.vue -------------------------------------------------------------------------------- /pages/certificate.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matteason/tooth-reimbursement-service/HEAD/pages/certificate.vue -------------------------------------------------------------------------------- /pages/check-your-answers.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matteason/tooth-reimbursement-service/HEAD/pages/check-your-answers.vue -------------------------------------------------------------------------------- /pages/colour.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matteason/tooth-reimbursement-service/HEAD/pages/colour.vue -------------------------------------------------------------------------------- /pages/confirmation.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matteason/tooth-reimbursement-service/HEAD/pages/confirmation.vue -------------------------------------------------------------------------------- /pages/cookies.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matteason/tooth-reimbursement-service/HEAD/pages/cookies.vue -------------------------------------------------------------------------------- /pages/description.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matteason/tooth-reimbursement-service/HEAD/pages/description.vue -------------------------------------------------------------------------------- /pages/drawing.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matteason/tooth-reimbursement-service/HEAD/pages/drawing.vue -------------------------------------------------------------------------------- /pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matteason/tooth-reimbursement-service/HEAD/pages/index.vue -------------------------------------------------------------------------------- /pages/select-teeth.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matteason/tooth-reimbursement-service/HEAD/pages/select-teeth.vue -------------------------------------------------------------------------------- /pages/your-details.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matteason/tooth-reimbursement-service/HEAD/pages/your-details.vue -------------------------------------------------------------------------------- /plugins/govuk-vue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matteason/tooth-reimbursement-service/HEAD/plugins/govuk-vue.js -------------------------------------------------------------------------------- /plugins/matomo.client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matteason/tooth-reimbursement-service/HEAD/plugins/matomo.client.js -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matteason/tooth-reimbursement-service/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/images/crest.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matteason/tooth-reimbursement-service/HEAD/public/images/crest.svg -------------------------------------------------------------------------------- /public/images/department-of-teeth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matteason/tooth-reimbursement-service/HEAD/public/images/department-of-teeth.png -------------------------------------------------------------------------------- /public/images/department-of-teeth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matteason/tooth-reimbursement-service/HEAD/public/images/department-of-teeth.svg -------------------------------------------------------------------------------- /public/images/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matteason/tooth-reimbursement-service/HEAD/public/images/favicon.svg -------------------------------------------------------------------------------- /public/images/og-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matteason/tooth-reimbursement-service/HEAD/public/images/og-image.png -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /server/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../.nuxt/tsconfig.server.json" 3 | } 4 | -------------------------------------------------------------------------------- /stores/response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matteason/tooth-reimbursement-service/HEAD/stores/response.ts -------------------------------------------------------------------------------- /stores/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matteason/tooth-reimbursement-service/HEAD/stores/settings.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matteason/tooth-reimbursement-service/HEAD/tsconfig.json --------------------------------------------------------------------------------