feat: add sitemap, tag for SEO
This commit is contained in:
+100
-2
@@ -4,9 +4,66 @@ import './globals.css';
|
||||
export const metadata: Metadata = {
|
||||
title: 'آراملند | تمرین تنفسی و مدیتیشن',
|
||||
description: 'لحظهای آرام بگیر، زندگی را حس کن',
|
||||
keywords: ['مدیتیشن فارسی', 'آرامش', 'تمرین تنفسی', 'کاهش استرس', 'ذهنآگاهی', 'مدیتیشن هدایت شده', 'سلامت روان', 'آراملند'],
|
||||
authors: [{ name: 'آراملند' }],
|
||||
creator: 'آراملند',
|
||||
publisher: 'آراملند',
|
||||
metadataBase: new URL('https://aramland.approagency.ir/'),
|
||||
formatDetection: {
|
||||
email: false,
|
||||
address: false,
|
||||
telephone: false,
|
||||
},
|
||||
icons: {
|
||||
icon: '/favicon.png',
|
||||
},
|
||||
alternates: {
|
||||
canonical: '/',
|
||||
languages: {
|
||||
'fa-IR': '/',
|
||||
},
|
||||
},
|
||||
openGraph: {
|
||||
title: 'آراملند - دستیار آرامش و مدیتیشن فارسی',
|
||||
description: 'اپلیکیشن آراملند - همراه شما برای رسیدن به آرامش درونی با مدیتیشنهای فارسی و تمرینهای تنفسی',
|
||||
url: 'https://aramland.com',
|
||||
siteName: 'آراملند',
|
||||
images: [
|
||||
{
|
||||
url: '/og-image.png', // Create this image (1200x630px)
|
||||
width: 1200,
|
||||
height: 630,
|
||||
alt: ' آراملند - اپلیکیشن مدیتیشن و آرامش - تمرین تنفسی',
|
||||
},
|
||||
],
|
||||
|
||||
locale: 'fa_IR',
|
||||
type: 'website',
|
||||
},
|
||||
|
||||
twitter: {
|
||||
card: 'summary_large_image',
|
||||
title: 'آراملند - تمرین تنفسی و مدیتیشن',
|
||||
description: 'اپلیکیشن آراملند - همراه شما برای رسیدن به آرامش درونی',
|
||||
images: ['/og-image.png'],
|
||||
creator: '@aramland', // Replace with your Twitter handle
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
googleBot: {
|
||||
index: true,
|
||||
follow: true,
|
||||
'max-video-preview': -1,
|
||||
'max-image-preview': 'large',
|
||||
'max-snippet': -1,
|
||||
},
|
||||
},
|
||||
verification: {
|
||||
// Add your verification codes here
|
||||
google: 'google-site-verification=HIKgdf_siYdPxbJ2P1792opMprpxci_QjE-quk9kyi8', // From Google Search Console
|
||||
// yandex: 'your-yandex-verification-code', // If targeting Iran/Russia
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
@@ -16,8 +73,49 @@ export default function RootLayout({
|
||||
}) {
|
||||
return (
|
||||
<html lang="fa" dir="rtl">
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<head>
|
||||
<meta
|
||||
name="google-site-verification"
|
||||
content="HIKgdf_siYdPxbJ2P1792opMprpxci_QjE-quk9kyi8"
|
||||
/>
|
||||
{/* Favicon */}
|
||||
<link rel="icon" href="/favicon.ico" sizes="any" />
|
||||
<link rel="icon" href="/icon?<generated>" type="image/<generated>" sizes="<generated>" />
|
||||
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
|
||||
|
||||
{/* Preload critical resources */}
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossOrigin="anonymous" />
|
||||
|
||||
{/* Structured Data for SEO */}
|
||||
<script
|
||||
type="application/ld+json"
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: JSON.stringify({
|
||||
"@context": "https://schema.org",
|
||||
"@type": "WebApplication",
|
||||
"aggregateRating": {
|
||||
"@type": "AggregateRating",
|
||||
"ratingValue": "4.5",
|
||||
"ratingCount": "1000"
|
||||
},
|
||||
"name": "آراملند",
|
||||
"description": "اپلیکیشن آراملند - همراه شما برای رسیدن به آرامش درونی با مدیتیشنهای فارسی و تمرینهای تنفسی",
|
||||
"url": "https://aramland.approagency.ir/",
|
||||
"applicationCategory": "HealthApplication",
|
||||
"operatingSystem": "Android, iOS, Web",
|
||||
"offers": {
|
||||
"@type": "Offer",
|
||||
"price": "0",
|
||||
"priceCurrency": "IRR"
|
||||
},
|
||||
"author": {
|
||||
"@type": "Organization",
|
||||
"name": "آراملند"
|
||||
}
|
||||
})
|
||||
}}
|
||||
/>
|
||||
</head>
|
||||
<body className="antialiased">
|
||||
{children}
|
||||
|
||||
Reference in New Issue
Block a user