Добавление Яндекс верификации

This commit is contained in:
Web-serfer 2026-04-01 17:56:50 +05:00
parent 74f09e530c
commit 9f14235135
2 changed files with 6 additions and 5 deletions

2
frontend/.gitignore vendored
View file

@ -1,6 +1,6 @@
# build output # build output
dist/ dist/
.idea/ .idea
# generated types # generated types
.astro/ .astro/

View file

@ -17,12 +17,13 @@ const canonicalURL = canonicalLink ? new URL(canonicalLink, Astro.site) : new UR
<meta name="description" content={description} /> <meta name="description" content={description} />
<link rel="canonical" href={canonicalURL} /> <link rel="canonical" href={canonicalURL} />
<link rel="icon" type="image/x-icon" href="/images/favicon.ico" /> <link rel="icon" type="image/x-icon" href="/images/favicon.ico" />
<meta name="yandex-verification" content="bf08ff8b386cf2d7" />
</head> </head>
<body class="antialiased bg-neutral-950"> <body class="antialiased bg-neutral-950">
<SquareLines /> <SquareLines />
<Header /> <Header />
<slot /> <slot />
<Footer client:visible /> <Footer client:visible />
</body> </body>
</html> </html>