2025-06-05 17:00:07 +03:30
|
|
|
import images from '@/assets/images/images';
|
|
|
|
|
import InnerPageBanner from '@/components/layout/innerPages/banner';
|
|
|
|
|
import ContactMap from '@/components/layout/map';
|
|
|
|
|
import ContactForm from '@/components/pages/contact/ContactMeForm';
|
|
|
|
|
import TouchUs from '@/components/pages/contact/TouchUs';
|
|
|
|
|
import Image from 'next/image';
|
2025-06-07 16:31:52 +03:30
|
|
|
import { getTranslations } from 'next-intl/server';
|
2025-06-09 11:29:54 +03:30
|
|
|
import { IPageParams } from '@/models/layout';
|
2025-06-03 16:57:33 +03:30
|
|
|
|
2025-06-09 11:29:54 +03:30
|
|
|
export default async function Contact({ params }: { params: IPageParams }) {
|
|
|
|
|
const { locale } = await params;
|
|
|
|
|
|
|
|
|
|
const t = await getTranslations({ locale });
|
2025-06-03 16:57:33 +03:30
|
|
|
|
2025-06-05 17:00:07 +03:30
|
|
|
return (
|
|
|
|
|
<main className="flex flex-col items-center justify-between">
|
|
|
|
|
<InnerPageBanner
|
2025-06-07 16:31:52 +03:30
|
|
|
title={t('pages_contact_title')}
|
2025-06-05 17:00:07 +03:30
|
|
|
imageSrc={images.blogBanner.src}
|
|
|
|
|
/>
|
2025-06-03 16:57:33 +03:30
|
|
|
|
2025-06-07 16:27:10 +03:30
|
|
|
<div className="relative flex w-full flex-col bg-gray-200 pt-4 md:pt-28">
|
2025-06-09 17:14:44 +03:30
|
|
|
<div className="absolute inset-x-0 inset-y-64 z-2 flex items-end justify-start">
|
2025-06-07 16:27:10 +03:30
|
|
|
<div className="max-md:hidden md:w-1/2">
|
|
|
|
|
<Image
|
|
|
|
|
alt="footer-bg"
|
|
|
|
|
src={images.factoryVector}
|
|
|
|
|
className="h-full w-full object-cover"
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div className="container mx-auto flex w-full flex-col items-stretch overflow-hidden rounded-lg md:flex-row">
|
2025-06-05 17:00:07 +03:30
|
|
|
<TouchUs />
|
|
|
|
|
<ContactForm />
|
2025-06-03 16:57:33 +03:30
|
|
|
</div>
|
2025-06-07 16:27:10 +03:30
|
|
|
|
2025-06-05 17:00:07 +03:30
|
|
|
<div className="mt-4 w-full md:mt-28">
|
|
|
|
|
<div className="h-64 w-full overflow-hidden rounded-lg bg-gray-200">
|
|
|
|
|
<ContactMap />
|
2025-06-03 16:57:33 +03:30
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2025-06-05 17:00:07 +03:30
|
|
|
</main>
|
2025-06-03 16:57:33 +03:30
|
|
|
);
|
|
|
|
|
}
|