95 lines
5.0 KiB
Vue
95 lines
5.0 KiB
Vue
<template>
|
|
<UiContainer class="space-y-[55px] sm:space-y-[75px] md:space-y-[100px]">
|
|
<div class="grid grid-cols-1 xl:grid-cols-2 gap-[10px] sm:gap-[30px]">
|
|
<div class="flex flex-col gap-[10px] sm:gap-[30px]">
|
|
<div
|
|
class="h-[240px] sm:h-[400px] md:h-[490px] bg-block p-[25px] sm:p-[50px] rounded-2xl flex flex-col justify-between">
|
|
<div>
|
|
<h1 class="h1-big text-accent-green-light mb-6 md:mb-10">
|
|
{{ component.section_lang_data.title }}
|
|
</h1>
|
|
<p class="text-text-light sm:text-xl md:text-2xl font-medium">{{
|
|
component.section_lang_data.description }}</p>
|
|
</div>
|
|
<UiButtonArrow type="fill" :arrow="true">{{ $t('buy_gold') }}</UiButtonArrow>
|
|
</div>
|
|
<div class="flex gap-[10px] sm:gap-[30px]">
|
|
<div class="rounded-2xl h-[155px] sm:h-[225px] md:h-[280px] w-full" :style="{
|
|
backgroundImage: `url('/api/files/${component.image_collection}/${component.section_id}/${component.section_img[1]}?thumb=1200x0')`,
|
|
backgroundSize: 'cover',
|
|
backgroundPosition: 'center',
|
|
}" />
|
|
<div class="rounded-2xl h-[155px] sm:h-[225px] md:h-[280px] w-full" :style="{
|
|
backgroundImage: `url('/api/files/${component.image_collection}/${component.section_id}/${component.section_img[2]}?thumb=1200x0')`,
|
|
backgroundSize: 'cover',
|
|
backgroundPosition: 'center',
|
|
}" />
|
|
<div class="hidden sm:block xl:hidden h-[225px] md:h-[280px] rounded-2xl w-full border border-block"
|
|
:style="{
|
|
backgroundImage: `url('/api/files/${component.image_collection}/${component.section_id}/${component.section_img[0]}?thumb=1200x0')`,
|
|
backgroundSize: 'cover',
|
|
backgroundPosition: 'center',
|
|
}" />
|
|
</div>
|
|
</div>
|
|
<div class="sm:hidden xl:block h-[326px] md:h-auto min-w-[40%] xl:min-w-[60%] rounded-2xl border border-block"
|
|
:style="{
|
|
backgroundImage: `url('/api/files/${component.image_collection}/${component.section_id}/${component.section_img[0]}?thumb=1200x0')`,
|
|
backgroundSize: 'cover',
|
|
backgroundPosition: 'center',
|
|
}" />
|
|
</div>
|
|
<div class="grid md:grid-cols-1 xl:grid-cols-2 gap-[20px] md:auto-rows-fr sm:gap-[30px]">
|
|
<div class="space-25-55-75">
|
|
<h2 class="h2-bold-bounded">{{ component.section_lang_data.section_2.title }}</h2>
|
|
<div class="space-y-[40px] sm:space-y-[50px]">
|
|
<p v-for="(item, index) in component.section_lang_data.section_2.text_blocks" :key="index">{{ item
|
|
}}</p>
|
|
</div>
|
|
</div>
|
|
<div class="w-full md:h-full rounded-2xl h-[327px] sm:h-[550px]" :style="{
|
|
backgroundImage: `url('/api/files/${component.image_collection}/${component.section_id}/${component.section_img[3]}?thumb=1200x0')`,
|
|
backgroundSize: 'cover',
|
|
backgroundPosition: 'center',
|
|
}" />
|
|
</div>
|
|
<div class="grid grid-cols-1 sm:grid-cols-2 xl:grid-cols-4 gap-y-[25px] sm:gap-y-[55px] xl:gap-y-0 gap-x-[30px]">
|
|
<h2 class="h2-bold-bounded sm:col-start-1 sm:col-end-3">{{ component.section_lang_data.section_3.title }}</h2>
|
|
<div v-for="(item, index) in component.section_lang_data.section_3.text_blocks" :key="index"
|
|
class="flex flex-col justify-between space-25-55">
|
|
<p class="md:px-4 xl:p-0">{{ item }}</p>
|
|
<div class=" rounded-2xl h-[227px] sm:h-[281px]" :style="{
|
|
backgroundImage: `url('/api/files/${component.image_collection}/${component.section_id}/${component.section_img[index + 4]}?thumb=1200x0')`,
|
|
backgroundSize: 'cover',
|
|
backgroundPosition: 'center',
|
|
}" />
|
|
</div>
|
|
<div class="sm:col-start-1 sm:col-end-3 xl:col-start-3 xl:col-end-5 flex justify-center xl:items-end xl:justify-end">
|
|
<UiButtonArrow type="fill" :arrow="true">{{ $t('buy_gold') }}</UiButtonArrow>
|
|
</div>
|
|
</div>
|
|
</UiContainer>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
const props = defineProps<{ component: Component }>();
|
|
type Component = {
|
|
image_collection: string;
|
|
section_id: string;
|
|
section_img: string;
|
|
section_lang_data: {
|
|
title: string;
|
|
description: string;
|
|
button_label: string;
|
|
section_2: {
|
|
title: string;
|
|
text_blocks: []
|
|
},
|
|
section_3: {
|
|
title: string;
|
|
text_blocks: []
|
|
}
|
|
};
|
|
};
|
|
</script>
|