8000 feat: implement Premium features page using shadcn/ui and Tailwind by jaaydenh · Pull Request #15094 · coder/coder · GitHub
[go: up one dir, main page]

Skip to content

feat: implement Premium features page using shadcn/ui and Tailwind #15094

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

Merged
merged 27 commits into from
Nov 6, 2024
Merged
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
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
Prev Previous commit
Next Next commit
feat: add icons for OSS version
  • Loading branch information
jaaydenh committed Nov 6, 2024
commit 09c5844322e5bc907d582a16a527dff8a6da3341
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Button } from "components/ui/button";
import { SquareArrowOutUpRight } from "lucide-react";
import { Activity, Coins, Expand, SquareArrowOutUpRight } from "lucide-react";
import type { FC } from "react";
import { docs } from "utils/docs";

Expand Down Expand Up @@ -117,7 +117,10 @@ const OSSVersion: FC = () => {

<section className="pb-10 max-w-xl text-sm text-content-secondary">
<h2 className="text-xl text-content-primary m-0">
Deploy Coder at Scale
<span className="flex flex-row items-center">
<Expand size={18} className="text-content-secondary" />
&nbsp; Deploy Coder at Scale
</span>
</h2>
<p>
Equip your enterprise to deploy and manage thousands of workspaces
Expand Down Expand Up @@ -159,7 +162,10 @@ const OSSVersion: FC = () => {

<section className="pb-10 max-w-xl text-sm text-content-secondary">
<h2 className="text-xl text-content-primary m-0">
Control Infrastructure Costs
<span className="flex flex-row items-center">
<Coins size={18} className="text-content-secondary" />
&nbsp; Control Infrastructure Costs
</span>
</h2>
<p>
Optimize cloud usage and maintain cost-effective resource management
Expand Down Expand Up @@ -201,7 +207,10 @@ const OSSVersion: FC = () => {

<section className="pb-5 max-w-xl text-sm text-content-secondary">
<h2 className="text-xl text-content-primary m-0">
Govern Workspace Activity
<span className="flex flex-row items-center">
<Activity size={18} className="text-content-secondary" />
&nbsp; Govern Workspace Activity
</span>
</h2>
<p>
Maintain security and compliance across your organization with robust
Expand Down
Loading
0