Rebased onto master

This commit is contained in:
Mawoka
2022-04-11 20:59:50 +02:00
parent c0ae705aab
commit c4886ec85f
3 changed files with 36 additions and 1 deletions
@@ -0,0 +1,6 @@
*.png
*.xcf
admin_overview.webp
results.webp
select.webp
solution.webp
+1 -1
View File
@@ -23,7 +23,7 @@ export const initLocalizationContext = () => {
const i18n = new I18nService();
const tranlator = new I18NextTranslationService(i18n);
// Setting the Svelte context
// skipcq: JS-0357
setLocalization({
t: tranlator.translate,
currentLanguage: tranlator.locale
+29
View File
@@ -0,0 +1,29 @@
<script lang="ts">
/* import AdminOverviewScreenshot from '$lib/assets/landing/admin_overview.png';
import SelectScreenshot from '$lib/assets/landing/select.webp';
import ResultsScreenshot from '$lib/assets/landing/results.webp';
import SolutionScreenshot from '$lib/assets/landing/solution.webp';*/
import SelectMockup from '$lib/assets/landing/select-mockup.webp';
import ResultsMockup from '$lib/assets/landing/results-mockup.webp';
import SolutionMockup from '$lib/assets/landing/solution-mockup.webp';
</script>
<div class="grid grid-cols-3 grow pt-4">
<h1 class="text-center h-fit text-3xl marck-script">1: Answer</h1>
<h1 class="text-center h-fit text-3xl marck-script">2: See what was right or wrong</h1>
<h1 class="text-center h-fit text-3xl marck-script">3: See how many were right or wrong</h1>
<div class="flex justify-center">
<img src={SelectMockup} class="max-h-80" alt="Select answer" />
</div>
<div class="flex justify-center">
<img src={SolutionMockup} class="max-h-80" alt="See right and wrong solutions" />
</div>
<div class="flex justify-center">
<img
src={ResultsMockup}
class="max-h-80"
alt="See results in comparison with other players"
/>
</div>
</div>