diff --git a/index.html b/index.html
index 3be21f2..d0de3e9 100644
--- a/index.html
+++ b/index.html
@@ -136,6 +136,31 @@
}
}
+
+
+
diff --git a/src/pages/AboutPage.tsx b/src/pages/AboutPage.tsx
index 2d5e53c..0e8ee5d 100644
--- a/src/pages/AboutPage.tsx
+++ b/src/pages/AboutPage.tsx
@@ -158,6 +158,21 @@ const AboutPage = () => {
},
})}
+
+
+
{/* Hero */}
diff --git a/src/pages/BlogPostPage.tsx b/src/pages/BlogPostPage.tsx
index edbadd5..200c0e2 100644
--- a/src/pages/BlogPostPage.tsx
+++ b/src/pages/BlogPostPage.tsx
@@ -1,6 +1,7 @@
import { useState, useEffect } from 'react';
import { useParams, Link } from 'react-router-dom';
import { motion } from 'framer-motion';
+import { Helmet } from 'react-helmet-async';
import SEO from '../components/SEO';
import { useTranslation } from '../i18n';
import type { BlogPostFull } from '../types/blog';
@@ -72,6 +73,33 @@ const BlogPostPage: React.FC = () => {
image={post.coverImage || undefined}
type="article"
/>
+
+
+
{t('blogPost.back')}
{post.coverImage && (
diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx
index ce9077c..3b27366 100644
--- a/src/pages/HomePage.tsx
+++ b/src/pages/HomePage.tsx
@@ -1,3 +1,4 @@
+import { Helmet } from 'react-helmet-async';
import SEO from '../components/SEO';
import Hero from '../components/Hero';
import Benefits from '../components/Benefits';
@@ -14,6 +15,46 @@ const HomePage: React.FC = () => {
return (
+
+
+
diff --git a/src/pages/PricingPage.tsx b/src/pages/PricingPage.tsx
index c3ee532..c1fbf57 100644
--- a/src/pages/PricingPage.tsx
+++ b/src/pages/PricingPage.tsx
@@ -140,6 +140,20 @@ const PricingPage = () => {
},
})}
+
+
+
{/* Hero */}