feat: add sitemap, tag for SEO

This commit is contained in:
2025-11-12 00:25:51 +03:30
parent e95983d9b0
commit 18da3984ae
9 changed files with 196 additions and 5 deletions
+100 -2
View File
@@ -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}