From 34937fc3c99819a8f9fe7b8a11a5cba14a27ec03 Mon Sep 17 00:00:00 2001 From: Arthur DANJOU Date: Wed, 31 Jul 2024 18:24:08 +0200 Subject: [PATCH] Working --- app/app.config.ts | 5 +- app/app.vue | 97 +------- app/components/Modals.vue | 68 ++++++ app/components/Prononciation.vue | 68 ++++++ app/components/Terminaisons.vue | 67 +++++ app/components/Verbs.vue | 49 ++++ app/components/Words.vue | 49 ++++ package.json | 1 + pnpm-lock.yaml | 407 ++++++++++++++++--------------- types/index.ts | 114 --------- 10 files changed, 515 insertions(+), 410 deletions(-) create mode 100644 app/components/Modals.vue create mode 100644 app/components/Prononciation.vue create mode 100644 app/components/Terminaisons.vue create mode 100644 app/components/Verbs.vue create mode 100644 app/components/Words.vue delete mode 100644 types/index.ts diff --git a/app/app.config.ts b/app/app.config.ts index be18ccc..6e04508 100644 --- a/app/app.config.ts +++ b/app/app.config.ts @@ -1,14 +1,11 @@ export default defineAppConfig({ ui: { - gray: 'zinc', + gray: 'neutral', primary: 'red', container: { constrained: 'max-w-xl', padding: 'px-4 sm:px-6 lg:px-8 py-4', }, - divider: { - base: 'flex border-gray-700', - }, }, icon: { collections: ['heroicons', 'ph'], diff --git a/app/app.vue b/app/app.vue index 16db4bb..c5dcfa1 100644 --- a/app/app.vue +++ b/app/app.vue @@ -1,103 +1,20 @@