Blog
@@ -82,9 +80,10 @@ function BlogPostDetail({ slug }: { slug: string }) {
if (!post) {
return (
-
- Post Not Found – Wraith Protocol
-
+
Post Not Found
The requested blog post could not be found.
@@ -98,10 +97,10 @@ function BlogPostDetail({ slug }: { slug: string }) {
return (
-
- {post.title} – Wraith Protocol
- {post.excerpt && }
-
+
-
- Careers – Wraith Protocol
-
-
-
-
-
-
+
diff --git a/src/pages/CaseStudies.tsx b/src/pages/CaseStudies.tsx
index 177abba..56512ca 100644
--- a/src/pages/CaseStudies.tsx
+++ b/src/pages/CaseStudies.tsx
@@ -3,6 +3,7 @@ import { Link, useParams } from 'react-router-dom';
import { useTranslation } from 'react-i18next';
import { entries } from '../data/case-studies.json';
import Layout from '../components/Layout';
+import { Seo } from '../utils/seo';
type CaseStudy = {
id: string;
@@ -67,6 +68,11 @@ function CaseStudyDetail({ study }: { study: CaseStudy }) {
return (
+