some fixes and updates
This commit is contained in:
+3
-2
@@ -2,8 +2,9 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<link rel="icon" type="image/svg+xml" href="https://graff.estate/icon.svg" />
|
||||
<link rel="shortcut 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="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" />
|
||||
<title>Vite + React + TS</title>
|
||||
<script type="module" crossorigin src="/assets/index-Dua5ifbR.js"></script>
|
||||
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 4.2 KiB |
+26
-6
@@ -22,10 +22,23 @@ export const metadata: Metadata = {
|
||||
"интерактивный инструмент",
|
||||
"интерактивная презентация",
|
||||
],
|
||||
icons: {
|
||||
shortcut: "https://graff.estate/icon.svg",
|
||||
icon: "https://graff.estate/icon.svg",
|
||||
// icons: {
|
||||
// shortcut: "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: {
|
||||
title: "Интерактивные решения для застройщиков",
|
||||
description:
|
||||
@@ -70,20 +83,26 @@ export default function RootLayout({
|
||||
<ModalContainer />
|
||||
</LenisProvider>
|
||||
</QueryProvider>
|
||||
|
||||
{process.env.NODE_ENV === "production" && (
|
||||
<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)};
|
||||
{`
|
||||
(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", {
|
||||
clickmap:true,
|
||||
trackLinks:true,
|
||||
accurateTrackBounce:true,
|
||||
webvisor:true
|
||||
});`}
|
||||
});
|
||||
`}
|
||||
</Script>
|
||||
)}
|
||||
|
||||
{process.env.NODE_ENV === "production" && (
|
||||
<noscript>
|
||||
<div>
|
||||
<img
|
||||
@@ -93,6 +112,7 @@ export default function RootLayout({
|
||||
/>
|
||||
</div>
|
||||
</noscript>
|
||||
)}
|
||||
</body>
|
||||
</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() {
|
||||
return redirect('/not-found', RedirectType.replace);
|
||||
return (
|
||||
<MainLayout>
|
||||
<NotFoundPage />
|
||||
</MainLayout>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -100,7 +100,7 @@ export function Footer() {
|
||||
Политика конфиденциальности и обработки персональных данных
|
||||
</a>
|
||||
<p className="text-[#37393B] text1 font-medium leading-[18.9px] col-start-1">
|
||||
© 2025 GRAFF interactive. Все права защищены
|
||||
© 2026 GRAFF interactive. Все права защищены
|
||||
</p>
|
||||
<a
|
||||
target="_blank"
|
||||
|
||||
Reference in New Issue
Block a user