Copilot in the coding environment.
$ 10 USD$ 20per month / $100 per year
Copilot personalized to your organization throughout the software development lifecycle. Requires GitHub Enterprise Cloud.
$ 39 USD$ 49per user / month
<PrimerBrandPricing Plans="@DefaultPlans" />
Copilot in the coding environment.
$ 10 USD$ 20per month / $100 per year
Copilot personalized to your organization throughout the software development lifecycle. Requires GitHub Enterprise Cloud.
$ 39 USD$ 49per user / month
<PrimerBrandPricing Plans="@CenterAlignedPlans" />
Code completions, Chat, and more for indie developers and freelancers.
$ 10 USDper month / $100 per year
<PrimerBrandPricing Plans="@SinglePlan" />
Parameters for each pricing plan
Name | Description | Default Value | CSS Class |
---|---|---|---|
Title | Title of the pricing plan | "" | PricingOptions__heading |
Label | Optional label (e.g. 'Recommended') | null | PricingOptions__label |
Description | Plan description | "" | PricingOptions__description |
Price | Main price value | "" | PricingOptions__price-value |
OriginalPrice | Strikethrough original price | null | PricingOptions__price-original |
PriceSuffix | Trailing price text (e.g. per month) | "" | PricingOptions__price-trailing-text |
CurrencySymbol | Currency symbol (e.g. $) | "$" | PricingOptions__currency-symbol |
CurrencyCode | Currency code (e.g. USD) | "USD" | PricingOptions__currency-code |
FeatureTitle | Title above feature list | "What's included" | PricingOptions__feature-title |
PrimaryActionLabel | Text for main CTA button | null | Button--primary |
SecondaryActionLabel | Text for secondary CTA button | null | Button--secondary |
Features | List of features in the plan | [] | PricingOptions__feature-list |
AlignCenter | Center-align card content | false | PricingOptions__item--align-center |
private List<PricingPlan> DefaultPlans = new()
{
new PricingPlan
{
Title = "Copilot",
Label = "Recommended",
Description = "Copilot in the coding environment.",
Price = "10",
OriginalPrice = "20",
PriceSuffix = "per month / $100 per year",
CurrencySymbol = "$",
CurrencyCode = "USD",
FeatureTitle = "What's included",
PrimaryActionLabel = "Buy now",
SecondaryActionLabel = "Contact sales",
Features = new()
{
"Everything in Copilot Business plus:",
"Chat in IDE and Mobile",
"CLI assistance",
"Code completions"
}
},
new PricingPlan
{
Title = "Copilot Business",
Label = "Recommended",
Description = "Copilot personalized to your organization throughout the software development lifecycle. Requires GitHub Enterprise Cloud.",
Price = "39",
OriginalPrice = "49",
PriceSuffix = "per user / month",
CurrencySymbol = "$",
CurrencyCode = "USD",
FeatureTitle = "What's included",
PrimaryActionLabel = "Join waitlist",
Features = new()
{
"Everything in Copilot Business plus:",
"Chat in IDE and Mobile",
"CLI assistance",
"Code completions"
}
}
};
private List<PricingPlan> CenterAlignedPlans => DefaultPlans.Select(p => new PricingPlan
{
Title = p.Title,
Label = p.Label,
Description = p.Description,
Price = p.Price,
OriginalPrice = p.OriginalPrice,
PriceSuffix = p.PriceSuffix,
CurrencySymbol = p.CurrencySymbol,
CurrencyCode = p.CurrencyCode,
FeatureTitle = p.FeatureTitle,
PrimaryActionLabel = p.PrimaryActionLabel,
SecondaryActionLabel = p.SecondaryActionLabel,
Features = p.Features,
AlignCenter = true
}).ToList();
private List<PricingPlan> SinglePlan = new()
{
new PricingPlan
{
Title = "Copilot Individual",
Description = "Code completions, Chat, and more for indie developers and freelancers.",
Price = "10",
PriceSuffix = "per month / $100 per year",
CurrencySymbol = "$",
CurrencyCode = "USD",
PrimaryActionLabel = "Buy now",
SecondaryActionLabel = "Contact sales"
}
};