Skip to content
Open
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
4 changes: 2 additions & 2 deletions docs/src/content/docs/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,8 @@ Ready to unleash your creativity? Invoke is available for Windows, macOS, and Li

---

:::note[About the Hosted Version]
The Invoke hosted platform has been shut down as the founding team joined Adobe. However, Invoke lives on as a thriving open-source project maintained by the community.
:::note[About the former Invoke.ai-hosted version]

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
:::note[About the former Invoke.ai-hosted version]
:::note[About the former officially-hosted version]

The Invoke.ai hosted platform has been shut down as the founding team joined Adobe. However, Invoke lives on as a thriving open-source project maintained by the community.

The open-source version offers the same powerful features you may have used in the hosted service, with the added benefit of complete control and privacy through self-hosting.

Expand Down
48 changes: 48 additions & 0 deletions docs/src/lib/components/DownloadOptions.astro
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,24 @@ const manualDownloadOptions = {
href: withBase('/configuration/docker/', import.meta.env.BASE_URL),
},
};

const hostedOptions = {
aibadgr: {
headline: 'Run on AI Badgr',
description: 'Run on the AI Badgr hosted GPU service',
href: 'https://aibadgr.com/gpu/launch?template=invokeai',
},
runpod: {
headline: 'Run on RunPod',
description: 'Run on the RunPod hosted GPU service',
href: 'https://www.runpod.io/blog/invoke-ai-stable-diffusion-runpod-nfz18',
},
railway: {
headline: 'Run on Railway',
description: 'Run on the Railway hosted GPU service',
href: 'https://railway.com/deploy/invokeai',
},
};
---

<div class="download-options">
Expand Down Expand Up @@ -92,6 +110,27 @@ const manualDownloadOptions = {
))
}
</div>

<!-- Hosted -->
<div class="download-options__separator download-options__separator--text">
<span align="center">Commercial Hosted Service Options</span>
</div>

<!-- Hosted Options -->
<div class="download-options__grid download-options--launcher">
{
Object.entries(hostedOptions).map(
([key, { headline, description, href }]) => (
<div class="download-option" data-platform={key}>
<h3>{headline}</h3>
<a href={href}>{description}</a>
</div>
</div>
),
)
}
</div>

</div>

<style is:global>
Expand Down Expand Up @@ -134,6 +173,15 @@ const manualDownloadOptions = {
}
}

.download-options__separator--text > span {
border-radius: 0;
border: none;
width: auto;
aspect-ratio: auto;
padding: 0 0.75rem;
white-space: nowrap;
}

.download-options--launcher {
display: grid;
gap: 1.5rem;
Expand Down
5 changes: 5 additions & 0 deletions docs/src/styles/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -342,6 +342,11 @@ article.card {

/* Splash Page-specific styles */

/* Make the default body font a bit smaller on the splash/home page. */
[data-has-hero] .sl-markdown-content {
font-size: 0.9rem;
}

@keyframes splash-animate {
0% { background-position: 0% 0%; }
50% { background-position: 0% 100%; }
Expand Down
Loading