diff --git a/next-env.d.ts b/next-env.d.ts
index 9edff1c..c4b7818 100644
--- a/next-env.d.ts
+++ b/next-env.d.ts
@@ -1,6 +1,6 @@
///
///
-import "./.next/types/routes.d.ts";
+import "./.next/dev/types/routes.d.ts";
// NOTE: This file should not be edited
// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.
diff --git a/src/app/_components/GettingStartedCards.jsx b/src/app/_components/GettingStartedCards.jsx
new file mode 100644
index 0000000..f889eac
--- /dev/null
+++ b/src/app/_components/GettingStartedCards.jsx
@@ -0,0 +1,210 @@
+"use client";
+
+import Link from "next/link";
+
+const cards = [
+ {
+ title: "Cloud Platform",
+ description:
+ "Get started with our managed cloud platform. No infrastructure setup required.",
+ href: "/docs/getting-started/cloud-setup",
+ image:
+ "https://d33et8skld5wvq.cloudfront.net/images/spacedf-docs/cloud-platform.png",
+ icon: (
+
+ ),
+ bgColor: "#f3e8ff",
+ },
+ {
+ title: "Self-Hosted Installation",
+ description:
+ "Deploy SpaceDF on your own infrastructure for complete control and customization.",
+ href: "/docs/getting-started/self-hosted",
+ image:
+ "https://d33et8skld5wvq.cloudfront.net/images/spacedf-docs/self-host.png",
+ icon: (
+
+ ),
+ bgColor: "#dbeafe",
+ },
+];
+
+export function GettingStartedCards() {
+ return (
+
+ {cards.map(card => (
+
+
+
+

+
+
+
{card.icon}
+
{card.title}
+
+
+
+
+ ))}
+
+
+
+ );
+}
diff --git a/src/app/layout.jsx b/src/app/layout.jsx
index 470596f..1cf22e1 100644
--- a/src/app/layout.jsx
+++ b/src/app/layout.jsx
@@ -3,6 +3,7 @@ import {Footer, Layout, Navbar} from "nextra-theme-docs";
import {Banner, Head} from "nextra/components";
import {getPageMap} from "nextra/page-map";
import VersionLabel from "./_components/VersionLabel";
+import ImageZoomProvider from "../components/ImageZoomProvider";
import "nextra-theme-docs/style.css";
import "./globals.css";
@@ -68,42 +69,44 @@ export default async function RootLayout({children}) {
}}
/>
-
- π SpaceDF v2025.12.19 is now live!{" "}
-
- Read the release notes
-
-
- }
- navbar={navbar}
- footer={
-
- }
- editLink="Edit this page on GitHub"
- docsRepositoryBase="https://github.com/Space-DF/spacedf-docs/blob/main"
- sidebar={{defaultMenuCollapseLevel: 1}}
- pageMap={pageMap}
- >
- {children}
-
+
+ }
+ navbar={navbar}
+ footer={
+
+ }
+ editLink="Edit this page on GitHub"
+ docsRepositoryBase="https://github.com/Space-DF/spacedf-docs/blob/main"
+ sidebar={{defaultMenuCollapseLevel: 1}}
+ pageMap={pageMap}
+ >
+ {children}
+
+