Merge remote-tracking branch 'origin/main' into shahanneda/add-wordcloud

This commit is contained in:
Shahan Nedadahandeh 2022-07-13 17:34:57 -07:00
commit cd7e9339b9
Signed by: snedadah
GPG Key ID: 8638C7F917385B01
3 changed files with 39 additions and 9 deletions

View File

@ -35,3 +35,32 @@ export const mockCategoricalData = [
value: 29,
},
];
export const moreMockCategoricalData = [
{ key: "Python", value: 29.53 },
{ key: "Java", value: 17.06 },
{ key: "JavaScript", value: 8.56 },
{ key: "C", value: 6.49 },
{ key: "C", value: 6.31 },
{ key: "R", value: 5.83 },
{ key: "Objective C", value: 3.43 },
{ key: "Swift", value: 2.89 },
{ key: "PHP", value: 2.85 },
{ key: "Rust", value: 2.33 },
{ key: "Ruby", value: 2.25 },
{ key: "Matlab", value: 2.06 },
{ key: "TypeScript", value: 1.98 },
{ key: "Go", value: 1.85 },
{ key: "VBA", value: 1.11 },
{ key: "Scala", value: 0.79 },
{ key: "Lua", value: 0.79 },
{ key: "Julia", value: 0.77 },
{ key: "Kotlin", value: 0.7 },
{ key: "Perl", value: 0.41 },
{ key: "Groovy", value: 0.4 },
{ key: "Haskell", value: 0.27 },
{ key: "Abap", value: 0.24 },
{ key: "Cobol", value: 0.23 },
{ key: "Ada", value: 0.11 },
{ key: "Dart", value: 0.11 },
];

View File

@ -1,6 +1,7 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
trailingSlash: true,
}
module.exports = nextConfig

View File

@ -5,7 +5,7 @@
font-weight: 200;
src: local(''),
url('../public/fonts/inconsolata-v30-latin-200.woff2') format('woff2'),
url('../public/fonts/inconsolata-v30-latin-200.woff') format('woff'),
url('../public/fonts/inconsolata-v30-latin-200.woff') format('woff');
}
/* inconsolata-300 - latin */
@ -15,7 +15,7 @@
font-weight: 300;
src: local(''),
url('../public/fonts/inconsolata-v30-latin-300.woff2') format('woff2'),
url('../public/fonts/inconsolata-v30-latin-300.woff') format('woff'),
url('../public/fonts/inconsolata-v30-latin-300.woff') format('woff');
}
/* inconsolata-regular - latin */
@ -25,7 +25,7 @@
font-weight: 400;
src: local(''),
url('../public/fonts/inconsolata-v30-latin-regular.woff2') format('woff2'),
url('../public/fonts/inconsolata-v30-latin-regular.woff') format('woff'),
url('../public/fonts/inconsolata-v30-latin-regular.woff') format('woff');
}
/* inconsolata-500 - latin */
@ -35,7 +35,7 @@
font-weight: 500;
src: local(''),
url('../public/fonts/inconsolata-v30-latin-500.woff2') format('woff2'),
url('../public/fonts/inconsolata-v30-latin-500.woff') format('woff'),
url('../public/fonts/inconsolata-v30-latin-500.woff') format('woff');
}
/* inconsolata-600 - latin */
@ -46,7 +46,7 @@
src: local(''),
url('../public/fonts/inconsolata-v30-latin-600.woff2') format('woff2'),
/* Super Modern Browsers */
url('../public/fonts/inconsolata-v30-latin-600.woff') format('woff'),
url('../public/fonts/inconsolata-v30-latin-600.woff') format('woff');
}
/* inconsolata-700 - latin */
@ -56,7 +56,7 @@
font-weight: 700;
src: local(''),
url('../public/fonts/inconsolata-v30-latin-700.woff2') format('woff2'),
url('../public/fonts/inconsolata-v30-latin-700.woff') format('woff'),
url('../public/fonts/inconsolata-v30-latin-700.woff') format('woff');
}
/* inconsolata-800 - latin */
@ -66,7 +66,7 @@
font-weight: 800;
src: local(''),
url('../public/fonts/inconsolata-v30-latin-800.woff2') format('woff2'),
url('../public/fonts/inconsolata-v30-latin-800.woff') format('woff'),
url('../public/fonts/inconsolata-v30-latin-800.woff') format('woff');
}
/* inconsolata-900 - latin */
@ -76,5 +76,5 @@
font-weight: 900;
src: local(''),
url('../public/fonts/inconsolata-v30-latin-900.woff2') format('woff2'),
url('../public/fonts/inconsolata-v30-latin-900.woff') format('woff'),
}
url('../public/fonts/inconsolata-v30-latin-900.woff') format('woff');
}