-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add some dummy content to demonstarte workings of abstractcontent
- Loading branch information
Showing
3 changed files
with
74 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
<script> | ||
import { Button, Card, Gallery } from 'flowbite-svelte'; | ||
import { ArrowRightOutline } from 'flowbite-svelte-icons'; | ||
// Define the styles for the header, paragraph, arrow, and button | ||
const headerStyle = 'mb-2 text-2xl font-bold tracking-tight text-gray-900 dark:text-white'; | ||
const paragraphStyle = 'mb-3 font-normal text-gray-700 dark:text-gray-400 leading-tight'; | ||
const arrowStyle = 'ms-2 h-6 w-6 text-white'; | ||
const buttonStyle = 'w-fit'; | ||
</script> | ||
|
||
<!-- This is a dummy landing page that is only there to check that the AbstractComponent works as it should--> | ||
<Gallery class="grid-cols-2 gap-4 p-4"> | ||
<Card> | ||
<h5 class={headerStyle}>Was ist Mondey?</h5> | ||
<p class={paragraphStyle}> | ||
<i>Mondey</i> ist ein wissentschaftlich geprüftes Programm zure Dokumentation der Entwicklung von | ||
Kindern bis 6 Jahren. | ||
</p> | ||
<Button class={buttonStyle}>Mehr Info <ArrowRightOutline class={arrowStyle} /></Button> | ||
</Card> | ||
|
||
<Card> | ||
<h5 class={headerStyle}>Wozu ist Mondey gut?</h5> | ||
<p class={paragraphStyle}> | ||
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. | ||
</p> | ||
<Button class={buttonStyle}>Mehr Info <ArrowRightOutline class={arrowStyle} /></Button> | ||
</Card> | ||
|
||
<Card> | ||
<h5 class={headerStyle}>Was umfasst Mondey?</h5> | ||
<p class={paragraphStyle}> | ||
<i>Mondey</i> 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. | ||
</p> | ||
<Button class={buttonStyle}>Mehr Info <ArrowRightOutline class={arrowStyle} /></Button> | ||
</Card> | ||
|
||
<Card> | ||
<h5 class={headerStyle}>Wie funktioniert Mondey?</h5> | ||
<p class={paragraphStyle}> | ||
Sie bewerten wie gut das Kind bestimmte Alltagshandlungen durchführen kann mit Hilfe einer | ||
Liste von Fragen. | ||
</p> | ||
<Button class={buttonStyle}>Mehr Info <ArrowRightOutline class={arrowStyle} /></Button> | ||
</Card> | ||
|
||
<Card> | ||
<h5 class={headerStyle}>Wo fange ich an?</h5> | ||
<p class={paragraphStyle}> | ||
Um zu beginnen, müssen sie sich registrieren und ein Profil für ihr Kind anlegen. | ||
</p> | ||
<Button class={buttonStyle}>Los geht's <ArrowRightOutline class={arrowStyle} /></Button> | ||
</Card> | ||
</Gallery> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
<script> | ||
import AbstractContent from "$lib/components/AbstractContent.svelte"; | ||
import AbstractContent from '$lib/components/AbstractContent.svelte'; | ||
import Frontpage from '$lib/components/Frontpage.svelte'; | ||
</script> | ||
|
||
|
||
<AbstractContent /> | ||
<AbstractContent showBottomNavbar={false}> | ||
<Frontpage /> | ||
</AbstractContent> |