some fixes and updates
This commit is contained in:
+3
-2
@@ -2,8 +2,9 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8" />
|
<meta charset="UTF-8" />
|
||||||
<link rel="icon" type="image/svg+xml" href="https://graff.estate/icon.svg" />
|
<link rel="icon" type="image/x-icon" sizes="48x48" href="https://graff.estate/icon.ico" />
|
||||||
<link rel="shortcut icon" type="image/svg+xml" href="https://graff.estate/icon.svg" />
|
<link rel="icon" type="image/svg+xml" sizes="48x48" href="https://graff.estate/icon.svg" />
|
||||||
|
<link rel="shortcut icon" type="image/svg+xml" sizes="48x48" href="https://graff.estate/icon.svg" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
<title>Vite + React + TS</title>
|
<title>Vite + React + TS</title>
|
||||||
<script type="module" crossorigin src="/assets/index-Dua5ifbR.js"></script>
|
<script type="module" crossorigin src="/assets/index-Dua5ifbR.js"></script>
|
||||||
|
|||||||
Binary file not shown.
|
After Width: | Height: | Size: 4.2 KiB |
+46
-26
@@ -22,10 +22,23 @@ export const metadata: Metadata = {
|
|||||||
"интерактивный инструмент",
|
"интерактивный инструмент",
|
||||||
"интерактивная презентация",
|
"интерактивная презентация",
|
||||||
],
|
],
|
||||||
icons: {
|
// icons: {
|
||||||
shortcut: "https://graff.estate/icon.svg",
|
// shortcut: "https://graff.estate/icon.svg",
|
||||||
icon: "https://graff.estate/icon.svg",
|
// icon: "https://graff.estate/icon.svg",
|
||||||
},
|
// },
|
||||||
|
icons: [
|
||||||
|
{ rel: "icon", url: "https://graff.estate/icon.ico" },
|
||||||
|
{
|
||||||
|
rel: "shortcut icon",
|
||||||
|
type: "image/svg+xml",
|
||||||
|
url: "https://graff.estate/icon.svg",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
rel: "icon",
|
||||||
|
type: "image/svg+xml",
|
||||||
|
url: "https://graff.estate/icon.svg",
|
||||||
|
},
|
||||||
|
],
|
||||||
openGraph: {
|
openGraph: {
|
||||||
title: "Интерактивные решения для застройщиков",
|
title: "Интерактивные решения для застройщиков",
|
||||||
description:
|
description:
|
||||||
@@ -70,29 +83,36 @@ export default function RootLayout({
|
|||||||
<ModalContainer />
|
<ModalContainer />
|
||||||
</LenisProvider>
|
</LenisProvider>
|
||||||
</QueryProvider>
|
</QueryProvider>
|
||||||
<Script id="metrika-counter" type="text/javascript">
|
|
||||||
{`(function(m,e,t,r,i,k,a){m[i]=m[i]||function(){(m[i].a=m[i].a||[]).push(arguments)};
|
|
||||||
m[i].l=1*new Date();
|
|
||||||
for (var j = 0; j < document.scripts.length; j++) {if (document.scripts[j].src === r) { return; }}
|
|
||||||
k=e.createElement(t),a=e.getElementsByTagName(t)[0],k.async=1,k.src=r,a.parentNode.insertBefore(k,a)})
|
|
||||||
(window, document, "script", "https://mc.yandex.ru/metrika/tag.js", "ym");
|
|
||||||
|
|
||||||
ym(93606080, "init", {
|
{process.env.NODE_ENV === "production" && (
|
||||||
clickmap:true,
|
<Script id="metrika-counter" type="text/javascript">
|
||||||
trackLinks:true,
|
{`
|
||||||
accurateTrackBounce:true,
|
(function(m,e,t,r,i,k,a){m[i]=m[i]||function(){(m[i].a=m[i].a||[]).push(arguments)};
|
||||||
webvisor:true
|
m[i].l=1*new Date();
|
||||||
});`}
|
for (var j = 0; j < document.scripts.length; j++) {if (document.scripts[j].src === r) { return; }}
|
||||||
</Script>
|
k=e.createElement(t),a=e.getElementsByTagName(t)[0],k.async=1,k.src=r,a.parentNode.insertBefore(k,a)})
|
||||||
<noscript>
|
(window, document, "script", "https://mc.yandex.ru/metrika/tag.js", "ym");
|
||||||
<div>
|
ym(93606080, "init", {
|
||||||
<img
|
clickmap:true,
|
||||||
src="https://mc.yandex.ru/watch/93606080"
|
trackLinks:true,
|
||||||
style={{ position: "absolute", left: "-9999px" }}
|
accurateTrackBounce:true,
|
||||||
alt=""
|
webvisor:true
|
||||||
/>
|
});
|
||||||
</div>
|
`}
|
||||||
</noscript>
|
</Script>
|
||||||
|
)}
|
||||||
|
|
||||||
|
{process.env.NODE_ENV === "production" && (
|
||||||
|
<noscript>
|
||||||
|
<div>
|
||||||
|
<img
|
||||||
|
src="https://mc.yandex.ru/watch/93606080"
|
||||||
|
style={{ position: "absolute", left: "-9999px" }}
|
||||||
|
alt=""
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</noscript>
|
||||||
|
)}
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -1,5 +1,11 @@
|
|||||||
import { redirect, RedirectType } from 'next/navigation';
|
import { redirect, RedirectType } from "next/navigation";
|
||||||
|
import MainLayout from "./(main)/layout";
|
||||||
|
import { NotFoundPage } from "@/components/pages/NotFoundPage";
|
||||||
|
|
||||||
export default function Page() {
|
export default function Page() {
|
||||||
return redirect('/not-found', RedirectType.replace);
|
return (
|
||||||
|
<MainLayout>
|
||||||
|
<NotFoundPage />
|
||||||
|
</MainLayout>
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -100,7 +100,7 @@ export function Footer() {
|
|||||||
Политика конфиденциальности и обработки персональных данных
|
Политика конфиденциальности и обработки персональных данных
|
||||||
</a>
|
</a>
|
||||||
<p className="text-[#37393B] text1 font-medium leading-[18.9px] col-start-1">
|
<p className="text-[#37393B] text1 font-medium leading-[18.9px] col-start-1">
|
||||||
© 2025 GRAFF interactive. Все права защищены
|
© 2026 GRAFF interactive. Все права защищены
|
||||||
</p>
|
</p>
|
||||||
<a
|
<a
|
||||||
target="_blank"
|
target="_blank"
|
||||||
|
|||||||
Reference in New Issue
Block a user