You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Enhance schema.org markup in layout with SearchAction and mainEntity for better SEO. Update description and add alternate names for improved clarity. Modify ClientSearch to synchronize search query with URL parameters for better user experience.
Copy file name to clipboardExpand all lines: app/layout.tsx
+74-5Lines changed: 74 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -19,17 +19,85 @@ export default function RootLayout({
19
19
return(
20
20
<htmllang="en">
21
21
<head>
22
-
{/* Schema.org разметка для Website */}
22
+
{/* Schema.org разметка для Website с SearchAction и основными разделами */}
23
23
<script
24
24
type="application/ld+json"
25
25
dangerouslySetInnerHTML={{
26
26
__html: JSON.stringify({
27
27
"@context": "https://schema.org",
28
28
"@type": "WebSite",
29
29
name: "NXRIG",
30
+
alternateName: "NX Rig",
30
31
description:
31
-
"Free guitar presets for NUX Mighty Plug Pro and NUX Mighty Space - fully compatible with both devices",
32
+
"Free guitar presets for NUX Mighty Plug Pro and NUX Mighty Space - fully compatible with both devices. Download professional guitar tones inspired by Metallica, Nirvana, Red Hot Chili Peppers, and more legendary artists.",
0 commit comments