diff --git a/apps/devchoices-next/public/assets/data/questions.ts b/apps/devchoices-next/public/assets/data/questions.ts index b70865b..3b94963 100644 --- a/apps/devchoices-next/public/assets/data/questions.ts +++ b/apps/devchoices-next/public/assets/data/questions.ts @@ -320,4 +320,15 @@ export const questions: QuestionInterface[] = [ img_path: '/assets/img/rebase.jpg', }, }, + { + slug: 'vim-or-nano', + choiceLeft: { + title: 'Vim', + img_path: '/assets/img/vim.png', + }, + choiceRight: { + title: 'Nano', + img_path: '/assets/img/nano.png', + }, + }, ] diff --git a/apps/devchoices-next/public/assets/img/nano.png b/apps/devchoices-next/public/assets/img/nano.png new file mode 100644 index 0000000..bb18d11 Binary files /dev/null and b/apps/devchoices-next/public/assets/img/nano.png differ diff --git a/apps/devchoices-next/public/assets/img/vim.png b/apps/devchoices-next/public/assets/img/vim.png new file mode 100644 index 0000000..7a3a070 Binary files /dev/null and b/apps/devchoices-next/public/assets/img/vim.png differ