Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New pricing changelog #764

Merged
merged 1 commit into from
Nov 20, 2024
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
14 changes: 14 additions & 0 deletions changelog/2024-11-18-new-pricing/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
slug: new-pricing
title: New pricing
tags: ['Pricing']
description: We've updated our pricing to make it more transparent and easier to understand.
features:
[
'Compute-based pricing with compute units (2 worker-gb-month)',
'Flexible worker memory allocation (1GB, 2GB, or >2GB)',
'Per-seat pricing with half-price operator seats',
]
image: ./new_pricing.png
docs: /pricing
---
Binary file added changelog/2024-11-18-new-pricing/new_pricing.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/landing/LandingHeader.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ export default function LandingHeader() {
</Popover.Panel>
</Transition>
</Popover>
<Banner />
{/* <Banner /> */}
</div>
);
}
26 changes: 14 additions & 12 deletions src/theme/BlogPostItem/Container/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,19 +81,21 @@ export default function BlogPostItemContainer({ children, className }) {
)}
</span>
))}
<a
href={`https://github.com/windmill-labs/windmill/releases/tag/${frontMatter.version}`}
target="_blank"
>
<span
className={twMerge(
'inline-flex items-center px-3 py-0.5 rounded-full text-sm font-medium',
'bg-gray-100 hover:bg-gray-200 text-gray-800'
)}
{frontMatter.version && (
<a
href={`https://github.com/windmill-labs/windmill/releases/tag/${frontMatter.version}`}
target="_blank"
>
{frontMatter.version}
</span>
</a>
<span
className={twMerge(
'inline-flex items-center px-3 py-0.5 rounded-full text-sm font-medium',
'bg-gray-100 hover:bg-gray-200 text-gray-800'
)}
>
{frontMatter.version}
</span>
</a>
)}
</div>

<div className="mb-6">
Expand Down
Loading