(window.location.href = '/changelog'),
- // selected: window.location.href.includes('/changelog')
- // },
- // {
- // name: 'Privacy',
- // icon: LockClosedIcon,
- // onPress: () => (window.location.href = '/privacy'),
- // selected: window.location.href.includes('/privacy')
- // },
- dropdownItem({
- name: 'Sponsor us',
- icon: HeartIcon,
- href: 'https://opencollective.com/spacedrive'
})
]
]}
diff --git a/apps/landing/src/pages/blog/post.page.tsx b/apps/landing/src/pages/blog/post.page.tsx
index 0c5881e0e..516495c4a 100644
--- a/apps/landing/src/pages/blog/post.page.tsx
+++ b/apps/landing/src/pages/blog/post.page.tsx
@@ -2,6 +2,7 @@ import { PostOrPage, Tag } from '@tryghost/content-api';
import Prism from 'prismjs';
import 'prismjs/components/prism-rust';
import React, { useEffect, useState } from 'react';
+import { Helmet } from 'react-helmet';
import '../../atom-one.css';
import { BlogTag } from '../../components/BlogTag';
@@ -11,8 +12,17 @@ function MarkdownPage({ post }: { post: PostOrPage }) {
Prism.highlightAll();
}, []);
+ console.log(post);
+
return (
+
+ {post?.title} - Spacedrive Blog
+
+
+
+
+
{post && (
<>