diff --git a/web/newWebsite/questions-chart-class.js b/web/newWebsite/questions-chart-class.js
new file mode 100644
index 0000000..42467d9
--- /dev/null
+++ b/web/newWebsite/questions-chart-class.js
@@ -0,0 +1,27 @@
+class ChartConfigClass{
+ constructor(data, text){
+ this.data = data
+ this.text = text
+ }
+
+ get chartConfig() {
+ return{
+ type: 'pie',
+ data: this.data,
+ options: {
+ responsive: true,
+ legend: {
+ position: 'top',
+ },
+ title: {
+ display: true,
+ text: this.text
+ },
+ animation: {
+ animateScale: true,
+ animateRotate: true
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/web/newWebsite/questions-main-class.js b/web/newWebsite/questions-creation-class.js
similarity index 100%
rename from web/newWebsite/questions-main-class.js
rename to web/newWebsite/questions-creation-class.js
diff --git a/web/newWebsite/questions-dashboard.html b/web/newWebsite/questions-dashboard.html
index 46dad55..3594c6b 100644
--- a/web/newWebsite/questions-dashboard.html
+++ b/web/newWebsite/questions-dashboard.html
@@ -47,7 +47,8 @@
-
+
+