fix: update metainfo
This commit is contained in:
@@ -1,12 +1,33 @@
|
||||
import { OcenkaAutoSud } from '@/views';
|
||||
import type { Metadata } from 'next';
|
||||
import { headers } from 'next/headers';
|
||||
import { metaInfo } from '@shared/lib';
|
||||
import { TMetainfo } from '@shared/types/metainfo';
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'Оценка автомобиля для суда | Компания ДИТРАСО',
|
||||
const metainfo: TMetainfo = {
|
||||
title: 'Оценка автомобиля для суда',
|
||||
description:
|
||||
'Услуги независимой оценки и судебной экспертизы в Сочи и Краснодаре. Тел. +7 (900) 241-34-34',
|
||||
companyName: 'Компания ДИТРАСО',
|
||||
phone: '+7 (900) 241-34-34',
|
||||
ogImageUrl: '/images/opengraph/main.png',
|
||||
};
|
||||
|
||||
export async function generateMetadata(): Promise<Metadata> {
|
||||
const h = await headers();
|
||||
const referer = h.get('referer') ?? '';
|
||||
const host = h.get('host') ?? '';
|
||||
const proto = h.get('x-forwarded-proto') ?? '';
|
||||
const path = referer ? new URL(referer).pathname : '';
|
||||
|
||||
const metainfoExtended = Object.assign({}, metainfo, {
|
||||
host: `${proto}://${host}`,
|
||||
path: path,
|
||||
});
|
||||
|
||||
return metaInfo(metainfoExtended);
|
||||
}
|
||||
|
||||
export default function Page() {
|
||||
return <OcenkaAutoSud />;
|
||||
}
|
||||
|
||||
@@ -1,12 +1,33 @@
|
||||
import { OcenkaCennyhBumag } from '@/views';
|
||||
import type { Metadata } from 'next';
|
||||
import { headers } from 'next/headers';
|
||||
import { metaInfo } from '@shared/lib';
|
||||
import { TMetainfo } from '@shared/types/metainfo';
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'Оценка ценных бумаг | Компания ДИТРАСО',
|
||||
const metainfo: TMetainfo = {
|
||||
title: 'Оценка ценных бумаг',
|
||||
description:
|
||||
'Услуги независимой оценки и судебной экспертизы в Сочи и Краснодаре. Тел. +7 (900) 241-34-34',
|
||||
companyName: 'Компания ДИТРАСО',
|
||||
phone: '+7 (900) 241-34-34',
|
||||
ogImageUrl: '/images/opengraph/main.png',
|
||||
};
|
||||
|
||||
export async function generateMetadata(): Promise<Metadata> {
|
||||
const h = await headers();
|
||||
const referer = h.get('referer') ?? '';
|
||||
const host = h.get('host') ?? '';
|
||||
const proto = h.get('x-forwarded-proto') ?? '';
|
||||
const path = referer ? new URL(referer).pathname : '';
|
||||
|
||||
const metainfoExtended = Object.assign({}, metainfo, {
|
||||
host: `${proto}://${host}`,
|
||||
path: path,
|
||||
});
|
||||
|
||||
return metaInfo(metainfoExtended);
|
||||
}
|
||||
|
||||
export default function Page() {
|
||||
return <OcenkaCennyhBumag />;
|
||||
}
|
||||
|
||||
@@ -1,12 +1,33 @@
|
||||
import { OcenkaIpotekaVTB } from '@/views';
|
||||
import type { Metadata } from 'next';
|
||||
import { headers } from 'next/headers';
|
||||
import { metaInfo } from '@shared/lib';
|
||||
import { TMetainfo } from '@shared/types/metainfo';
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'Оценка для ипотеки в банке ВТБ | Компания ДИТРАСО',
|
||||
const metainfo: TMetainfo = {
|
||||
title: 'Оценка для ипотеки в банке ВТБ',
|
||||
description:
|
||||
'Услуги независимой оценки и судебной экспертизы в Сочи и Краснодаре. Тел. +7 (900) 241-34-34',
|
||||
companyName: 'Компания ДИТРАСО',
|
||||
phone: '+7 (900) 241-34-34',
|
||||
ogImageUrl: '/images/opengraph/main.png',
|
||||
};
|
||||
|
||||
export async function generateMetadata(): Promise<Metadata> {
|
||||
const h = await headers();
|
||||
const referer = h.get('referer') ?? '';
|
||||
const host = h.get('host') ?? '';
|
||||
const proto = h.get('x-forwarded-proto') ?? '';
|
||||
const path = referer ? new URL(referer).pathname : '';
|
||||
|
||||
const metainfoExtended = Object.assign({}, metainfo, {
|
||||
host: `${proto}://${host}`,
|
||||
path: path,
|
||||
});
|
||||
|
||||
return metaInfo(metainfoExtended);
|
||||
}
|
||||
|
||||
export default function Page() {
|
||||
return <OcenkaIpotekaVTB />;
|
||||
}
|
||||
|
||||
@@ -1,12 +1,33 @@
|
||||
import { OcenkaDlyaBanka } from '@/views';
|
||||
import type { Metadata } from 'next';
|
||||
import { headers } from 'next/headers';
|
||||
import { metaInfo } from '@shared/lib';
|
||||
import { TMetainfo } from '@shared/types/metainfo';
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'Оценка для банка | Компания ДИТРАСО',
|
||||
const metainfo: TMetainfo = {
|
||||
title: 'Оценка для банка',
|
||||
description:
|
||||
'Услуги независимой оценки и судебной экспертизы в Сочи и Краснодаре. Тел. +7 (900) 241-34-34',
|
||||
companyName: 'Компания ДИТРАСО',
|
||||
phone: '+7 (900) 241-34-34',
|
||||
ogImageUrl: '/images/opengraph/main.png',
|
||||
};
|
||||
|
||||
export async function generateMetadata(): Promise<Metadata> {
|
||||
const h = await headers();
|
||||
const referer = h.get('referer') ?? '';
|
||||
const host = h.get('host') ?? '';
|
||||
const proto = h.get('x-forwarded-proto') ?? '';
|
||||
const path = referer ? new URL(referer).pathname : '';
|
||||
|
||||
const metainfoExtended = Object.assign({}, metainfo, {
|
||||
host: `${proto}://${host}`,
|
||||
path: path,
|
||||
});
|
||||
|
||||
return metaInfo(metainfoExtended);
|
||||
}
|
||||
|
||||
export default function Page() {
|
||||
return <OcenkaDlyaBanka />;
|
||||
}
|
||||
|
||||
@@ -1,12 +1,33 @@
|
||||
import { OcenkaIpoteka } from '@/views';
|
||||
import type { Metadata } from 'next';
|
||||
import { headers } from 'next/headers';
|
||||
import { metaInfo } from '@shared/lib';
|
||||
import { TMetainfo } from '@shared/types/metainfo';
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'Оценка недвижимости для ипотеки | Компания ДИТРАСО',
|
||||
const metainfo: TMetainfo = {
|
||||
title: 'Оценка недвижимости для ипотеки',
|
||||
description:
|
||||
'Услуги независимой оценки и судебной экспертизы в Сочи и Краснодаре. Тел. +7 (900) 241-34-34',
|
||||
companyName: 'Компания ДИТРАСО',
|
||||
phone: '+7 (900) 241-34-34',
|
||||
ogImageUrl: '/images/opengraph/main.png',
|
||||
};
|
||||
|
||||
export async function generateMetadata(): Promise<Metadata> {
|
||||
const h = await headers();
|
||||
const referer = h.get('referer') ?? '';
|
||||
const host = h.get('host') ?? '';
|
||||
const proto = h.get('x-forwarded-proto') ?? '';
|
||||
const path = referer ? new URL(referer).pathname : '';
|
||||
|
||||
const metainfoExtended = Object.assign({}, metainfo, {
|
||||
host: `${proto}://${host}`,
|
||||
path: path,
|
||||
});
|
||||
|
||||
return metaInfo(metainfoExtended);
|
||||
}
|
||||
|
||||
export default function Page() {
|
||||
return <OcenkaIpoteka />;
|
||||
}
|
||||
|
||||
@@ -1,12 +1,33 @@
|
||||
import { OcenkaNotarius } from '@/views';
|
||||
import type { Metadata } from 'next';
|
||||
import { headers } from 'next/headers';
|
||||
import { metaInfo } from '@shared/lib';
|
||||
import { TMetainfo } from '@shared/types/metainfo';
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'Оценка для нотариуса | Компания ДИТРАСО',
|
||||
const metainfo: TMetainfo = {
|
||||
title: 'Оценка для нотариуса',
|
||||
description:
|
||||
'Услуги независимой оценки и судебной экспертизы в Сочи и Краснодаре. Тел. +7 (900) 241-34-34',
|
||||
companyName: 'Компания ДИТРАСО',
|
||||
phone: '+7 (900) 241-34-34',
|
||||
ogImageUrl: '/images/opengraph/main.png',
|
||||
};
|
||||
|
||||
export async function generateMetadata(): Promise<Metadata> {
|
||||
const h = await headers();
|
||||
const referer = h.get('referer') ?? '';
|
||||
const host = h.get('host') ?? '';
|
||||
const proto = h.get('x-forwarded-proto') ?? '';
|
||||
const path = referer ? new URL(referer).pathname : '';
|
||||
|
||||
const metainfoExtended = Object.assign({}, metainfo, {
|
||||
host: `${proto}://${host}`,
|
||||
path: path,
|
||||
});
|
||||
|
||||
return metaInfo(metainfoExtended);
|
||||
}
|
||||
|
||||
export default function Page() {
|
||||
return <OcenkaNotarius />;
|
||||
}
|
||||
|
||||
@@ -1,12 +1,33 @@
|
||||
import { OcenkaOpeka } from '@/views';
|
||||
import type { Metadata } from 'next';
|
||||
import { headers } from 'next/headers';
|
||||
import { metaInfo } from '@shared/lib';
|
||||
import { TMetainfo } from '@shared/types/metainfo';
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'Оценка для опеки | Компания ДИТРАСО',
|
||||
const metainfo: TMetainfo = {
|
||||
title: 'Оценка для опеки',
|
||||
description:
|
||||
'Услуги независимой оценки и судебной экспертизы в Сочи и Краснодаре. Тел. +7 (900) 241-34-34',
|
||||
companyName: 'Компания ДИТРАСО',
|
||||
phone: '+7 (900) 241-34-34',
|
||||
ogImageUrl: '/images/opengraph/main.png',
|
||||
};
|
||||
|
||||
export async function generateMetadata(): Promise<Metadata> {
|
||||
const h = await headers();
|
||||
const referer = h.get('referer') ?? '';
|
||||
const host = h.get('host') ?? '';
|
||||
const proto = h.get('x-forwarded-proto') ?? '';
|
||||
const path = referer ? new URL(referer).pathname : '';
|
||||
|
||||
const metainfoExtended = Object.assign({}, metainfo, {
|
||||
host: `${proto}://${host}`,
|
||||
path: path,
|
||||
});
|
||||
|
||||
return metaInfo(metainfoExtended);
|
||||
}
|
||||
|
||||
export default function Page() {
|
||||
return <OcenkaOpeka />;
|
||||
}
|
||||
|
||||
@@ -1,12 +1,33 @@
|
||||
import { OcenkaUsherb } from '@/views';
|
||||
import type { Metadata } from 'next';
|
||||
import { headers } from 'next/headers';
|
||||
import { metaInfo } from '@shared/lib';
|
||||
import { TMetainfo } from '@shared/types/metainfo';
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'Оценка для определения стоимости ущерба | Компания ДИТРАСО',
|
||||
const metainfo: TMetainfo = {
|
||||
title: 'Оценка для определения стоимости ущерба',
|
||||
description:
|
||||
'Услуги независимой оценки и судебной экспертизы в Сочи и Краснодаре. Тел. +7 (900) 241-34-34',
|
||||
companyName: 'Компания ДИТРАСО',
|
||||
phone: '+7 (900) 241-34-34',
|
||||
ogImageUrl: '/images/opengraph/main.png',
|
||||
};
|
||||
|
||||
export async function generateMetadata(): Promise<Metadata> {
|
||||
const h = await headers();
|
||||
const referer = h.get('referer') ?? '';
|
||||
const host = h.get('host') ?? '';
|
||||
const proto = h.get('x-forwarded-proto') ?? '';
|
||||
const path = referer ? new URL(referer).pathname : '';
|
||||
|
||||
const metainfoExtended = Object.assign({}, metainfo, {
|
||||
host: `${proto}://${host}`,
|
||||
path: path,
|
||||
});
|
||||
|
||||
return metaInfo(metainfoExtended);
|
||||
}
|
||||
|
||||
export default function Page() {
|
||||
return <OcenkaUsherb />;
|
||||
}
|
||||
|
||||
@@ -1,12 +1,33 @@
|
||||
import { OcenkaIpotekaSber } from '@/views';
|
||||
import type { Metadata } from 'next';
|
||||
import { headers } from 'next/headers';
|
||||
import { metaInfo } from '@shared/lib';
|
||||
import { TMetainfo } from '@shared/types/metainfo';
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'Оценка для ипотеки в Сбербанке | Компания ДИТРАСО',
|
||||
const metainfo: TMetainfo = {
|
||||
title: 'Оценка для ипотеки в Сбербанке',
|
||||
description:
|
||||
'Услуги независимой оценки и судебной экспертизы в Сочи и Краснодаре. Тел. +7 (900) 241-34-34',
|
||||
companyName: 'Компания ДИТРАСО',
|
||||
phone: '+7 (900) 241-34-34',
|
||||
ogImageUrl: '/images/opengraph/main.png',
|
||||
};
|
||||
|
||||
export async function generateMetadata(): Promise<Metadata> {
|
||||
const h = await headers();
|
||||
const referer = h.get('referer') ?? '';
|
||||
const host = h.get('host') ?? '';
|
||||
const proto = h.get('x-forwarded-proto') ?? '';
|
||||
const path = referer ? new URL(referer).pathname : '';
|
||||
|
||||
const metainfoExtended = Object.assign({}, metainfo, {
|
||||
host: `${proto}://${host}`,
|
||||
path: path,
|
||||
});
|
||||
|
||||
return metaInfo(metainfoExtended);
|
||||
}
|
||||
|
||||
export default function Page() {
|
||||
return <OcenkaIpotekaSber />;
|
||||
}
|
||||
|
||||
@@ -1,12 +1,33 @@
|
||||
import { OcenkaStrahovka } from '@/views';
|
||||
import type { Metadata } from 'next';
|
||||
import { headers } from 'next/headers';
|
||||
import { metaInfo } from '@shared/lib';
|
||||
import { TMetainfo } from '@shared/types/metainfo';
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'Оценка для страхования | Компания ДИТРАСО',
|
||||
const metainfo: TMetainfo = {
|
||||
title: 'Оценка для страхования',
|
||||
description:
|
||||
'Услуги независимой оценки и судебной экспертизы в Сочи и Краснодаре. Тел. +7 (900) 241-34-34',
|
||||
companyName: 'Компания ДИТРАСО',
|
||||
phone: '+7 (900) 241-34-34',
|
||||
ogImageUrl: '/images/opengraph/main.png',
|
||||
};
|
||||
|
||||
export async function generateMetadata(): Promise<Metadata> {
|
||||
const h = await headers();
|
||||
const referer = h.get('referer') ?? '';
|
||||
const host = h.get('host') ?? '';
|
||||
const proto = h.get('x-forwarded-proto') ?? '';
|
||||
const path = referer ? new URL(referer).pathname : '';
|
||||
|
||||
const metainfoExtended = Object.assign({}, metainfo, {
|
||||
host: `${proto}://${host}`,
|
||||
path: path,
|
||||
});
|
||||
|
||||
return metaInfo(metainfoExtended);
|
||||
}
|
||||
|
||||
export default function Page() {
|
||||
return <OcenkaStrahovka />;
|
||||
}
|
||||
|
||||
@@ -1,12 +1,33 @@
|
||||
import { OcenkaGarazh } from '@/views';
|
||||
import type { Metadata } from 'next';
|
||||
import { headers } from 'next/headers';
|
||||
import { metaInfo } from '@shared/lib';
|
||||
import { TMetainfo } from '@shared/types/metainfo';
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'Оценка гаража | Компания ДИТРАСО',
|
||||
const metainfo: TMetainfo = {
|
||||
title: 'Оценка гаража',
|
||||
description:
|
||||
'Услуги независимой оценки и судебной экспертизы в Сочи и Краснодаре. Тел. +7 (900) 241-34-34',
|
||||
companyName: 'Компания ДИТРАСО',
|
||||
phone: '+7 (900) 241-34-34',
|
||||
ogImageUrl: '/images/opengraph/main.png',
|
||||
};
|
||||
|
||||
export async function generateMetadata(): Promise<Metadata> {
|
||||
const h = await headers();
|
||||
const referer = h.get('referer') ?? '';
|
||||
const host = h.get('host') ?? '';
|
||||
const proto = h.get('x-forwarded-proto') ?? '';
|
||||
const path = referer ? new URL(referer).pathname : '';
|
||||
|
||||
const metainfoExtended = Object.assign({}, metainfo, {
|
||||
host: `${proto}://${host}`,
|
||||
path: path,
|
||||
});
|
||||
|
||||
return metaInfo(metainfoExtended);
|
||||
}
|
||||
|
||||
export default function Page() {
|
||||
return <OcenkaGarazh />;
|
||||
}
|
||||
|
||||
@@ -1,12 +1,33 @@
|
||||
import { OcenkaBankrot } from '@/views';
|
||||
import type { Metadata } from 'next';
|
||||
import { headers } from 'next/headers';
|
||||
import { metaInfo } from '@shared/lib';
|
||||
import { TMetainfo } from '@shared/types/metainfo';
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'Оценка имущества для банкротства | Компания ДИТРАСО',
|
||||
const metainfo: TMetainfo = {
|
||||
title: 'Оценка имущества для банкротства',
|
||||
description:
|
||||
'Услуги независимой оценки и судебной экспертизы в Сочи и Краснодаре. Тел. +7 (900) 241-34-34',
|
||||
companyName: 'Компания ДИТРАСО',
|
||||
phone: '+7 (900) 241-34-34',
|
||||
ogImageUrl: '/images/opengraph/main.png',
|
||||
};
|
||||
|
||||
export async function generateMetadata(): Promise<Metadata> {
|
||||
const h = await headers();
|
||||
const referer = h.get('referer') ?? '';
|
||||
const host = h.get('host') ?? '';
|
||||
const proto = h.get('x-forwarded-proto') ?? '';
|
||||
const path = referer ? new URL(referer).pathname : '';
|
||||
|
||||
const metainfoExtended = Object.assign({}, metainfo, {
|
||||
host: `${proto}://${host}`,
|
||||
path: path,
|
||||
});
|
||||
|
||||
return metaInfo(metainfoExtended);
|
||||
}
|
||||
|
||||
export default function Page() {
|
||||
return <OcenkaBankrot />;
|
||||
}
|
||||
|
||||
@@ -1,12 +1,33 @@
|
||||
import { OcenkaUstavKapital } from '@/views';
|
||||
import type { Metadata } from 'next';
|
||||
import { headers } from 'next/headers';
|
||||
import { metaInfo } from '@shared/lib';
|
||||
import { TMetainfo } from '@shared/types/metainfo';
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'Оценка имущества для внесения в уставной капитал | Компания ДИТРАСО',
|
||||
const metainfo: TMetainfo = {
|
||||
title: 'Оценка имущества для внесения в уставной капитал',
|
||||
description:
|
||||
'Услуги независимой оценки и судебной экспертизы в Сочи и Краснодаре. Тел. +7 (900) 241-34-34',
|
||||
companyName: 'Компания ДИТРАСО',
|
||||
phone: '+7 (900) 241-34-34',
|
||||
ogImageUrl: '/images/opengraph/main.png',
|
||||
};
|
||||
|
||||
export async function generateMetadata(): Promise<Metadata> {
|
||||
const h = await headers();
|
||||
const referer = h.get('referer') ?? '';
|
||||
const host = h.get('host') ?? '';
|
||||
const proto = h.get('x-forwarded-proto') ?? '';
|
||||
const path = referer ? new URL(referer).pathname : '';
|
||||
|
||||
const metainfoExtended = Object.assign({}, metainfo, {
|
||||
host: `${proto}://${host}`,
|
||||
path: path,
|
||||
});
|
||||
|
||||
return metaInfo(metainfoExtended);
|
||||
}
|
||||
|
||||
export default function Page() {
|
||||
return <OcenkaUstavKapital />;
|
||||
}
|
||||
|
||||
@@ -1,12 +1,33 @@
|
||||
import { OcenkaNasledstva } from '@/views';
|
||||
import type { Metadata } from 'next';
|
||||
import { headers } from 'next/headers';
|
||||
import { metaInfo } from '@shared/lib';
|
||||
import { TMetainfo } from '@shared/types/metainfo';
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'Оценка имущества для вступления в наследство | Компания ДИТРАСО',
|
||||
const metainfo: TMetainfo = {
|
||||
title: 'Оценка имущества для вступления в наследство',
|
||||
description:
|
||||
'Услуги независимой оценки и судебной экспертизы в Сочи и Краснодаре. Тел. +7 (900) 241-34-34',
|
||||
companyName: 'Компания ДИТРАСО',
|
||||
phone: '+7 (900) 241-34-34',
|
||||
ogImageUrl: '/images/opengraph/main.png',
|
||||
};
|
||||
|
||||
export async function generateMetadata(): Promise<Metadata> {
|
||||
const h = await headers();
|
||||
const referer = h.get('referer') ?? '';
|
||||
const host = h.get('host') ?? '';
|
||||
const proto = h.get('x-forwarded-proto') ?? '';
|
||||
const path = referer ? new URL(referer).pathname : '';
|
||||
|
||||
const metainfoExtended = Object.assign({}, metainfo, {
|
||||
host: `${proto}://${host}`,
|
||||
path: path,
|
||||
});
|
||||
|
||||
return metaInfo(metainfoExtended);
|
||||
}
|
||||
|
||||
export default function Page() {
|
||||
return <OcenkaNasledstva />;
|
||||
}
|
||||
|
||||
@@ -1,12 +1,33 @@
|
||||
import { OcenkaRecenzia } from '@/views';
|
||||
import type { Metadata } from 'next';
|
||||
import { headers } from 'next/headers';
|
||||
import { metaInfo } from '@shared/lib';
|
||||
import { TMetainfo } from '@shared/types/metainfo';
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'Экспертиза и рецензирование отчета об оценке | Компания ДИТРАСО',
|
||||
const metainfo: TMetainfo = {
|
||||
title: 'Экспертиза и рецензирование отчета об оценке',
|
||||
description:
|
||||
'Услуги независимой оценки и судебной экспертизы в Сочи и Краснодаре. Тел. +7 (900) 241-34-34',
|
||||
companyName: 'Компания ДИТРАСО',
|
||||
phone: '+7 (900) 241-34-34',
|
||||
ogImageUrl: '/images/opengraph/main.png',
|
||||
};
|
||||
|
||||
export async function generateMetadata(): Promise<Metadata> {
|
||||
const h = await headers();
|
||||
const referer = h.get('referer') ?? '';
|
||||
const host = h.get('host') ?? '';
|
||||
const proto = h.get('x-forwarded-proto') ?? '';
|
||||
const path = referer ? new URL(referer).pathname : '';
|
||||
|
||||
const metainfoExtended = Object.assign({}, metainfo, {
|
||||
host: `${proto}://${host}`,
|
||||
path: path,
|
||||
});
|
||||
|
||||
return metaInfo(metainfoExtended);
|
||||
}
|
||||
|
||||
export default function Page() {
|
||||
return <OcenkaRecenzia />;
|
||||
}
|
||||
|
||||
@@ -1,12 +1,33 @@
|
||||
import { OcenkaKvartiry } from '@/views';
|
||||
import type { Metadata } from 'next';
|
||||
import { headers } from 'next/headers';
|
||||
import { metaInfo } from '@shared/lib';
|
||||
import { TMetainfo } from '@shared/types/metainfo';
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'Оценка квартиры | Компания ДИТРАСО',
|
||||
const metainfo: TMetainfo = {
|
||||
title: 'Оценка квартиры',
|
||||
description:
|
||||
'Услуги независимой оценки и судебной экспертизы в Сочи и Краснодаре. Тел. +7 (900) 241-34-34',
|
||||
companyName: 'Компания ДИТРАСО',
|
||||
phone: '+7 (900) 241-34-34',
|
||||
ogImageUrl: '/images/opengraph/main.png',
|
||||
};
|
||||
|
||||
export async function generateMetadata(): Promise<Metadata> {
|
||||
const h = await headers();
|
||||
const referer = h.get('referer') ?? '';
|
||||
const host = h.get('host') ?? '';
|
||||
const proto = h.get('x-forwarded-proto') ?? '';
|
||||
const path = referer ? new URL(referer).pathname : '';
|
||||
|
||||
const metainfoExtended = Object.assign({}, metainfo, {
|
||||
host: `${proto}://${host}`,
|
||||
path: path,
|
||||
});
|
||||
|
||||
return metaInfo(metainfoExtended);
|
||||
}
|
||||
|
||||
export default function Page() {
|
||||
return <OcenkaKvartiry />;
|
||||
}
|
||||
|
||||
@@ -1,12 +1,33 @@
|
||||
import { OcenkaMashin } from '@/views';
|
||||
import type { Metadata } from 'next';
|
||||
import { headers } from 'next/headers';
|
||||
import { metaInfo } from '@shared/lib';
|
||||
import { TMetainfo } from '@shared/types/metainfo';
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'Оценка машин и оборудования | Компания ДИТРАСО',
|
||||
const metainfo: TMetainfo = {
|
||||
title: 'Оценка машин и оборудования',
|
||||
description:
|
||||
'Услуги независимой оценки и судебной экспертизы в Сочи и Краснодаре. Тел. +7 (900) 241-34-34',
|
||||
companyName: 'Компания ДИТРАСО',
|
||||
phone: '+7 (900) 241-34-34',
|
||||
ogImageUrl: '/images/opengraph/main.png',
|
||||
};
|
||||
|
||||
export async function generateMetadata(): Promise<Metadata> {
|
||||
const h = await headers();
|
||||
const referer = h.get('referer') ?? '';
|
||||
const host = h.get('host') ?? '';
|
||||
const proto = h.get('x-forwarded-proto') ?? '';
|
||||
const path = referer ? new URL(referer).pathname : '';
|
||||
|
||||
const metainfoExtended = Object.assign({}, metainfo, {
|
||||
host: `${proto}://${host}`,
|
||||
path: path,
|
||||
});
|
||||
|
||||
return metaInfo(metainfoExtended);
|
||||
}
|
||||
|
||||
export default function Page() {
|
||||
return <OcenkaMashin />;
|
||||
}
|
||||
|
||||
@@ -1,12 +1,33 @@
|
||||
import { OcenkaPlavsredsvt } from '@/views';
|
||||
import type { Metadata } from 'next';
|
||||
import { headers } from 'next/headers';
|
||||
import { metaInfo } from '@shared/lib';
|
||||
import { TMetainfo } from '@shared/types/metainfo';
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'Оценка морских и речных судов | Компания ДИТРАСО',
|
||||
const metainfo: TMetainfo = {
|
||||
title: 'Оценка морских и речных судов',
|
||||
description:
|
||||
'Услуги независимой оценки и судебной экспертизы в Сочи и Краснодаре. Тел. +7 (900) 241-34-34',
|
||||
companyName: 'Компания ДИТРАСО',
|
||||
phone: '+7 (900) 241-34-34',
|
||||
ogImageUrl: '/images/opengraph/main.png',
|
||||
};
|
||||
|
||||
export async function generateMetadata(): Promise<Metadata> {
|
||||
const h = await headers();
|
||||
const referer = h.get('referer') ?? '';
|
||||
const host = h.get('host') ?? '';
|
||||
const proto = h.get('x-forwarded-proto') ?? '';
|
||||
const path = referer ? new URL(referer).pathname : '';
|
||||
|
||||
const metainfoExtended = Object.assign({}, metainfo, {
|
||||
host: `${proto}://${host}`,
|
||||
path: path,
|
||||
});
|
||||
|
||||
return metaInfo(metainfoExtended);
|
||||
}
|
||||
|
||||
export default function Page() {
|
||||
return <OcenkaPlavsredsvt />;
|
||||
}
|
||||
|
||||
@@ -1,12 +1,33 @@
|
||||
import { OcenkaMoto } from '@/views';
|
||||
import type { Metadata } from 'next';
|
||||
import { headers } from 'next/headers';
|
||||
import { metaInfo } from '@shared/lib';
|
||||
import { TMetainfo } from '@shared/types/metainfo';
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'Оценка мотоциклов и мототехники | Компания ДИТРАСО',
|
||||
const metainfo: TMetainfo = {
|
||||
title: 'Оценка мотоциклов и мототехники',
|
||||
description:
|
||||
'Услуги независимой оценки и судебной экспертизы в Сочи и Краснодаре. Тел. +7 (900) 241-34-34',
|
||||
companyName: 'Компания ДИТРАСО',
|
||||
phone: '+7 (900) 241-34-34',
|
||||
ogImageUrl: '/images/opengraph/main.png',
|
||||
};
|
||||
|
||||
export async function generateMetadata(): Promise<Metadata> {
|
||||
const h = await headers();
|
||||
const referer = h.get('referer') ?? '';
|
||||
const host = h.get('host') ?? '';
|
||||
const proto = h.get('x-forwarded-proto') ?? '';
|
||||
const path = referer ? new URL(referer).pathname : '';
|
||||
|
||||
const metainfoExtended = Object.assign({}, metainfo, {
|
||||
host: `${proto}://${host}`,
|
||||
path: path,
|
||||
});
|
||||
|
||||
return metaInfo(metainfoExtended);
|
||||
}
|
||||
|
||||
export default function Page() {
|
||||
return <OcenkaMoto />;
|
||||
}
|
||||
|
||||
@@ -1,12 +1,33 @@
|
||||
import { OcenkaNedvigaSud } from '@/views';
|
||||
import type { Metadata } from 'next';
|
||||
import { headers } from 'next/headers';
|
||||
import { metaInfo } from '@shared/lib';
|
||||
import { TMetainfo } from '@shared/types/metainfo';
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'Оценка недвижимости для суда | Компания ДИТРАСО',
|
||||
const metainfo: TMetainfo = {
|
||||
title: 'Оценка недвижимости для суда',
|
||||
description:
|
||||
'Услуги независимой оценки и судебной экспертизы в Сочи и Краснодаре. Тел. +7 (900) 241-34-34',
|
||||
companyName: 'Компания ДИТРАСО',
|
||||
phone: '+7 (900) 241-34-34',
|
||||
ogImageUrl: '/images/opengraph/main.png',
|
||||
};
|
||||
|
||||
export async function generateMetadata(): Promise<Metadata> {
|
||||
const h = await headers();
|
||||
const referer = h.get('referer') ?? '';
|
||||
const host = h.get('host') ?? '';
|
||||
const proto = h.get('x-forwarded-proto') ?? '';
|
||||
const path = referer ? new URL(referer).pathname : '';
|
||||
|
||||
const metainfoExtended = Object.assign({}, metainfo, {
|
||||
host: `${proto}://${host}`,
|
||||
path: path,
|
||||
});
|
||||
|
||||
return metaInfo(metainfoExtended);
|
||||
}
|
||||
|
||||
export default function Page() {
|
||||
return <OcenkaNedvigaSud />;
|
||||
}
|
||||
|
||||
@@ -1,12 +1,33 @@
|
||||
import { OcenkaNedviga } from '@/views';
|
||||
import type { Metadata } from 'next';
|
||||
import { headers } from 'next/headers';
|
||||
import { metaInfo } from '@shared/lib';
|
||||
import { TMetainfo } from '@shared/types/metainfo';
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'Оценка недвижимости | Компания ДИТРАСО',
|
||||
const metainfo: TMetainfo = {
|
||||
title: 'Оценка недвижимости',
|
||||
description:
|
||||
'Услуги независимой оценки и судебной экспертизы в Сочи и Краснодаре. Тел. +7 (900) 241-34-34',
|
||||
companyName: 'Компания ДИТРАСО',
|
||||
phone: '+7 (900) 241-34-34',
|
||||
ogImageUrl: '/images/opengraph/main.png',
|
||||
};
|
||||
|
||||
export async function generateMetadata(): Promise<Metadata> {
|
||||
const h = await headers();
|
||||
const referer = h.get('referer') ?? '';
|
||||
const host = h.get('host') ?? '';
|
||||
const proto = h.get('x-forwarded-proto') ?? '';
|
||||
const path = referer ? new URL(referer).pathname : '';
|
||||
|
||||
const metainfoExtended = Object.assign({}, metainfo, {
|
||||
host: `${proto}://${host}`,
|
||||
path: path,
|
||||
});
|
||||
|
||||
return metaInfo(metainfoExtended);
|
||||
}
|
||||
|
||||
export default function Page() {
|
||||
return <OcenkaNedviga />;
|
||||
}
|
||||
|
||||
@@ -1,12 +1,33 @@
|
||||
import { OcenkaAktivov } from '@/views';
|
||||
import type { Metadata } from 'next';
|
||||
import { headers } from 'next/headers';
|
||||
import { metaInfo } from '@shared/lib';
|
||||
import { TMetainfo } from '@shared/types/metainfo';
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'Оценка нематериальных активов | Компания ДИТРАСО',
|
||||
const metainfo: TMetainfo = {
|
||||
title: 'Оценка нематериальных активов',
|
||||
description:
|
||||
'Услуги независимой оценки и судебной экспертизы в Сочи и Краснодаре. Тел. +7 (900) 241-34-34',
|
||||
companyName: 'Компания ДИТРАСО',
|
||||
phone: '+7 (900) 241-34-34',
|
||||
ogImageUrl: '/images/opengraph/main.png',
|
||||
};
|
||||
|
||||
export async function generateMetadata(): Promise<Metadata> {
|
||||
const h = await headers();
|
||||
const referer = h.get('referer') ?? '';
|
||||
const host = h.get('host') ?? '';
|
||||
const proto = h.get('x-forwarded-proto') ?? '';
|
||||
const path = referer ? new URL(referer).pathname : '';
|
||||
|
||||
const metainfoExtended = Object.assign({}, metainfo, {
|
||||
host: `${proto}://${host}`,
|
||||
path: path,
|
||||
});
|
||||
|
||||
return metaInfo(metainfoExtended);
|
||||
}
|
||||
|
||||
export default function Page() {
|
||||
return <OcenkaAktivov />;
|
||||
}
|
||||
|
||||
@@ -1,12 +1,33 @@
|
||||
import { OcenkaNezavStroit } from '@/views';
|
||||
import type { Metadata } from 'next';
|
||||
import { headers } from 'next/headers';
|
||||
import { metaInfo } from '@shared/lib';
|
||||
import { TMetainfo } from '@shared/types/metainfo';
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'Оценка незавершенного строительства | Компания ДИТРАСО',
|
||||
const metainfo: TMetainfo = {
|
||||
title: 'Оценка незавершенного строительства',
|
||||
description:
|
||||
'Услуги независимой оценки и судебной экспертизы в Сочи и Краснодаре. Тел. +7 (900) 241-34-34',
|
||||
companyName: 'Компания ДИТРАСО',
|
||||
phone: '+7 (900) 241-34-34',
|
||||
ogImageUrl: '/images/opengraph/main.png',
|
||||
};
|
||||
|
||||
export async function generateMetadata(): Promise<Metadata> {
|
||||
const h = await headers();
|
||||
const referer = h.get('referer') ?? '';
|
||||
const host = h.get('host') ?? '';
|
||||
const proto = h.get('x-forwarded-proto') ?? '';
|
||||
const path = referer ? new URL(referer).pathname : '';
|
||||
|
||||
const metainfoExtended = Object.assign({}, metainfo, {
|
||||
host: `${proto}://${host}`,
|
||||
path: path,
|
||||
});
|
||||
|
||||
return metaInfo(metainfoExtended);
|
||||
}
|
||||
|
||||
export default function Page() {
|
||||
return <OcenkaNezavStroit />;
|
||||
}
|
||||
|
||||
@@ -1,12 +1,33 @@
|
||||
import { OcenkaNezavisim } from '@/views';
|
||||
import type { Metadata } from 'next';
|
||||
import { headers } from 'next/headers';
|
||||
import { metaInfo } from '@shared/lib';
|
||||
import { TMetainfo } from '@shared/types/metainfo';
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'Независимая оценка | Компания ДИТРАСО',
|
||||
const metainfo: TMetainfo = {
|
||||
title: 'Независимая оценка',
|
||||
description:
|
||||
'Услуги независимой оценки и судебной экспертизы в Сочи и Краснодаре. Тел. +7 (900) 241-34-34',
|
||||
companyName: 'Компания ДИТРАСО',
|
||||
phone: '+7 (900) 241-34-34',
|
||||
ogImageUrl: '/images/opengraph/main.png',
|
||||
};
|
||||
|
||||
export async function generateMetadata(): Promise<Metadata> {
|
||||
const h = await headers();
|
||||
const referer = h.get('referer') ?? '';
|
||||
const host = h.get('host') ?? '';
|
||||
const proto = h.get('x-forwarded-proto') ?? '';
|
||||
const path = referer ? new URL(referer).pathname : '';
|
||||
|
||||
const metainfoExtended = Object.assign({}, metainfo, {
|
||||
host: `${proto}://${host}`,
|
||||
path: path,
|
||||
});
|
||||
|
||||
return metaInfo(metainfoExtended);
|
||||
}
|
||||
|
||||
export default function Page() {
|
||||
return <OcenkaNezavisim />;
|
||||
}
|
||||
|
||||
@@ -1,12 +1,33 @@
|
||||
import { OcenkaNezhilogo } from '@/views';
|
||||
import type { Metadata } from 'next';
|
||||
import { headers } from 'next/headers';
|
||||
import { metaInfo } from '@shared/lib';
|
||||
import { TMetainfo } from '@shared/types/metainfo';
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'Оценка нежилого помещения | Компания ДИТРАСО',
|
||||
const metainfo: TMetainfo = {
|
||||
title: 'Оценка нежилого помещения',
|
||||
description:
|
||||
'Услуги независимой оценки и судебной экспертизы в Сочи и Краснодаре. Тел. +7 (900) 241-34-34',
|
||||
companyName: 'Компания ДИТРАСО',
|
||||
phone: '+7 (900) 241-34-34',
|
||||
ogImageUrl: '/images/opengraph/main.png',
|
||||
};
|
||||
|
||||
export async function generateMetadata(): Promise<Metadata> {
|
||||
const h = await headers();
|
||||
const referer = h.get('referer') ?? '';
|
||||
const host = h.get('host') ?? '';
|
||||
const proto = h.get('x-forwarded-proto') ?? '';
|
||||
const path = referer ? new URL(referer).pathname : '';
|
||||
|
||||
const metainfoExtended = Object.assign({}, metainfo, {
|
||||
host: `${proto}://${host}`,
|
||||
path: path,
|
||||
});
|
||||
|
||||
return metaInfo(metainfoExtended);
|
||||
}
|
||||
|
||||
export default function Page() {
|
||||
return <OcenkaNezhilogo />;
|
||||
}
|
||||
|
||||
@@ -1,12 +1,33 @@
|
||||
import { OcenkaRazvod } from '@/views';
|
||||
import type { Metadata } from 'next';
|
||||
import { headers } from 'next/headers';
|
||||
import { metaInfo } from '@shared/lib';
|
||||
import { TMetainfo } from '@shared/types/metainfo';
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'Оценка имущества при разводе | Компания ДИТРАСО',
|
||||
const metainfo: TMetainfo = {
|
||||
title: 'Оценка имущества при разводе',
|
||||
description:
|
||||
'Услуги независимой оценки и судебной экспертизы в Сочи и Краснодаре. Тел. +7 (900) 241-34-34',
|
||||
companyName: 'Компания ДИТРАСО',
|
||||
phone: '+7 (900) 241-34-34',
|
||||
ogImageUrl: '/images/opengraph/main.png',
|
||||
};
|
||||
|
||||
export async function generateMetadata(): Promise<Metadata> {
|
||||
const h = await headers();
|
||||
const referer = h.get('referer') ?? '';
|
||||
const host = h.get('host') ?? '';
|
||||
const proto = h.get('x-forwarded-proto') ?? '';
|
||||
const path = referer ? new URL(referer).pathname : '';
|
||||
|
||||
const metainfoExtended = Object.assign({}, metainfo, {
|
||||
host: `${proto}://${host}`,
|
||||
path: path,
|
||||
});
|
||||
|
||||
return metaInfo(metainfoExtended);
|
||||
}
|
||||
|
||||
export default function Page() {
|
||||
return <OcenkaRazvod />;
|
||||
}
|
||||
|
||||
@@ -1,12 +1,33 @@
|
||||
import { OcenkaOffice } from '@/views';
|
||||
import type { Metadata } from 'next';
|
||||
import { headers } from 'next/headers';
|
||||
import { metaInfo } from '@shared/lib';
|
||||
import { TMetainfo } from '@shared/types/metainfo';
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'Оценка офиса | Компания ДИТРАСО',
|
||||
const metainfo: TMetainfo = {
|
||||
title: 'Оценка офиса',
|
||||
description:
|
||||
'Услуги независимой оценки и судебной экспертизы в Сочи и Краснодаре. Тел. +7 (900) 241-34-34',
|
||||
companyName: 'Компания ДИТРАСО',
|
||||
phone: '+7 (900) 241-34-34',
|
||||
ogImageUrl: '/images/opengraph/main.png',
|
||||
};
|
||||
|
||||
export async function generateMetadata(): Promise<Metadata> {
|
||||
const h = await headers();
|
||||
const referer = h.get('referer') ?? '';
|
||||
const host = h.get('host') ?? '';
|
||||
const proto = h.get('x-forwarded-proto') ?? '';
|
||||
const path = referer ? new URL(referer).pathname : '';
|
||||
|
||||
const metainfoExtended = Object.assign({}, metainfo, {
|
||||
host: `${proto}://${host}`,
|
||||
path: path,
|
||||
});
|
||||
|
||||
return metaInfo(metainfoExtended);
|
||||
}
|
||||
|
||||
export default function Page() {
|
||||
return <OcenkaOffice />;
|
||||
}
|
||||
|
||||
@@ -1,12 +1,33 @@
|
||||
import { OcenkaCategory } from '@/views';
|
||||
import type { Metadata } from 'next';
|
||||
import { headers } from 'next/headers';
|
||||
import { metaInfo } from '@shared/lib';
|
||||
import { TMetainfo } from '@shared/types/metainfo';
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'Услуги оценки | Компания ДИТРАСО',
|
||||
const metainfo: TMetainfo = {
|
||||
title: 'Услуги оценки',
|
||||
description:
|
||||
'Услуги независимой оценки и судебной экспертизы в Сочи и Краснодаре. Тел. +7 (900) 241-34-34',
|
||||
companyName: 'Компания ДИТРАСО',
|
||||
phone: '+7 (900) 241-34-34',
|
||||
ogImageUrl: '/images/opengraph/main.png',
|
||||
};
|
||||
|
||||
export async function generateMetadata(): Promise<Metadata> {
|
||||
const h = await headers();
|
||||
const referer = h.get('referer') ?? '';
|
||||
const host = h.get('host') ?? '';
|
||||
const proto = h.get('x-forwarded-proto') ?? '';
|
||||
const path = referer ? new URL(referer).pathname : '';
|
||||
|
||||
const metainfoExtended = Object.assign({}, metainfo, {
|
||||
host: `${proto}://${host}`,
|
||||
path: path,
|
||||
});
|
||||
|
||||
return metaInfo(metainfoExtended);
|
||||
}
|
||||
|
||||
export default function OcenkaPage() {
|
||||
return <OcenkaCategory />;
|
||||
}
|
||||
|
||||
@@ -1,12 +1,33 @@
|
||||
import { OcenkaAutoRynok } from '@/views';
|
||||
import type { Metadata } from 'next';
|
||||
import { headers } from 'next/headers';
|
||||
import { metaInfo } from '@shared/lib';
|
||||
import { TMetainfo } from '@shared/types/metainfo';
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'Оценка рыночной стоимости автомобиля | Компания ДИТРАСО',
|
||||
const metainfo: TMetainfo = {
|
||||
title: 'Оценка рыночной стоимости автомобиля',
|
||||
description:
|
||||
'Услуги независимой оценки и судебной экспертизы в Сочи и Краснодаре. Тел. +7 (900) 241-34-34',
|
||||
companyName: 'Компания ДИТРАСО',
|
||||
phone: '+7 (900) 241-34-34',
|
||||
ogImageUrl: '/images/opengraph/main.png',
|
||||
};
|
||||
|
||||
export async function generateMetadata(): Promise<Metadata> {
|
||||
const h = await headers();
|
||||
const referer = h.get('referer') ?? '';
|
||||
const host = h.get('host') ?? '';
|
||||
const proto = h.get('x-forwarded-proto') ?? '';
|
||||
const path = referer ? new URL(referer).pathname : '';
|
||||
|
||||
const metainfoExtended = Object.assign({}, metainfo, {
|
||||
host: `${proto}://${host}`,
|
||||
path: path,
|
||||
});
|
||||
|
||||
return metaInfo(metainfoExtended);
|
||||
}
|
||||
|
||||
export default function Page() {
|
||||
return <OcenkaAutoRynok />;
|
||||
}
|
||||
|
||||
@@ -1,12 +1,33 @@
|
||||
import { OcenkaSooruzheniy } from '@/views';
|
||||
import type { Metadata } from 'next';
|
||||
import { headers } from 'next/headers';
|
||||
import { metaInfo } from '@shared/lib';
|
||||
import { TMetainfo } from '@shared/types/metainfo';
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'Оценка сооружений | Компания ДИТРАСО',
|
||||
const metainfo: TMetainfo = {
|
||||
title: 'Оценка сооружений',
|
||||
description:
|
||||
'Услуги независимой оценки и судебной экспертизы в Сочи и Краснодаре. Тел. +7 (900) 241-34-34',
|
||||
companyName: 'Компания ДИТРАСО',
|
||||
phone: '+7 (900) 241-34-34',
|
||||
ogImageUrl: '/images/opengraph/main.png',
|
||||
};
|
||||
|
||||
export async function generateMetadata(): Promise<Metadata> {
|
||||
const h = await headers();
|
||||
const referer = h.get('referer') ?? '';
|
||||
const host = h.get('host') ?? '';
|
||||
const proto = h.get('x-forwarded-proto') ?? '';
|
||||
const path = referer ? new URL(referer).pathname : '';
|
||||
|
||||
const metainfoExtended = Object.assign({}, metainfo, {
|
||||
host: `${proto}://${host}`,
|
||||
path: path,
|
||||
});
|
||||
|
||||
return metaInfo(metainfoExtended);
|
||||
}
|
||||
|
||||
export default function Page() {
|
||||
return <OcenkaSooruzheniy />;
|
||||
}
|
||||
|
||||
@@ -1,12 +1,33 @@
|
||||
import { OcenkaSpecTech } from '@/views';
|
||||
import type { Metadata } from 'next';
|
||||
import { headers } from 'next/headers';
|
||||
import { metaInfo } from '@shared/lib';
|
||||
import { TMetainfo } from '@shared/types/metainfo';
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'Оценка спецтехники | Компания ДИТРАСО',
|
||||
const metainfo: TMetainfo = {
|
||||
title: 'Оценка спецтехники',
|
||||
description:
|
||||
'Услуги независимой оценки и судебной экспертизы в Сочи и Краснодаре. Тел. +7 (900) 241-34-34',
|
||||
companyName: 'Компания ДИТРАСО',
|
||||
phone: '+7 (900) 241-34-34',
|
||||
ogImageUrl: '/images/opengraph/main.png',
|
||||
};
|
||||
|
||||
export async function generateMetadata(): Promise<Metadata> {
|
||||
const h = await headers();
|
||||
const referer = h.get('referer') ?? '';
|
||||
const host = h.get('host') ?? '';
|
||||
const proto = h.get('x-forwarded-proto') ?? '';
|
||||
const path = referer ? new URL(referer).pathname : '';
|
||||
|
||||
const metainfoExtended = Object.assign({}, metainfo, {
|
||||
host: `${proto}://${host}`,
|
||||
path: path,
|
||||
});
|
||||
|
||||
return metaInfo(metainfoExtended);
|
||||
}
|
||||
|
||||
export default function Page() {
|
||||
return <OcenkaSpecTech />;
|
||||
}
|
||||
|
||||
@@ -1,12 +1,33 @@
|
||||
import { OcenkaArenda } from '@/views';
|
||||
import type { Metadata } from 'next';
|
||||
import { headers } from 'next/headers';
|
||||
import { metaInfo } from '@shared/lib';
|
||||
import { TMetainfo } from '@shared/types/metainfo';
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'Оценка стоимости арендной ставки | Компания ДИТРАСО',
|
||||
const metainfo: TMetainfo = {
|
||||
title: 'Оценка стоимости арендной ставки',
|
||||
description:
|
||||
'Услуги независимой оценки и судебной экспертизы в Сочи и Краснодаре. Тел. +7 (900) 241-34-34',
|
||||
companyName: 'Компания ДИТРАСО',
|
||||
phone: '+7 (900) 241-34-34',
|
||||
ogImageUrl: '/images/opengraph/main.png',
|
||||
};
|
||||
|
||||
export async function generateMetadata(): Promise<Metadata> {
|
||||
const h = await headers();
|
||||
const referer = h.get('referer') ?? '';
|
||||
const host = h.get('host') ?? '';
|
||||
const proto = h.get('x-forwarded-proto') ?? '';
|
||||
const path = referer ? new URL(referer).pathname : '';
|
||||
|
||||
const metainfoExtended = Object.assign({}, metainfo, {
|
||||
host: `${proto}://${host}`,
|
||||
path: path,
|
||||
});
|
||||
|
||||
return metaInfo(metainfoExtended);
|
||||
}
|
||||
|
||||
export default function Page() {
|
||||
return <OcenkaArenda />;
|
||||
}
|
||||
|
||||
@@ -1,12 +1,33 @@
|
||||
import { OcenkaBusiness } from '@/views';
|
||||
import type { Metadata } from 'next';
|
||||
import { headers } from 'next/headers';
|
||||
import { metaInfo } from '@shared/lib';
|
||||
import { TMetainfo } from '@shared/types/metainfo';
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'Оценка стоимости предприятия (бизнеса) | Компания ДИТРАСО',
|
||||
const metainfo: TMetainfo = {
|
||||
title: 'Оценка стоимости предприятия (бизнеса)',
|
||||
description:
|
||||
'Услуги независимой оценки и судебной экспертизы в Сочи и Краснодаре. Тел. +7 (900) 241-34-34',
|
||||
companyName: 'Компания ДИТРАСО',
|
||||
phone: '+7 (900) 241-34-34',
|
||||
ogImageUrl: '/images/opengraph/main.png',
|
||||
};
|
||||
|
||||
export async function generateMetadata(): Promise<Metadata> {
|
||||
const h = await headers();
|
||||
const referer = h.get('referer') ?? '';
|
||||
const host = h.get('host') ?? '';
|
||||
const proto = h.get('x-forwarded-proto') ?? '';
|
||||
const path = referer ? new URL(referer).pathname : '';
|
||||
|
||||
const metainfoExtended = Object.assign({}, metainfo, {
|
||||
host: `${proto}://${host}`,
|
||||
path: path,
|
||||
});
|
||||
|
||||
return metaInfo(metainfoExtended);
|
||||
}
|
||||
|
||||
export default function Page() {
|
||||
return <OcenkaBusiness />;
|
||||
}
|
||||
|
||||
@@ -1,12 +1,33 @@
|
||||
import { OcenkaUsherbNedvigi } from '@/views';
|
||||
import type { Metadata } from 'next';
|
||||
import { headers } from 'next/headers';
|
||||
import { metaInfo } from '@shared/lib';
|
||||
import { TMetainfo } from '@shared/types/metainfo';
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'Оценка ущерба недвижимости | Компания ДИТРАСО',
|
||||
const metainfo: TMetainfo = {
|
||||
title: 'Оценка ущерба недвижимости',
|
||||
description:
|
||||
'Услуги независимой оценки и судебной экспертизы в Сочи и Краснодаре. Тел. +7 (900) 241-34-34',
|
||||
companyName: 'Компания ДИТРАСО',
|
||||
phone: '+7 (900) 241-34-34',
|
||||
ogImageUrl: '/images/opengraph/main.png',
|
||||
};
|
||||
|
||||
export async function generateMetadata(): Promise<Metadata> {
|
||||
const h = await headers();
|
||||
const referer = h.get('referer') ?? '';
|
||||
const host = h.get('host') ?? '';
|
||||
const proto = h.get('x-forwarded-proto') ?? '';
|
||||
const path = referer ? new URL(referer).pathname : '';
|
||||
|
||||
const metainfoExtended = Object.assign({}, metainfo, {
|
||||
host: `${proto}://${host}`,
|
||||
path: path,
|
||||
});
|
||||
|
||||
return metaInfo(metainfoExtended);
|
||||
}
|
||||
|
||||
export default function Page() {
|
||||
return <OcenkaUsherbNedvigi />;
|
||||
}
|
||||
|
||||
@@ -1,12 +1,33 @@
|
||||
import { OcenkaPozhar } from '@/views';
|
||||
import type { Metadata } from 'next';
|
||||
import { headers } from 'next/headers';
|
||||
import { metaInfo } from '@shared/lib';
|
||||
import { TMetainfo } from '@shared/types/metainfo';
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'Оценка ущерба от пожара | Компания ДИТРАСО',
|
||||
const metainfo: TMetainfo = {
|
||||
title: 'Оценка ущерба от пожара',
|
||||
description:
|
||||
'Услуги независимой оценки и судебной экспертизы в Сочи и Краснодаре. Тел. +7 (900) 241-34-34',
|
||||
companyName: 'Компания ДИТРАСО',
|
||||
phone: '+7 (900) 241-34-34',
|
||||
ogImageUrl: '/images/opengraph/main.png',
|
||||
};
|
||||
|
||||
export async function generateMetadata(): Promise<Metadata> {
|
||||
const h = await headers();
|
||||
const referer = h.get('referer') ?? '';
|
||||
const host = h.get('host') ?? '';
|
||||
const proto = h.get('x-forwarded-proto') ?? '';
|
||||
const path = referer ? new URL(referer).pathname : '';
|
||||
|
||||
const metainfoExtended = Object.assign({}, metainfo, {
|
||||
host: `${proto}://${host}`,
|
||||
path: path,
|
||||
});
|
||||
|
||||
return metaInfo(metainfoExtended);
|
||||
}
|
||||
|
||||
export default function Page() {
|
||||
return <OcenkaPozhar />;
|
||||
}
|
||||
|
||||
@@ -1,12 +1,33 @@
|
||||
import { OcenkaZatoplenie } from '@/views';
|
||||
import type { Metadata } from 'next';
|
||||
import { headers } from 'next/headers';
|
||||
import { metaInfo } from '@shared/lib';
|
||||
import { TMetainfo } from '@shared/types/metainfo';
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'Оценка ущерба от залива | Компания ДИТРАСО',
|
||||
const metainfo: TMetainfo = {
|
||||
title: 'Оценка ущерба от залива',
|
||||
description:
|
||||
'Услуги независимой оценки и судебной экспертизы в Сочи и Краснодаре. Тел. +7 (900) 241-34-34',
|
||||
companyName: 'Компания ДИТРАСО',
|
||||
phone: '+7 (900) 241-34-34',
|
||||
ogImageUrl: '/images/opengraph/main.png',
|
||||
};
|
||||
|
||||
export async function generateMetadata(): Promise<Metadata> {
|
||||
const h = await headers();
|
||||
const referer = h.get('referer') ?? '';
|
||||
const host = h.get('host') ?? '';
|
||||
const proto = h.get('x-forwarded-proto') ?? '';
|
||||
const path = referer ? new URL(referer).pathname : '';
|
||||
|
||||
const metainfoExtended = Object.assign({}, metainfo, {
|
||||
host: `${proto}://${host}`,
|
||||
path: path,
|
||||
});
|
||||
|
||||
return metaInfo(metainfoExtended);
|
||||
}
|
||||
|
||||
export default function Page() {
|
||||
return <OcenkaZatoplenie />;
|
||||
}
|
||||
|
||||
@@ -1,12 +1,33 @@
|
||||
import { OcenkaDTP } from '@/views';
|
||||
import type { Metadata } from 'next';
|
||||
import { headers } from 'next/headers';
|
||||
import { metaInfo } from '@shared/lib';
|
||||
import { TMetainfo } from '@shared/types/metainfo';
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'Оценка ущерба в ДТП | Компания ДИТРАСО',
|
||||
const metainfo: TMetainfo = {
|
||||
title: 'Оценка ущерба в ДТП',
|
||||
description:
|
||||
'Услуги независимой оценки и судебной экспертизы в Сочи и Краснодаре. Тел. +7 (900) 241-34-34',
|
||||
companyName: 'Компания ДИТРАСО',
|
||||
phone: '+7 (900) 241-34-34',
|
||||
ogImageUrl: '/images/opengraph/main.png',
|
||||
};
|
||||
|
||||
export async function generateMetadata(): Promise<Metadata> {
|
||||
const h = await headers();
|
||||
const referer = h.get('referer') ?? '';
|
||||
const host = h.get('host') ?? '';
|
||||
const proto = h.get('x-forwarded-proto') ?? '';
|
||||
const path = referer ? new URL(referer).pathname : '';
|
||||
|
||||
const metainfoExtended = Object.assign({}, metainfo, {
|
||||
host: `${proto}://${host}`,
|
||||
path: path,
|
||||
});
|
||||
|
||||
return metaInfo(metainfoExtended);
|
||||
}
|
||||
|
||||
export default function Page() {
|
||||
return <OcenkaDTP />;
|
||||
}
|
||||
|
||||
@@ -1,12 +1,33 @@
|
||||
import { OcenkaUTS } from '@/views';
|
||||
import type { Metadata } from 'next';
|
||||
import { headers } from 'next/headers';
|
||||
import { metaInfo } from '@shared/lib';
|
||||
import { TMetainfo } from '@shared/types/metainfo';
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'Оценка УТС – Утраты товарной стоимости автомобиля | Компания ДИТРАСО',
|
||||
const metainfo: TMetainfo = {
|
||||
title: 'Оценка УТС – Утраты товарной стоимости автомобиля',
|
||||
description:
|
||||
'Услуги независимой оценки и судебной экспертизы в Сочи и Краснодаре. Тел. +7 (900) 241-34-34',
|
||||
companyName: 'Компания ДИТРАСО',
|
||||
phone: '+7 (900) 241-34-34',
|
||||
ogImageUrl: '/images/opengraph/main.png',
|
||||
};
|
||||
|
||||
export async function generateMetadata(): Promise<Metadata> {
|
||||
const h = await headers();
|
||||
const referer = h.get('referer') ?? '';
|
||||
const host = h.get('host') ?? '';
|
||||
const proto = h.get('x-forwarded-proto') ?? '';
|
||||
const path = referer ? new URL(referer).pathname : '';
|
||||
|
||||
const metainfoExtended = Object.assign({}, metainfo, {
|
||||
host: `${proto}://${host}`,
|
||||
path: path,
|
||||
});
|
||||
|
||||
return metaInfo(metainfoExtended);
|
||||
}
|
||||
|
||||
export default function Page() {
|
||||
return <OcenkaUTS />;
|
||||
}
|
||||
|
||||
@@ -1,12 +1,33 @@
|
||||
import { OcenkaVozdushSudna } from '@/views';
|
||||
import type { Metadata } from 'next';
|
||||
import { headers } from 'next/headers';
|
||||
import { metaInfo } from '@shared/lib';
|
||||
import { TMetainfo } from '@shared/types/metainfo';
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'Оценка воздушных судов и летательных аппаратов | Компания ДИТРАСО',
|
||||
const metainfo: TMetainfo = {
|
||||
title: 'Оценка воздушных судов и летательных аппаратов',
|
||||
description:
|
||||
'Услуги независимой оценки и судебной экспертизы в Сочи и Краснодаре. Тел. +7 (900) 241-34-34',
|
||||
companyName: 'Компания ДИТРАСО',
|
||||
phone: '+7 (900) 241-34-34',
|
||||
ogImageUrl: '/images/opengraph/main.png',
|
||||
};
|
||||
|
||||
export async function generateMetadata(): Promise<Metadata> {
|
||||
const h = await headers();
|
||||
const referer = h.get('referer') ?? '';
|
||||
const host = h.get('host') ?? '';
|
||||
const proto = h.get('x-forwarded-proto') ?? '';
|
||||
const path = referer ? new URL(referer).pathname : '';
|
||||
|
||||
const metainfoExtended = Object.assign({}, metainfo, {
|
||||
host: `${proto}://${host}`,
|
||||
path: path,
|
||||
});
|
||||
|
||||
return metaInfo(metainfoExtended);
|
||||
}
|
||||
|
||||
export default function Page() {
|
||||
return <OcenkaVozdushSudna />;
|
||||
}
|
||||
|
||||
@@ -1,12 +1,33 @@
|
||||
import { OcenkaZdaniya } from '@/views';
|
||||
import type { Metadata } from 'next';
|
||||
import { headers } from 'next/headers';
|
||||
import { metaInfo } from '@shared/lib';
|
||||
import { TMetainfo } from '@shared/types/metainfo';
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'Оценка здания | Компания ДИТРАСО',
|
||||
const metainfo: TMetainfo = {
|
||||
title: 'Оценка здания',
|
||||
description:
|
||||
'Услуги независимой оценки и судебной экспертизы в Сочи и Краснодаре. Тел. +7 (900) 241-34-34',
|
||||
companyName: 'Компания ДИТРАСО',
|
||||
phone: '+7 (900) 241-34-34',
|
||||
ogImageUrl: '/images/opengraph/main.png',
|
||||
};
|
||||
|
||||
export async function generateMetadata(): Promise<Metadata> {
|
||||
const h = await headers();
|
||||
const referer = h.get('referer') ?? '';
|
||||
const host = h.get('host') ?? '';
|
||||
const proto = h.get('x-forwarded-proto') ?? '';
|
||||
const path = referer ? new URL(referer).pathname : '';
|
||||
|
||||
const metainfoExtended = Object.assign({}, metainfo, {
|
||||
host: `${proto}://${host}`,
|
||||
path: path,
|
||||
});
|
||||
|
||||
return metaInfo(metainfoExtended);
|
||||
}
|
||||
|
||||
export default function Page() {
|
||||
return <OcenkaZdaniya />;
|
||||
}
|
||||
|
||||
@@ -1,12 +1,33 @@
|
||||
import { OcenkaZememel } from '@/views';
|
||||
import type { Metadata } from 'next';
|
||||
import { headers } from 'next/headers';
|
||||
import { metaInfo } from '@shared/lib';
|
||||
import { TMetainfo } from '@shared/types/metainfo';
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'Оценка земель | Компания ДИТРАСО',
|
||||
const metainfo: TMetainfo = {
|
||||
title: 'Оценка земель',
|
||||
description:
|
||||
'Услуги независимой оценки и судебной экспертизы в Сочи и Краснодаре. Тел. +7 (900) 241-34-34',
|
||||
companyName: 'Компания ДИТРАСО',
|
||||
phone: '+7 (900) 241-34-34',
|
||||
ogImageUrl: '/images/opengraph/main.png',
|
||||
};
|
||||
|
||||
export async function generateMetadata(): Promise<Metadata> {
|
||||
const h = await headers();
|
||||
const referer = h.get('referer') ?? '';
|
||||
const host = h.get('host') ?? '';
|
||||
const proto = h.get('x-forwarded-proto') ?? '';
|
||||
const path = referer ? new URL(referer).pathname : '';
|
||||
|
||||
const metainfoExtended = Object.assign({}, metainfo, {
|
||||
host: `${proto}://${host}`,
|
||||
path: path,
|
||||
});
|
||||
|
||||
return metaInfo(metainfoExtended);
|
||||
}
|
||||
|
||||
export default function Page() {
|
||||
return <OcenkaZememel />;
|
||||
}
|
||||
|
||||
@@ -1,12 +1,33 @@
|
||||
import { OcenkaUchastok } from '@/views';
|
||||
import type { Metadata } from 'next';
|
||||
import { headers } from 'next/headers';
|
||||
import { metaInfo } from '@shared/lib';
|
||||
import { TMetainfo } from '@shared/types/metainfo';
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'Оценка земельного участка | Компания ДИТРАСО',
|
||||
const metainfo: TMetainfo = {
|
||||
title: 'Оценка земельного участка',
|
||||
description:
|
||||
'Услуги независимой оценки и судебной экспертизы в Сочи и Краснодаре. Тел. +7 (900) 241-34-34',
|
||||
companyName: 'Компания ДИТРАСО',
|
||||
phone: '+7 (900) 241-34-34',
|
||||
ogImageUrl: '/images/opengraph/main.png',
|
||||
};
|
||||
|
||||
export async function generateMetadata(): Promise<Metadata> {
|
||||
const h = await headers();
|
||||
const referer = h.get('referer') ?? '';
|
||||
const host = h.get('host') ?? '';
|
||||
const proto = h.get('x-forwarded-proto') ?? '';
|
||||
const path = referer ? new URL(referer).pathname : '';
|
||||
|
||||
const metainfoExtended = Object.assign({}, metainfo, {
|
||||
host: `${proto}://${host}`,
|
||||
path: path,
|
||||
});
|
||||
|
||||
return metaInfo(metainfoExtended);
|
||||
}
|
||||
|
||||
export default function Page() {
|
||||
return <OcenkaUchastok />;
|
||||
}
|
||||
|
||||
@@ -1,12 +1,33 @@
|
||||
import { OcenkaDom } from '@/views';
|
||||
import type { Metadata } from 'next';
|
||||
import { headers } from 'next/headers';
|
||||
import { metaInfo } from '@shared/lib';
|
||||
import { TMetainfo } from '@shared/types/metainfo';
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'Оценка жилого дома | Компания ДИТРАСО',
|
||||
const metainfo: TMetainfo = {
|
||||
title: 'Оценка жилого дома',
|
||||
description:
|
||||
'Услуги независимой оценки и судебной экспертизы в Сочи и Краснодаре. Тел. +7 (900) 241-34-34',
|
||||
companyName: 'Компания ДИТРАСО',
|
||||
phone: '+7 (900) 241-34-34',
|
||||
ogImageUrl: '/images/opengraph/main.png',
|
||||
};
|
||||
|
||||
export async function generateMetadata(): Promise<Metadata> {
|
||||
const h = await headers();
|
||||
const referer = h.get('referer') ?? '';
|
||||
const host = h.get('host') ?? '';
|
||||
const proto = h.get('x-forwarded-proto') ?? '';
|
||||
const path = referer ? new URL(referer).pathname : '';
|
||||
|
||||
const metainfoExtended = Object.assign({}, metainfo, {
|
||||
host: `${proto}://${host}`,
|
||||
path: path,
|
||||
});
|
||||
|
||||
return metaInfo(metainfoExtended);
|
||||
}
|
||||
|
||||
export default function Page() {
|
||||
return <OcenkaDom />;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user