diff --git a/picture/apps/landing/src/content/comparisons/en/placeholder.md b/picture/apps/landing/src/content/comparisons/en/placeholder.md
deleted file mode 100644
index bf1d121e7..000000000
--- a/picture/apps/landing/src/content/comparisons/en/placeholder.md
+++ /dev/null
@@ -1,6 +0,0 @@
----
-title: "Picture vs Traditional Design"
-order: 1
----
-
-Compare Picture's AI-powered approach with traditional design workflows and see how you can save time and resources.
diff --git a/picture/apps/landing/src/content/faq/en/placeholder.md b/picture/apps/landing/src/content/faq/en/placeholder.md
deleted file mode 100644
index 0155194e8..000000000
--- a/picture/apps/landing/src/content/faq/en/placeholder.md
+++ /dev/null
@@ -1,6 +0,0 @@
----
-title: "What is Picture?"
-order: 1
----
-
-Picture is an AI-powered image generation platform that helps you create stunning visuals from text descriptions.
diff --git a/picture/apps/landing/src/content/useCases/en/placeholder.md b/picture/apps/landing/src/content/useCases/en/placeholder.md
deleted file mode 100644
index 396f38293..000000000
--- a/picture/apps/landing/src/content/useCases/en/placeholder.md
+++ /dev/null
@@ -1,7 +0,0 @@
----
-title: "Marketing & Social Media"
-icon: "📱"
-order: 1
----
-
-Create eye-catching visuals for your social media campaigns and marketing materials with AI-generated images.
diff --git a/picture/apps/landing/src/layouts/Layout.astro b/picture/apps/landing/src/layouts/Layout.astro
index ad3cce116..9d091d4e7 100644
--- a/picture/apps/landing/src/layouts/Layout.astro
+++ b/picture/apps/landing/src/layouts/Layout.astro
@@ -1,4 +1,5 @@
---
+import '../styles/global.css';
// import { HeadHrefLangs } from 'astro-i18next/components';
import { t } from '../i18n';
import LanguageSwitcher from '@components/LanguageSwitcher.astro';
diff --git a/picture/apps/landing/src/pages/blog/[slug].astro b/picture/apps/landing/src/pages/blog/[...slug].astro
similarity index 99%
rename from picture/apps/landing/src/pages/blog/[slug].astro
rename to picture/apps/landing/src/pages/blog/[...slug].astro
index 58e89d1ff..5f3e1f857 100644
--- a/picture/apps/landing/src/pages/blog/[slug].astro
+++ b/picture/apps/landing/src/pages/blog/[...slug].astro
@@ -11,7 +11,7 @@ import BlogCard from '@components/blog/BlogCard.astro';
export async function getStaticPaths() {
const allPosts = await getCollection('blog');
return allPosts.map(post => ({
- params: { slug: post.slug },
+ params: { slug: post.id },
props: { post },
}));
}
diff --git a/picture/apps/landing/src/pages/changelog/[slug].astro b/picture/apps/landing/src/pages/changelog/[...slug].astro
similarity index 99%
rename from picture/apps/landing/src/pages/changelog/[slug].astro
rename to picture/apps/landing/src/pages/changelog/[...slug].astro
index 0b20d0114..de7703631 100644
--- a/picture/apps/landing/src/pages/changelog/[slug].astro
+++ b/picture/apps/landing/src/pages/changelog/[...slug].astro
@@ -16,7 +16,7 @@ import {
export async function getStaticPaths() {
const changelog = await getCollection('changelog');
return changelog.map((entry) => ({
- params: { slug: entry.slug },
+ params: { slug: entry.id },
props: { entry },
}));
}
diff --git a/picture/apps/landing/src/pages/changelog/index.astro b/picture/apps/landing/src/pages/changelog/index.astro
index aab90e03e..da0d3f71d 100644
--- a/picture/apps/landing/src/pages/changelog/index.astro
+++ b/picture/apps/landing/src/pages/changelog/index.astro
@@ -64,7 +64,7 @@ const groupedByYearMonth = await getChangelogGroupedByYearMonth(language);
{latestRelease.data.summary}