diff --git a/dashboard/src/app/blog/page.tsx b/dashboard/src/app/blog/page.tsx index 1c91384..21d9150 100644 --- a/dashboard/src/app/blog/page.tsx +++ b/dashboard/src/app/blog/page.tsx @@ -52,15 +52,29 @@ export default async function BlogPage({ searchParams }: PageProps) { const paginatedPosts = posts.slice(startIndex, endIndex) return ( -
-
-
-

Blog

-

- Latest updates, releases, and insights from the Cloud-Neutral community. -

- +
+ {/* Sticky Navigation Header */} +
+
+ + SVC.plus + / + blog + +
+ +
+
+ +
+
+
+

Blog

+

+ Latest updates, releases, and insights from the Cloud-Neutral community. +

+
{posts.length === 0 ? (
@@ -154,7 +168,8 @@ export default async function BlogPage({ searchParams }: PageProps) { )} )} -
-
+
+
+ ) }