diff --git a/apps/devchoices-next/public/assets/data/questions.ts b/apps/devchoices-next/public/assets/data/questions.ts index b70865b..95ebe3a 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: 'gui-or-cli', + choiceLeft: { + title: 'GUI', + img_path: '/assets/img/gui.png', + }, + choiceRight: { + title: 'CLI', + img_path: '/assets/img/cli.jpg', + }, + }, ] diff --git a/apps/devchoices-next/public/assets/img-previews/preview-gui-or-cli.jpg b/apps/devchoices-next/public/assets/img-previews/preview-gui-or-cli.jpg new file mode 100644 index 0000000..b9e2fcb Binary files /dev/null and b/apps/devchoices-next/public/assets/img-previews/preview-gui-or-cli.jpg differ diff --git a/apps/devchoices-next/public/assets/img/cli.jpg b/apps/devchoices-next/public/assets/img/cli.jpg new file mode 100644 index 0000000..326ee99 Binary files /dev/null and b/apps/devchoices-next/public/assets/img/cli.jpg differ diff --git a/apps/devchoices-next/public/assets/img/gui.png b/apps/devchoices-next/public/assets/img/gui.png new file mode 100644 index 0000000..c4e8ae1 Binary files /dev/null and b/apps/devchoices-next/public/assets/img/gui.png differ