Compare commits

...

4 Commits

Author SHA1 Message Date
ahasani bfa7413dfd debug for build 2026-07-26 00:25:35 +03:30
ahasani aa5b883a1c debug for build 2026-07-25 19:58:10 +03:30
ahasani 0670f4462c debug for build 2026-07-25 19:51:20 +03:30
ahasani 27977b1018 debug window on contact page 2026-07-25 19:45:04 +03:30
4 changed files with 1029 additions and 7425 deletions
-6459
View File
File diff suppressed because it is too large Load Diff
+1021 -964
View File
File diff suppressed because it is too large Load Diff
+1 -2
View File
@@ -1,12 +1,11 @@
import images from '@/assets/images/images';
import InnerPageBanner from '@/components/layout/innerPages/banner';
import ContactMap from '@/components/layout/map';
import ContactMap from '@/components/layout/map/MapWrapper';
import ContactForm from '@/components/pages/contact/ContactMeForm';
import TouchUs from '@/components/pages/contact/TouchUs';
import Image from 'next/image';
import { getTranslations, setRequestLocale } from 'next-intl/server';
import { IPageParams } from '@/models/layout';
import Head from 'next/head';
export async function generateMetadata({ params }: { params: IPageParams }) {
const { locale } = await params;
+7
View File
@@ -0,0 +1,7 @@
'use client';
import dynamic from 'next/dynamic';
const ContactMap = dynamic(() => import('./index'), { ssr: false });
export default ContactMap;