diff --git a/dashboard_code/dashboard.py b/dashboard_code/dashboard.py
index 0635112efece43156a9327441b583bc245bdb506..86df109920d66ec25ec1c9d0733093f1468f324c 100644
--- a/dashboard_code/dashboard.py
+++ b/dashboard_code/dashboard.py
@@ -7,7 +7,7 @@ class Dashboard:
         self.graph_groups = {}  # {group_name: {category_name: [(title, html), ...], ...}, ...}
         self.home_graphs = []   # Store the graphs that should also appear on the home page
 
-    def add_graph(self, group_name, category_name, fig, title):
+    def add_graph(self, group_name, category_name, fig, title, description=None):
         # Make the figure responsive
         fig.update_layout(autosize=True)
         graph_html = pio.to_html(fig, full_html=False, config={"responsive": True})
@@ -17,14 +17,14 @@ class Dashboard:
             self.graph_groups[group_name] = {}
         if category_name not in self.graph_groups[group_name]:
             self.graph_groups[group_name][category_name] = []
-        self.graph_groups[group_name][category_name].append((title, graph_html))
-
+        self.graph_groups[group_name][category_name].append((title, graph_html, description))
+        
         graph_home_html = pio.to_html(fig, full_html=False, config={"responsive": True})
         # Add to home page if it’s one of these choropleths
         if title == "Map of World Crime":
-            self.home_graphs.append((title, graph_home_html))
+            self.home_graphs.append((title, graph_home_html, description))
 
-    def generate_html(self, output_path="dashboard_code/graphs_display.html"):
+    def generate_html(self, output_path="dashboard_code/graphs_display.html", description=None):
         html_template = """
         <!DOCTYPE html>
         <html lang="en">
@@ -89,6 +89,16 @@ class Dashboard:
                 .plotly-graph {{
                     font-size: 16px;
                 }}
+                .description-textarea {{
+                    width: 100%;
+                    resize: none;
+                    background: #343a40;
+                    color: #f8f9fa;
+                    border: 1px solid #495057;
+                    border-radius: 5px;
+                    padding: 10px;
+                    margin-top: 10px;
+                }}
             </style>
         </head>
         <body>
@@ -151,7 +161,7 @@ class Dashboard:
 
         # Home tab content: Map of World Crime taking up the entire page
         home_html = '<div class="row">'
-        for title, graph_html in self.home_graphs:
+        for title, graph_html, desc in self.home_graphs:
             if title == "Map of World Crime":
                 home_html += f"""
                 <div class="col-12">
@@ -167,7 +177,7 @@ class Dashboard:
         home_html += f"""
         <div class="description-container">
             <textarea class="form-control" rows="4" style="resize: none; background: #343a40; color: #f8f9fa; border: 1px solid #495057;" readonly>
-You can add any home page description here if needed.
+Welcome to the CrimeBoard, your interactive platform for exploring global and UK-specific crime trends. This dashboard offers insights into crime distribution, economic factors, and regional disparities through dynamic visualizations, including maps, line charts, and bar graphs.
             </textarea>
         </div>
         """
@@ -200,11 +210,10 @@ You can add any home page description here if needed.
             graphs_html = ""
             for category_name, graphs_list in categories.items():
                 graphs_html += f"<h3>{category_name}</h3>"
-                for title, graph_html in graphs_list:
-                    # The text box description for each graph
+                for title, graph_html, desc in graphs_list:
                     description_html = f"""
-                    <textarea class="form-control" rows="4" style="resize: none; background: #343a40; color: #f8f9fa; border: 1px solid #495057;" readonly>
-This is a fixed description for {title}. You can style it as needed.
+                    <textarea class="description-textarea" rows="4" readonly>
+                    {desc if desc else "No description provided."}
                     </textarea>
                     """
                     graphs_html += f"""
diff --git a/data_storage/UK/Crime/combined_crime_uk.db b/data_storage/UK/Crime/combined_crime_uk.db
index 3f585453c388754870db4bb456d649d371ffbe71..a5dab72f3faf5234f48089b35367d83cbc22e95b 100644
Binary files a/data_storage/UK/Crime/combined_crime_uk.db and b/data_storage/UK/Crime/combined_crime_uk.db differ
diff --git a/data_storage/UK/Education/education-and-training-statistics-for-the-uk_2024/data/uk_expenditure.db b/data_storage/UK/Education/education-and-training-statistics-for-the-uk_2024/data/uk_expenditure.db
index ebd6faae6f8c72b4bd656707e220a60a4d69d342..486118c7ce5adb3df88b674ac1c8dff69441e8ab 100644
Binary files a/data_storage/UK/Education/education-and-training-statistics-for-the-uk_2024/data/uk_expenditure.db and b/data_storage/UK/Education/education-and-training-statistics-for-the-uk_2024/data/uk_expenditure.db differ
diff --git a/data_storage/UK/Education/education-and-training-statistics-for-the-uk_2024/data/uk_highest_qualifications_time_series_rounded.db b/data_storage/UK/Education/education-and-training-statistics-for-the-uk_2024/data/uk_highest_qualifications_time_series_rounded.db
index e34e59230fe1ac4210c3b81dddf0f5d591d37be5..207bf4e8fe866821f05ce44ab8de7af24c5d9580 100644
Binary files a/data_storage/UK/Education/education-and-training-statistics-for-the-uk_2024/data/uk_highest_qualifications_time_series_rounded.db and b/data_storage/UK/Education/education-and-training-statistics-for-the-uk_2024/data/uk_highest_qualifications_time_series_rounded.db differ
diff --git a/data_storage/UK/Education/education-and-training-statistics-for-the-uk_2024/data/uk_neet.db b/data_storage/UK/Education/education-and-training-statistics-for-the-uk_2024/data/uk_neet.db
index a73aa1b2542f96f80748b4ed3786b8fbc3b82862..bac4288082bdf5c94073c6ace49004df2c7920c8 100644
Binary files a/data_storage/UK/Education/education-and-training-statistics-for-the-uk_2024/data/uk_neet.db and b/data_storage/UK/Education/education-and-training-statistics-for-the-uk_2024/data/uk_neet.db differ
diff --git a/data_storage/UK/Education/education-and-training-statistics-for-the-uk_2024/data/uk_post_compulsory_education_fe_students.db b/data_storage/UK/Education/education-and-training-statistics-for-the-uk_2024/data/uk_post_compulsory_education_fe_students.db
index 68d5482452911e3f377ab460c2e62036246cff32..9c34915d80160670ec7180b7a62a2fc3faa36250 100644
Binary files a/data_storage/UK/Education/education-and-training-statistics-for-the-uk_2024/data/uk_post_compulsory_education_fe_students.db and b/data_storage/UK/Education/education-and-training-statistics-for-the-uk_2024/data/uk_post_compulsory_education_fe_students.db differ
diff --git a/data_storage/UK/Education/education-and-training-statistics-for-the-uk_2024/data/uk_post_compulsory_education_he_students.db b/data_storage/UK/Education/education-and-training-statistics-for-the-uk_2024/data/uk_post_compulsory_education_he_students.db
index a6efa00b6bb43016790ddc610f5364d1dee37052..940dc60a64724834b7996aa0d1d37fa44d270df1 100644
Binary files a/data_storage/UK/Education/education-and-training-statistics-for-the-uk_2024/data/uk_post_compulsory_education_he_students.db and b/data_storage/UK/Education/education-and-training-statistics-for-the-uk_2024/data/uk_post_compulsory_education_he_students.db differ
diff --git a/data_storage/UK/Education/education-and-training-statistics-for-the-uk_2024/data/uk_post_compulsory_education_institutions.db b/data_storage/UK/Education/education-and-training-statistics-for-the-uk_2024/data/uk_post_compulsory_education_institutions.db
index f2b58df3c2044bff859c8dd0bdba420a2b1168e5..f3d9fd434f727239d493917c2911911ae009fbcd 100644
Binary files a/data_storage/UK/Education/education-and-training-statistics-for-the-uk_2024/data/uk_post_compulsory_education_institutions.db and b/data_storage/UK/Education/education-and-training-statistics-for-the-uk_2024/data/uk_post_compulsory_education_institutions.db differ
diff --git a/data_storage/UK/Education/education-and-training-statistics-for-the-uk_2024/data/uk_pupil_teacher_ratios.db b/data_storage/UK/Education/education-and-training-statistics-for-the-uk_2024/data/uk_pupil_teacher_ratios.db
index 0cc9ed7e4d40e8afbf47ed48edd6a5141f21046c..3a165e5ec643aade408d75a35418f47d0ed686bf 100644
Binary files a/data_storage/UK/Education/education-and-training-statistics-for-the-uk_2024/data/uk_pupil_teacher_ratios.db and b/data_storage/UK/Education/education-and-training-statistics-for-the-uk_2024/data/uk_pupil_teacher_ratios.db differ
diff --git a/data_storage/UK/Education/education-and-training-statistics-for-the-uk_2024/data/uk_pupils_suppressed.db b/data_storage/UK/Education/education-and-training-statistics-for-the-uk_2024/data/uk_pupils_suppressed.db
index 237dfa7124aeb11262f22ee125d2e142a0ef024b..57f9163ff5f440933ebe029dac708c5d2e82c4aa 100644
Binary files a/data_storage/UK/Education/education-and-training-statistics-for-the-uk_2024/data/uk_pupils_suppressed.db and b/data_storage/UK/Education/education-and-training-statistics-for-the-uk_2024/data/uk_pupils_suppressed.db differ
diff --git a/data_storage/UK/Education/education-and-training-statistics-for-the-uk_2024/data/uk_schools.db b/data_storage/UK/Education/education-and-training-statistics-for-the-uk_2024/data/uk_schools.db
index 16310ccd27736fe71a962369d7d1cd7312809948..d28830a623e971b3197b2ae5d541271188225bf5 100644
Binary files a/data_storage/UK/Education/education-and-training-statistics-for-the-uk_2024/data/uk_schools.db and b/data_storage/UK/Education/education-and-training-statistics-for-the-uk_2024/data/uk_schools.db differ
diff --git a/data_storage/UK/Education/education-and-training-statistics-for-the-uk_2024/data/uk_teachers_suppressed.db b/data_storage/UK/Education/education-and-training-statistics-for-the-uk_2024/data/uk_teachers_suppressed.db
index 5e5573659c5dab1c0b3675f2ad986925a675f472..212f259e3406f5e0c9dc6d7596a2e574d9f21094 100644
Binary files a/data_storage/UK/Education/education-and-training-statistics-for-the-uk_2024/data/uk_teachers_suppressed.db and b/data_storage/UK/Education/education-and-training-statistics-for-the-uk_2024/data/uk_teachers_suppressed.db differ
diff --git a/data_storage/UK/Education/la-and-school-expenditure_2023-24/data/cfr_income_la_regional_national.db b/data_storage/UK/Education/la-and-school-expenditure_2023-24/data/cfr_income_la_regional_national.db
index cea7543fdef8e90c9cf88a7149b369e2a6d4002f..c31457b2b5bb91b1aff589c9a1d7e903b882b62b 100644
Binary files a/data_storage/UK/Education/la-and-school-expenditure_2023-24/data/cfr_income_la_regional_national.db and b/data_storage/UK/Education/la-and-school-expenditure_2023-24/data/cfr_income_la_regional_national.db differ
diff --git a/data_storage/UK/Education/la-and-school-expenditure_2023-24/data/cfr_income_national_summary.db b/data_storage/UK/Education/la-and-school-expenditure_2023-24/data/cfr_income_national_summary.db
index 4bb5feb38b9427f621bf078e5f28407936ff47bb..fc83c2c92ddfc4eaf5e0c7b4194b70d4bfd32f58 100644
Binary files a/data_storage/UK/Education/la-and-school-expenditure_2023-24/data/cfr_income_national_summary.db and b/data_storage/UK/Education/la-and-school-expenditure_2023-24/data/cfr_income_national_summary.db differ
diff --git a/data_storage/UK/Education/la-and-school-expenditure_2023-24/data/cfr_revenue_reserve_la_regional_national_data.db b/data_storage/UK/Education/la-and-school-expenditure_2023-24/data/cfr_revenue_reserve_la_regional_national_data.db
index aaa45043e5003fb0a5b0eed0a9d6889f0d821e63..431eb56961a6f5059019cadfd2130efb9ce06441 100644
Binary files a/data_storage/UK/Education/la-and-school-expenditure_2023-24/data/cfr_revenue_reserve_la_regional_national_data.db and b/data_storage/UK/Education/la-and-school-expenditure_2023-24/data/cfr_revenue_reserve_la_regional_national_data.db differ
diff --git a/data_storage/UK/Education/la-and-school-expenditure_2023-24/data/cfr_revenue_reserves_national_rounded_data.db b/data_storage/UK/Education/la-and-school-expenditure_2023-24/data/cfr_revenue_reserves_national_rounded_data.db
index b1a9c2308eb9c79a593b5a73200a508f3c0b4ccb..e4c9c6758df24dd6b608abd59a00c036902294b3 100644
Binary files a/data_storage/UK/Education/la-and-school-expenditure_2023-24/data/cfr_revenue_reserves_national_rounded_data.db and b/data_storage/UK/Education/la-and-school-expenditure_2023-24/data/cfr_revenue_reserves_national_rounded_data.db differ
diff --git a/data_storage/UK/Education/la-and-school-expenditure_2023-24/data/headline_key_figures.db b/data_storage/UK/Education/la-and-school-expenditure_2023-24/data/headline_key_figures.db
index 0036553be0343d0c5b0aecfb2c6b12158a942045..68d7b622bfdb378c8ed1b2a6941210a7ec0122d2 100644
Binary files a/data_storage/UK/Education/la-and-school-expenditure_2023-24/data/headline_key_figures.db and b/data_storage/UK/Education/la-and-school-expenditure_2023-24/data/headline_key_figures.db differ
diff --git a/data_storage/UK/Education/la-and-school-expenditure_2023-24/data/s251_childrens_young_peoples_services_la_regional_national.db b/data_storage/UK/Education/la-and-school-expenditure_2023-24/data/s251_childrens_young_peoples_services_la_regional_national.db
index 2e0dd9fecea058cdf6208809f55e61dc7aea00d1..4951f026237105d7b024aaf52b4759a94c24758a 100644
Binary files a/data_storage/UK/Education/la-and-school-expenditure_2023-24/data/s251_childrens_young_peoples_services_la_regional_national.db and b/data_storage/UK/Education/la-and-school-expenditure_2023-24/data/s251_childrens_young_peoples_services_la_regional_national.db differ
diff --git a/data_storage/UK/Education/la-and-school-expenditure_2023-24/data/s251_childrens_young_peoples_services_national.db b/data_storage/UK/Education/la-and-school-expenditure_2023-24/data/s251_childrens_young_peoples_services_national.db
index cfdaeb04e8096bd1793f273e3cb02d68669da61f..80de38bb98d1cfd521a16b2607440e4c9d815c09 100644
Binary files a/data_storage/UK/Education/la-and-school-expenditure_2023-24/data/s251_childrens_young_peoples_services_national.db and b/data_storage/UK/Education/la-and-school-expenditure_2023-24/data/s251_childrens_young_peoples_services_national.db differ
diff --git a/data_storage/UK/Education/school-funding-statistics_2023-24/data/20240125_fig2.db b/data_storage/UK/Education/school-funding-statistics_2023-24/data/20240125_fig2.db
index 1c611d3da602692ddad54ab9617aefd703fc7f23..305f561d8032eefcb9834e80003c8633ce8083d8 100644
Binary files a/data_storage/UK/Education/school-funding-statistics_2023-24/data/20240125_fig2.db and b/data_storage/UK/Education/school-funding-statistics_2023-24/data/20240125_fig2.db differ
diff --git a/data_storage/UK/Education/school-funding-statistics_2023-24/data/20240125_school_level_data_csv.db b/data_storage/UK/Education/school-funding-statistics_2023-24/data/20240125_school_level_data_csv.db
index 3f43571692fca2de58238f3458a3ee0a06a1ae90..9350efc61f583e01b41a6e55871c582cca0caef6 100644
Binary files a/data_storage/UK/Education/school-funding-statistics_2023-24/data/20240125_school_level_data_csv.db and b/data_storage/UK/Education/school-funding-statistics_2023-24/data/20240125_school_level_data_csv.db differ
diff --git a/data_storage/UK/Education/school-funding-statistics_2023-24/data/20240125_tab1.db b/data_storage/UK/Education/school-funding-statistics_2023-24/data/20240125_tab1.db
index db96828e26a9dff1639dfd9f73a14893cea608ff..c45ff2b01c4e1b23683c142f9aac6948477bd79b 100644
Binary files a/data_storage/UK/Education/school-funding-statistics_2023-24/data/20240125_tab1.db and b/data_storage/UK/Education/school-funding-statistics_2023-24/data/20240125_tab1.db differ
diff --git a/data_storage/UN/Crime/SYB67_328_202411_Intentional homicides and other crimes.db b/data_storage/UN/Crime/SYB67_328_202411_Intentional homicides and other crimes.db
index f13b6c0ced429fc3eefa48194dc109979b11d93c..80938d3b61df50a78ac8027c3db41931002138de 100644
Binary files a/data_storage/UN/Crime/SYB67_328_202411_Intentional homicides and other crimes.db and b/data_storage/UN/Crime/SYB67_328_202411_Intentional homicides and other crimes.db differ
diff --git a/data_storage/UN/Crime/UN_Crime_Continents.db b/data_storage/UN/Crime/UN_Crime_Continents.db
index ec63dcc7f1a449ddba1f23c98543dd136dc857ba..6fbb127a88acac4d0172561ff80b8c6a9056f17f 100644
Binary files a/data_storage/UN/Crime/UN_Crime_Continents.db and b/data_storage/UN/Crime/UN_Crime_Continents.db differ
diff --git a/data_storage/UN/Economy/GDP_per_capita_continents.db b/data_storage/UN/Economy/GDP_per_capita_continents.db
index 883416b523d650da2b987e712472e666ebc5d18d..014809ab3f5ef9cf7345f3604ce2247e1401da9b 100644
Binary files a/data_storage/UN/Economy/GDP_per_capita_continents.db and b/data_storage/UN/Economy/GDP_per_capita_continents.db differ
diff --git a/data_storage/UN/Economy/Government_final_consumption_expenditure_by_function_at_current_prices.db b/data_storage/UN/Economy/Government_final_consumption_expenditure_by_function_at_current_prices.db
index 43a9d5ea8d18b08b2d5a78d854f8ce6aa0d563ef..c445f40006f5d4197de7c2b63d891eff072e726c 100644
Binary files a/data_storage/UN/Economy/Government_final_consumption_expenditure_by_function_at_current_prices.db and b/data_storage/UN/Economy/Government_final_consumption_expenditure_by_function_at_current_prices.db differ
diff --git a/data_storage/UN/Economy/SYB67_128_202411_Consumer Price Index.db b/data_storage/UN/Economy/SYB67_128_202411_Consumer Price Index.db
index e7711e658bc2966f30236e624a2d518cc14f0fe1..59c1c4c5447a4933e40acf5033a22bdc867552be 100644
Binary files a/data_storage/UN/Economy/SYB67_128_202411_Consumer Price Index.db and b/data_storage/UN/Economy/SYB67_128_202411_Consumer Price Index.db differ
diff --git a/data_storage/UN/Economy/SYB67_230_202411_GDP and GDP Per Capita.db b/data_storage/UN/Economy/SYB67_230_202411_GDP and GDP Per Capita.db
index 6a3f9bf16c2af4037fd814fbf53d9dc263488978..dc27a6c28158633235fff314cbf5e40c541ba3d8 100644
Binary files a/data_storage/UN/Economy/SYB67_230_202411_GDP and GDP Per Capita.db and b/data_storage/UN/Economy/SYB67_230_202411_GDP and GDP Per Capita.db differ
diff --git a/data_storage/UN/Education/SYB67_245_202411_Public expenditure on education and access to computers.db b/data_storage/UN/Education/SYB67_245_202411_Public expenditure on education and access to computers.db
index 7de02fb488255dccb452dc7704f2bc95e88afc28..ae9dc51f791e329000191645fd3a0edf858e6fea 100644
Binary files a/data_storage/UN/Education/SYB67_245_202411_Public expenditure on education and access to computers.db and b/data_storage/UN/Education/SYB67_245_202411_Public expenditure on education and access to computers.db differ
diff --git a/data_storage/UN/Education/SYB67_309_202411_Education.db b/data_storage/UN/Education/SYB67_309_202411_Education.db
index b8fc7a5049e517dc98a070484bece1b2eb53b1aa..00555ebe1b242269a42ca6d2fdc2a5d8b693bd8f 100644
Binary files a/data_storage/UN/Education/SYB67_309_202411_Education.db and b/data_storage/UN/Education/SYB67_309_202411_Education.db differ
diff --git a/data_storage/UN/Education/SYB67_323_202411_Teaching Staff in education.db b/data_storage/UN/Education/SYB67_323_202411_Teaching Staff in education.db
index 7ad6f687a82ed9b239719917a310a4e3e0a949ec..ac1f4a7bfd5bfdac1e7dafa1d0c8ae373a1ae42c 100644
Binary files a/data_storage/UN/Education/SYB67_323_202411_Teaching Staff in education.db and b/data_storage/UN/Education/SYB67_323_202411_Teaching Staff in education.db differ
diff --git a/data_storage/UN/Gender/SYB67_319_202411_Ratio of girls to boys in education.db b/data_storage/UN/Gender/SYB67_319_202411_Ratio of girls to boys in education.db
index 32b031260cf4617f9206110e9eda3e2f21cd98aa..2d17139e448f1661ecbd56a50093618c0b601350 100644
Binary files a/data_storage/UN/Gender/SYB67_319_202411_Ratio of girls to boys in education.db and b/data_storage/UN/Gender/SYB67_319_202411_Ratio of girls to boys in education.db differ
diff --git a/data_storage/UN/Health/SYB67_154_202411_Health Personnel.db b/data_storage/UN/Health/SYB67_154_202411_Health Personnel.db
index 1726a4a8dc86156b1a04d1d404a382649a48b786..120e5458a93914b37f6ff2baf200ba8fe2e73350 100644
Binary files a/data_storage/UN/Health/SYB67_154_202411_Health Personnel.db and b/data_storage/UN/Health/SYB67_154_202411_Health Personnel.db differ
diff --git a/data_storage/UN/Health/SYB67_325_202411_Expenditure on health.db b/data_storage/UN/Health/SYB67_325_202411_Expenditure on health.db
index 2db8ff1f2ef44c592f0c0483b271be0113df9307..66d5161a7168ff2696010d92f984339a66d687de 100644
Binary files a/data_storage/UN/Health/SYB67_325_202411_Expenditure on health.db and b/data_storage/UN/Health/SYB67_325_202411_Expenditure on health.db differ
diff --git a/data_storage/UN/Internet/SYB67_314_202411_Internet Usage.db b/data_storage/UN/Internet/SYB67_314_202411_Internet Usage.db
index 4737754d4635f504cb943526b4ee058e280096bb..e5b2ff390006d646f7ae09ba569ff14f469f0ff8 100644
Binary files a/data_storage/UN/Internet/SYB67_314_202411_Internet Usage.db and b/data_storage/UN/Internet/SYB67_314_202411_Internet Usage.db differ
diff --git a/data_storage/UN/Labour/SYB67_200_202411_Employment.db b/data_storage/UN/Labour/SYB67_200_202411_Employment.db
index fcf450c3220343bfc807de76e581cbc8308d51b8..81b485684dba9e99f951f5c3b6bc33188bc47f60 100644
Binary files a/data_storage/UN/Labour/SYB67_200_202411_Employment.db and b/data_storage/UN/Labour/SYB67_200_202411_Employment.db differ
diff --git a/data_storage/UN/Labour/SYB67_329_202411_Labour Force and Unemployment.db b/data_storage/UN/Labour/SYB67_329_202411_Labour Force and Unemployment.db
index d12ba55cce56c6aaab782ddacafb70a46c42404d..66a1d2d47cd837e44f2dd005fb5c97cbcc67aac2 100644
Binary files a/data_storage/UN/Labour/SYB67_329_202411_Labour Force and Unemployment.db and b/data_storage/UN/Labour/SYB67_329_202411_Labour Force and Unemployment.db differ
diff --git a/data_storage/UN/Land/SYB67_145_202411_Land.db b/data_storage/UN/Land/SYB67_145_202411_Land.db
index 173083414682d23db5b223b9d2c503b33483ba54..ba5a811490e03b5e05aae7ac3cc2ffbfd7c44eeb 100644
Binary files a/data_storage/UN/Land/SYB67_145_202411_Land.db and b/data_storage/UN/Land/SYB67_145_202411_Land.db differ
diff --git a/graphs/graphs_display.html b/graphs/graphs_display.html
index fc6500030dced1effd266347129f6b2ce348df53..8851876f9eedf0205f21e5777d35da4a8abf01ac 100644
Binary files a/graphs/graphs_display.html and b/graphs/graphs_display.html differ
diff --git a/main.py b/main.py
index b621f7101c264c97eb71aa978b6f4698fcb20fa8..34d30e769d1512827c345087c330ce25c971d5d9 100644
--- a/main.py
+++ b/main.py
@@ -698,6 +698,18 @@ def graph8():
 
 
 if __name__ == "__main__":
+   
+    graph_descriptions = {
+    "Map of World Crime": "This choropleth visualizes global crime rates, with varying color intensity representing crime severity in different regions. It provides an overview of crime hotspots, helping users understand regional disparities in crime rates. The user can filter by crime type or gender for further insights.",
+    "Homicide Rate": "This line chart shows global homicide rate trends from 2005 to 2022. It allows users to select specific countries or continents to examine regional trends. The chart highlights the fluctuations in homicide rates over time and across regions.",
+    "GDP per Capita (USD) by Continent": "This pie chart animation illustrates the percentage distribution of GDP per capita by continent from 1995 to 2022. The animation shows how the global economic landscape has shifted, with an additional 'other' category abstracting smaller GDP percentages. Users can explore data for specific years to see economic changes.",
+    "Crime and Economy": "This grouped bar chart compares GDP per capita (left axis, blue bars) and homicide rates (right axis, red bars) for different regions. It provides a direct comparison of economic prosperity with crime levels, allowing users to explore correlations. Users can sort the data by GDP or crime rate for deeper analysis.",
+    "Total Recorded Crime": "This choropleth shows the distribution of crime across UK local authority areas, with colors indicating varying crime levels. The user can filter by crime type or total recorded crime to analyze specific trends. The focus is on highlighting areas with the highest crime rates and exploring potential connections to education expenditure",
+    "UK Education Expenditure": "This stacked bar chart shows the UK government's education expenditure from 2015 to 2023, broken down by type of education (e.g., secondary, tertiary). The color-coded sections allow users to see how funding is allocated across different education sectors. This chart helps to understand trends in government investment in education over the years.",
+    "UK Crime Line Graph": "This line chart tracks total crime rates across the UK from 2015 to 2024. It shows how crime has fluctuated over the years, providing a broader understanding of crime trends in the country. Users can see the overall trajectory of crime and analyze yearly changes.",
+    "Distribution of Crime Types": "This choropleth shows the distribution of crime across UK local authority areas, with colors indicating varying crime levels. The user can filter by crime type or total recorded crime to analyze specific trends. The focus is on highlighting areas with the highest crime rates and exploring potential connections to education expenditure."
+    }
+    
     graphs = [
         ("Map of World Crime", combined_choropleth, "UN", "Crime"),
         ("Homicide Rate", un_crime_line_chart, "UN", "Crime"),
@@ -705,14 +717,14 @@ if __name__ == "__main__":
         ("Crime and Economy", large_grouped_bar_chart, "UN", "Socioeconomic"),
         ("Total Recorded Crime", graph9, "UK", "Crime"),
         ("UK Education Expenditure", graph8, "UK", "Socioeconomic"),
-        ("UK Crime Bar Chart", graph10, "UK", "Crime"),
+        ("UK Crime Line Graph", graph10, "UK", "Crime"),
         ("Distribution of Crime Types", graph11, "UK", "Crime")
     ]
     
     # Add each graph to the dashboard with a progress bar
     for title, graph_function, group_name, category_name in tqdm(graphs, desc="Generating graphs"):
         fig = graph_function()
-        d_board.add_graph(group_name=group_name, category_name=category_name, fig=fig, title=title)
+        d_board.add_graph(group_name=group_name, category_name=category_name, fig=fig, title=title , description=graph_descriptions.get(title, ""))
 
 
     # Finally, generate the HTML