Files
classquiz-ai/frontend/src/lib/landing/landing-promo.svelte
T
2022-07-02 17:20:55 +02:00

134 lines
4.4 KiB
Svelte

<!--
- This Source Code Form is subject to the terms of the Mozilla Public
- License, v. 2.0. If a copy of the MPL was not distributed with this
- file, You can obtain one at https://mozilla.org/MPL/2.0/.
-->
<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';
import ImportSelectMockup from '$lib/assets/landing/import-select-mockup.webp';
import OverviewMockup from '$lib/assets/landing/overview-mockup.webp';
import { getLocalization } from '$lib/i18n';
const { t } = getLocalization();
let teacherTab = false;
</script>
<div class="grid grid-cols-1 overflow-hidden h-fit">
{#if teacherTab}
<div class="h-fit">
<!-- <h1 class='text-5xl marck-script text-center pt-4'>Teacher</h1>-->
<div class="grid lg:grid-cols-2 grow pt-4 transition ease-in-out">
<h1 class="text-center text-3xl marck-script">
1: {$t('index_page.create_or_import')}
</h1>
<h1 class="text-center text-3xl marck-script hidden lg:block">
2: {$t('index_page.see_all_quizzes')}
</h1>
<!-- <h1 class='text-center text-3xl marck-script'>3: See how many were right or wrong</h1>-->
<div class="flex justify-center">
<img src={ImportSelectMockup} class="w-4/6 align-top" alt="Select answer" />
</div>
<h1 class="text-center text-3xl marck-script lg:hidden block">
2: {$t('index_page.see_all_quizzes')}
</h1>
<div class="flex justify-center">
<img
src={OverviewMockup}
class="w-4/6 align-top"
alt="See right and wrong solutions"
/>
</div>
<!-- <div class='flex justify-center'>-->
<!-- <img-->
<!-- src={ResultsMockup}-->
<!-- class='max-h-80 align-top'-->
<!-- alt='See results in comparison with other players'-->
<!-- />-->
<!-- </div>-->
</div>
</div>
{:else}
<div class="h-fit">
<!-- <h1 class='text-5xl marck-script text-center pt-4'>Student</h1>-->
<div class="grid lg:grid-cols-3 grow pt-4 transition ease-in-out">
<h1 class="text-center text-3xl marck-script">1: {$t('words.answer')}</h1>
<h1 class="text-center text-3xl marck-script lg:block hidden">
2: {$t('index_page.see_what_true_and_false')}
</h1>
<h1 class="text-center text-3xl marck-script lg:block hidden">
3: {$t('index_page.see_how_many_true_and_false')}
</h1>
<div class="flex justify-center">
<img src={SelectMockup} class="w-4/6 align-top" alt="Select answer" />
</div>
<h1 class="text-center text-3xl marck-script lg:hidden block">
2: {$t('index_page.see_what_true_and_false')}
</h1>
<div class="flex justify-center">
<img
src={SolutionMockup}
class="w-4/6 align-top"
alt="See right and wrong solutions"
/>
</div>
<h1 class="text-center text-3xl marck-script lg:hidden block">
3: {$t('index_page.see_how_many_true_and_false')}
</h1>
<div class="flex justify-center">
<img
src={ResultsMockup}
class="w-4/6 align-top"
alt="See results in comparison with other players"
/>
</div>
</div>
</div>
{/if}
<div class="w-full h-fit pt-4">
<div class="flex justify-center">
<div class="flex justify-evenly lg:w-2/6">
{#if teacherTab}
<button
class="border border-blue-600 p-2 border-2 rounded hover:bg-gray-700 text-2xl"
on:click={() => {
teacherTab = true;
}}
>{$t('index_page.teachers_site')}
</button>
{:else}
<button
class="border border-black p-2 border-2 rounded hover:bg-gray-700 text-base"
class:border-black={!teacherTab}
class:text-base={!teacherTab}
on:click={() => {
teacherTab = true;
}}
>{$t('index_page.teachers_site')}
</button>
{/if}
<button
class="border border-black p-2 border-2 rounded hover:bg-gray-700"
class:border-blue-600={!teacherTab}
class:text-2xl={!teacherTab}
on:click={() => {
teacherTab = false;
}}
>{$t('index_page.students_site')}
</button>
</div>
</div>
</div>
</div>