diff --git a/.gitignore b/.gitignore index 79518f71..5b72c466 100644 --- a/.gitignore +++ b/.gitignore @@ -19,3 +19,6 @@ Thumbs.db # Vite vite.config.js.timestamp-* vite.config.ts.timestamp-* + +# packaging +package-lock.json \ No newline at end of file diff --git a/src/lib/components/AbstractContent.svelte b/src/lib/components/AbstractContent.svelte new file mode 100644 index 00000000..21d32d99 --- /dev/null +++ b/src/lib/components/AbstractContent.svelte @@ -0,0 +1,112 @@ + + + + +
+ + MONDEY Logo + + + + + Home + Aktuelles + Downloads + Kontakt + + + + + Darkmode ein- oder ausschalten + +
+ +
{userName}
+ Registrieren oder einloggen +
+
+
+ + +
+ +
+ +{#if showBottomNavbar} + + + + + Zur letzten Seite + + + + Hilfe + + + + Zur nächsten Seite + + +{/if} diff --git a/src/lib/components/Frontpage.svelte b/src/lib/components/Frontpage.svelte new file mode 100644 index 00000000..2738b764 --- /dev/null +++ b/src/lib/components/Frontpage.svelte @@ -0,0 +1,107 @@ + + + + + +
+ Was ist Mondey? +
+

+ Mondey ist ein wissentschaftlich geprüftes Programm zure Dokumentation der Entwicklung von + Kindern bis 6 Jahren. +

+ +
+ + +
+ Wozu ist Mondey gut? +
+

+ Anhand ihrer Bewertungen der Fähigkeiten des Kindes erhalten sie Feedback zum + Entwicklungsstand des Kindes und können so frühzeitig Fördermaßnahmen einleiten. Dies folgt + einem übersichtlichen Ampelsystem. +

+ +
+ + +
+ Was umfasst Mondey? +
+

+ Mondey umfasst unterschiedliche Entwicklungsbereiche wie von Kindern im Alter von 0 bis + 6 Jahren. Dazu gehören unter anderem Grob-und feinmotorik, Wahrnehmung, Denkne, Sprache und Soziale + Beziehungen. +

+ +
+ + +
+ Wie funktioniert Mondey? +
+

+ Sie bewerten wie gut das Kind bestimmte Alltagshandlungen durchführen kann mit Hilfe einer + Liste von Fragen. +

+ +
+ + +
+ Wo fange ich an? +
+

+ Um zu beginnen, müssen sie sich registrieren und ein Profil für ihr Kind anlegen. +

+ +
+ + +
dummy?
+

+ Lorem, ipsum dolor sit amet consectetur adipisicing elit. Impedit repellendus distinctio + facilis! Voluptas corrupti recusandae sapiente doloribus voluptatem fugiat ducimus. + +

+ +
+ + +
dummy?
+

+ Lorem, ipsum dolor sit amet consectetur adipisicing elit. Impedit repellendus distinctio + facilis! Voluptas corrupti recusandae sapiente doloribus voluptatem fugiat ducimus. + +

+ +
+ + +
dummy?
+

+ Lorem, ipsum dolor sit amet consectetur adipisicing elit. Impedit repellendus distinctio + facilis! Voluptas corrupti recusandae sapiente doloribus voluptatem fugiat ducimus. + +

+ +
+ + +
dummy?
+

+ Lorem, ipsum dolor sit amet consectetur adipisicing elit. Impedit repellendus distinctio + facilis! Voluptas corrupti recusandae sapiente doloribus voluptatem fugiat ducimus. + +

+ +
+
diff --git a/src/routes/+page.svelte b/src/routes/+page.svelte index 22bb44db..403e4cb3 100644 --- a/src/routes/+page.svelte +++ b/src/routes/+page.svelte @@ -1,31 +1,8 @@ -

This is a work-in-progress prototype frontend for the MONDEY website

- - - MONDEY Logo - - - - - Home - Downloads - Aktuelles - Kontakt - - - -
+ + + diff --git a/tailwind.config.ts b/tailwind.config.ts index 18500ece..82a96e27 100644 --- a/tailwind.config.ts +++ b/tailwind.config.ts @@ -1,5 +1,5 @@ -import flowbitePlugin from 'flowbite/plugin'; import typographyPlugin from '@tailwindcss/typography'; +import flowbitePlugin from 'flowbite/plugin'; import type { Config } from 'tailwindcss'; @@ -25,7 +25,20 @@ export default { 800: '#CC4522', 900: '#A5371B' } - } + }, + fontSize: { + 'xs': '.75rem', + 'sm': '.875rem', + 'base': '1rem', + 'lg': '1.125rem', + 'xl': '1.25rem', + '2xl': '1.5rem', + '3xl': '1.875rem', + '4xl': '2.25rem', + '5xl': '3rem', + '6xl': '4rem', + '7xl': '5rem' + } } },