added tons of features

This commit is contained in:
2025-02-05 08:01:14 +02:00
parent 4ae0d8c545
commit 8138da6b1d
195 changed files with 12619 additions and 415 deletions

View 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>
)
}