125 lines
4.2 KiB
TypeScript
125 lines
4.2 KiB
TypeScript
import type { Metadata } from 'next';
|
|
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.approagency.ir/',
|
|
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({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<html lang="fa" dir="rtl">
|
|
<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}
|
|
</body>
|
|
</html>
|
|
);
|
|
} |