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
+9
View File
@@ -8,9 +8,17 @@ import FreeTrial from './components/FreeTrial';
// import ScientificBenefits from './components/ScientificBenefits';
import CallToAction from './components/CallToAction';
import Footer from './components/Footer';
import { SEOHead } from './components/SEOHead';
function App() {
return (
<>
<SEOHead
title="آرام‌لند - تمرین تنفسی و مدیتیشن"
description="اپلیکیشن آرام‌لند - همراه شما برای رسیدن به آرامش درونی با مدیتیشن‌های فارسی، تمرین‌های تنفسی و موسیقی آرامش‌بخش"
canonical="/" ogImage="../app/og-image.png" />
<div className="min-h-screen bg-gradient-to-b from-blue-50 via-white to-green-50" dir="rtl">
<Header />
@@ -44,6 +52,7 @@ function App() {
<Footer />
</div>
</div>
</>
);
}