101 lines
3.7 KiB
TypeScript
101 lines
3.7 KiB
TypeScript
'use client';
|
|
|
|
import routeFactory from '@/assets/constants/routeFactory';
|
|
import images from '@/assets/images/images';
|
|
import AchievementTextBox from '@/components/layout/achievementTextBox';
|
|
import SectionTitle from '@/components/layout/sectionTitle';
|
|
import Button from '@/components/uikit/button';
|
|
import { TLocales } from '@/models/layout';
|
|
import { useTranslations } from 'next-intl';
|
|
import { useParams } from 'next/navigation';
|
|
|
|
export default function AboutTopInfo() {
|
|
const t = useTranslations();
|
|
const params = useParams();
|
|
const locale = params.locale as TLocales;
|
|
const routes = routeFactory(t, locale);
|
|
|
|
const topInfoAchievementTitles = [
|
|
t('com_about_info_achievements_1'),
|
|
t('com_about_info_achievements_2'),
|
|
t('com_about_info_achievements_3'),
|
|
t('com_about_info_achievements_4'),
|
|
];
|
|
|
|
return (
|
|
<div className="w-white relative w-full py-28 max-lg:pt-6 max-lg:pb-16">
|
|
<div className="absolute inset-0 z-10 flex items-end justify-start max-md:hidden">
|
|
<img src={images.factoryVector.src} className="max-h-56 w-auto" />
|
|
</div>
|
|
<div className="relative z-20 container mx-auto grid grid-cols-1 items-stretch gap-10 lg:grid-cols-2">
|
|
<div className="lg:hidden">
|
|
{' '}
|
|
<div>
|
|
<SectionTitle
|
|
title={t('pages_about_title')}
|
|
description={t('com_about_info_title')}
|
|
description_bold={t('com_about_info_title_bold')}
|
|
locale={locale}
|
|
/>
|
|
</div>
|
|
<div className="mt-3">
|
|
<p className="text-base font-light text-gray-300">
|
|
{t('com_about_info_description')}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
<div className="relative h-full">
|
|
<div className="grid h-44 grid-cols-2 gap-4 overflow-hidden">
|
|
<div className="h-full overflow-hidden rounded-3xl">
|
|
<img
|
|
src={images.aboutImg_1.src}
|
|
className="h-full w-full object-cover"
|
|
/>
|
|
</div>
|
|
<div className="flex items-center justify-center gap-5 pb-5">
|
|
<span className="text-primary text-5xl">+25</span>
|
|
<span className="text-base text-gray-300">
|
|
{t('com_about_info_years_experience')}
|
|
</span>
|
|
</div>
|
|
</div>
|
|
<div className="absolute right-0 bottom-0 h-full w-[70%] pt-32 max-lg:relative max-lg:-top-11 max-lg:float-end max-lg:p-0">
|
|
<div className="h-full w-full overflow-hidden rounded-3xl border-[12px] border-white max-lg:aspect-[0.95] max-lg:h-auto">
|
|
<img
|
|
src={images.aboutImg_2.src}
|
|
className="h-full w-full object-cover"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div className="flex flex-col pt-16 pb-20 max-lg:-mt-16 max-lg:p-0">
|
|
<div className="max-lg:hidden">
|
|
<SectionTitle
|
|
title={t('pages_about_title')}
|
|
description={t('com_about_info_title')}
|
|
description_bold={t('com_about_info_title_bold')}
|
|
locale={locale}
|
|
/>
|
|
</div>
|
|
|
|
<div className="mt-5 max-lg:hidden">
|
|
<p className="text-base font-light text-gray-300">
|
|
{t('com_about_info_description')}
|
|
</p>
|
|
</div>
|
|
<div className="mt-2 flex flex-col gap-4">
|
|
{topInfoAchievementTitles.map((title, index) => (
|
|
<AchievementTextBox key={index} title={title} />
|
|
))}
|
|
</div>
|
|
<div className="mt-10">
|
|
<Button endIcon="showMore" link={routes.contact.route()}>
|
|
{t('pages_contact_title')}
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|