Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added public/screenshots/bucket-guide.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/screenshots/iam-credentials.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 6 additions & 6 deletions src/app/_components/GettingStartedCards.jsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"use client";
"use client"

import Link from "next/link";
import Link from "next/link"

const cards = [
{
Expand Down Expand Up @@ -29,7 +29,7 @@ const cards = [
title: "Self-Hosted Installation",
description:
"Deploy SpaceDF on your own infrastructure for complete control and customization.",
href: "/docs/getting-started/self-hosted",
href: "/docs/getting-started/self-hosting",
image:
"https://d33et8skld5wvq.cloudfront.net/images/spacedf-docs/self-host.png",
icon: (
Expand All @@ -47,12 +47,12 @@ const cards = [
</svg>
),
},
];
]

export function GettingStartedCards() {
return (
<div className="getting-started-grid">
{cards.map(card => (
{cards.map((card) => (
<Link key={card.title} href={card.href}>
<div className="getting-started-card">
<img src={card.image} alt={card.title} />
Expand Down Expand Up @@ -221,5 +221,5 @@ export function GettingStartedCards() {
}
`}</style>
</div>
);
)
}
2 changes: 1 addition & 1 deletion src/app/blog/v2025.12.19/page.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ The platform is built with a microservices architecture:
To get started with SpaceDF:

1. Visit our [Getting Started guide](/getting-started)
2. Set up your [Cloud deployment](/getting-started/cloud-setup) or [Self-hosted installation](/getting-started/self-hosted)
2. Set up your [Cloud deployment](/getting-started/cloud-setup) or [Self-hosted installation](/getting-started/self-hosting)
3. Follow the [Onboarding guide](/onboarding)

## Support
Expand Down
4 changes: 2 additions & 2 deletions src/content/getting-started/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ asIndexPage: true
sidebarTitle: Installation
---

import {Cards, Callout} from "nextra/components";
import { Cards, Callout } from "nextra/components";

# Getting Started with SpaceDF

Expand Down Expand Up @@ -41,7 +41,7 @@ Ready to dive in? The getting started guides take you step-by-step through Space
/>
}
title="Self-Hosted Installation"
href="/docs/getting-started/self-hosted"
href="/docs/getting-started/self-hosting"
/>
</Cards>

Expand Down
4 changes: 4 additions & 0 deletions src/content/getting-started/self-hosting/docker/_meta.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
export default {
"quick-start": "Quick Start",
"advanced-setup": "Advanced Setup",
}
Loading