added tons of features
This commit is contained in:
47
components/shared/above/index.tsx
Normal file
47
components/shared/above/index.tsx
Normal file
@@ -0,0 +1,47 @@
|
||||
'use client'
|
||||
|
||||
import {useTranslations} from 'next-intl'
|
||||
import Image from 'next/image'
|
||||
|
||||
import Fig1 from '@/public/images/above/fig-1.svg'
|
||||
import Fig2 from '@/public/images/above/fig-2.svg'
|
||||
import Fig3 from '@/public/images/above/fig-3.svg'
|
||||
|
||||
export default function Above() {
|
||||
const t = useTranslations('Banner.Above')
|
||||
|
||||
return (
|
||||
<div className='flex w-full items-end justify-center bg-brand-violet md:min-h-[43px] xl:min-h-[51px]'>
|
||||
<div className='mx-0 mb-0.5'>
|
||||
<Image
|
||||
width={72.79}
|
||||
height={38.95}
|
||||
src={Fig1}
|
||||
alt=''
|
||||
className='max-h-[35px]'
|
||||
/>
|
||||
</div>
|
||||
<div className='mx-0'>
|
||||
<Image
|
||||
width={80.21}
|
||||
height={43.78}
|
||||
src={Fig2}
|
||||
alt=''
|
||||
className='max-h-[41px]'
|
||||
/>
|
||||
</div>
|
||||
<div className='self-center font-medium text-brand-yellow'>
|
||||
{t('title')}
|
||||
</div>
|
||||
<div className='mx-1'>
|
||||
<Image
|
||||
width={98.89}
|
||||
height={47.27}
|
||||
src={Fig3}
|
||||
alt=''
|
||||
className='max-h-[37px]'
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user