93 lines
2.8 KiB
Vue
93 lines
2.8 KiB
Vue
<script setup lang="ts">
|
|
// types
|
|
|
|
type Props = {
|
|
// brands: string[];
|
|
};
|
|
|
|
// props
|
|
|
|
const props = defineProps<Props>();
|
|
const {} = toRefs(props);
|
|
|
|
const brands = ref([
|
|
"/img/brands/brand-1.png",
|
|
"/img/brands/brand-2.png",
|
|
"/img/brands/brand-3.png",
|
|
"/img/brands/brand-4.png",
|
|
"/img/brands/brand-5.png",
|
|
"/img/brands/brand-6.png",
|
|
]);
|
|
</script>
|
|
|
|
<template>
|
|
<div class="relative w-full flex flex-col justify-center py-32 lg:py-48">
|
|
<div class="flex-col-center gap-6 mb-24 sm:mb-32 container">
|
|
<span class="typo-h-6 max-sm:text-xl md:typo-h-5 lg:typo-h-4 text-black"> مجله در ستون و سطرآنچ </span>
|
|
<p class="text-slate-500 text-center max-w-[750px] typo-p-sm md:typo-p-lg xl:typo-p-xl">
|
|
لورم ایپسوم متن ساختگی با تولید سادگی نامفهوم از صنعت چاپ و با استفاده از طراحان گرافیک است. چاپگرها و
|
|
متون بلکه روزنامه و مجله در ستون و سطرآنچنان که
|
|
</p>
|
|
</div>
|
|
<div class="-rotate-z-2 z-20 w-[110%] shadow-2xl shadow-black/7">
|
|
<Marquee
|
|
class="bg-blue-500 h-full"
|
|
:clone="true"
|
|
dir="ltr"
|
|
:duration="3"
|
|
>
|
|
<div class="flex items-center gap-12 sm:gap-20 px-6 sm:px-10 h-[90px] sm:h-[140px]">
|
|
<div class="text-[30px] text-white lg:text-[40px] mt-2 whitespace-nowrap font-semibold opacity-85">
|
|
HEYMLZ
|
|
</div>
|
|
<NuxtImg
|
|
src="/img/heymlz/heymlz-logo.png"
|
|
class="h-[25px] sm:h-[45px] invert"
|
|
/>
|
|
</div>
|
|
</Marquee>
|
|
</div>
|
|
|
|
<div class="rotate-z-2 z-10 w-[110%]">
|
|
<Marquee
|
|
class="bg-slate-100/70"
|
|
:direction="'reverse'"
|
|
:clone="true"
|
|
dir="ltr"
|
|
:duration="10"
|
|
>
|
|
<div
|
|
v-for="brand in brands"
|
|
:key="brand"
|
|
class="flex items-center px-6 sm:px-10 h-[90px] sm:h-[140px]"
|
|
>
|
|
<NuxtImg
|
|
:src="brand"
|
|
class="h-[25px] sm:h-[45px] grayscale opacity-25"
|
|
/>
|
|
</div>
|
|
</Marquee>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
<!-- <NuxtImg
|
|
src="/img/brands/brand-2.png"
|
|
class="h-[25px] sm:h-[45px]"
|
|
/>
|
|
<NuxtImg
|
|
src="/img/brands/brand-3.png"
|
|
class="h-[25px] sm:h-[45px]"
|
|
/>
|
|
<NuxtImg
|
|
src="/img/brands/brand-4.png"
|
|
class="h-[25px] sm:h-[45px]"
|
|
/>
|
|
<NuxtImg
|
|
src="/img/brands/brand-5.png"
|
|
class="h-[25px] sm:h-[45px]"
|
|
/>
|
|
<NuxtImg
|
|
src="/img/brands/brand-6.png"
|
|
class="h-[25px] sm:h-[45px]"
|
|
/> -->
|