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
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export function FeaturePreview({ selectedFeature }: FeaturePreviewProps) {
<Badge variant="default">PRO</Badge>
{selectedFeature.comingSoon && (
<Badge variant="secondary" className="text-[10px]">
Coming Soon
(Coming Soon)
</Badge>
)}
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@ function FeatureButton({ feature, isSelected, onSelect }: FeatureButtonProps) {
{feature.title}
</span>
{feature.comingSoon && (
<span className="text-[10px] text-muted-foreground/70 font-normal">
Coming Soon
<span className="text-[11px] text-muted-foreground font-normal">
(Coming Soon)
</span>
)}
</span>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ type ComparisonValue = string | boolean | null;
type ComparisonRow = {
label: string;
values: ComparisonValue[];
comingSoon?: boolean;
};

type ComparisonSection = {
Expand Down Expand Up @@ -136,10 +137,12 @@ const COMPARISON_SECTIONS: ComparisonSection[] = [
{
label: "Cloud workspaces",
values: [null, true, true],
comingSoon: true,
},
{
label: "Mobile app",
values: [null, true, true],
comingSoon: true,
},
{
label: "Linear integration",
Expand Down Expand Up @@ -332,7 +335,7 @@ function PlansPage() {

const highlightColumnIndex = 1;
const highlightColumnStart = highlightColumnIndex + 2;
const gridColumnsClass = "grid grid-cols-[180px_repeat(3,_1fr)]";
const gridColumnsClass = "grid grid-cols-[240px_repeat(3,_1fr)]";

return (
<div className="p-6 max-w-7xl w-full">
Expand Down Expand Up @@ -524,8 +527,13 @@ function PlansPage() {

return (
<Fragment key={row.label}>
<div className="flex items-center px-2 py-2.5 text-xs text-muted-foreground">
<div className="flex items-center gap-1.5 px-2 py-2.5 text-xs text-muted-foreground">
{row.label}
{row.comingSoon && (
<span className="text-[10px] text-muted-foreground/60">
(Coming Soon)
</span>
)}
</div>
{row.values.map((value, valueIndex) => (
<div
Expand Down
Loading