diff --git a/public/Powered_by_Xebia.svg b/public/Powered_by_Xebia.svg
new file mode 100644
index 0000000..4a0b4dc
--- /dev/null
+++ b/public/Powered_by_Xebia.svg
@@ -0,0 +1,10 @@
+
diff --git a/public/data.json b/public/data.json
index 0f84775..50b4efd 100644
--- a/public/data.json
+++ b/public/data.json
@@ -2,7 +2,8 @@
"features": {
"videos": [
{
- "sku": "GitHub Copilot Individual",
+ "sku": "GitHub Copilot Free / Pro",
+ "sku_id": 1,
"items": [
{
"id": 0,
@@ -11,25 +12,32 @@
"description": "Explainer of the demo repo we use in the videos.",
"ghes_support": true
},
+ {
+ "id": 99,
+ "title": "Getting started with GitHub Copilot Free",
+ "videoUrl": "https://youtu.be/dMbOh114Vd4",
+ "description": "To get started with GitHub Copilot Free you can go to https://gh.io/copilot and open the VS Code link from there. This will trigger your VS Code to install the Copilot extensions and ask you to get started with Copilot for free. This includes 2000 suggestions and 50 chat completions per month, for free.",
+ "ghes_support": true
+ },
{
"id": 1,
- "title": "Code completions",
+ "title": "Code completions / suggestions",
"videoUrl": "",
- "description": "Enhance your coding experience with AI-powered code completions.",
+ "description": "Enhance your coding experience with AI-powered code completions while you are typing. Also called 'suggestions'. These are the most common way of using Copilot as they show up as a suggestion while you are typing in your editor.",
"ghes_support": true
},
{
"id": 2,
"title": "Chat in IDE",
"videoUrl": "",
- "description": "Communicate with Copilot directly within your IDE for instant assistance.",
+ "description": "Communicate with Copilot directly within your IDE for instant assistance. You can have multi turn conversations with Copilot on things in your code, or ask it questions on things surrounding your code, like 'how do I do this in Python', or 'how do I run the unit tests from my terminal'.",
"ghes_support": true
},
{
"id": 3,
"title": "Chat on mobile",
"videoUrl": "",
- "description": "Get coding assistance on-the-go with Copilot's mobile chat feature.",
+ "description": "Get coding assistance on-the-go with Copilot's mobile chat feature. This lets you summarize issues/pull requests/discussions, or ask broader questions about a repository for example.",
"ghes_support": true
},
{
@@ -205,6 +213,7 @@
},
{
"sku": "GitHub Copilot Business",
+ "sku_id": 2,
"items": [
{
"id": 23,
@@ -238,6 +247,7 @@
},
{
"sku": "GitHub Copilot Enterprise",
+ "sku_id": 3,
"items": [
{
"id": 16,
diff --git a/src/App.jsx b/src/App.jsx
index 56a78d7..281e878 100644
--- a/src/App.jsx
+++ b/src/App.jsx
@@ -10,6 +10,7 @@ import Tutorials from './pages/Tutorials';
import './styles.css';
import basename from '../react-config';
import NotFound from './pages/NotFound';
+import PoweredBy from './PoweredBy';
function App() {
return (
@@ -28,6 +29,8 @@ function App() {
{videoDetails.description}
+{videoDetails.description}