diff --git a/docs/images/book.png b/docs/images/book.png
new file mode 100644
index 0000000..e3b8308
Binary files /dev/null and b/docs/images/book.png differ
diff --git a/docs/images/icon.png b/docs/images/icon.png
new file mode 100644
index 0000000..4c9dbfa
Binary files /dev/null and b/docs/images/icon.png differ
diff --git a/docs/index.md b/docs/index.md
index 206c459..d8684e0 100644
--- a/docs/index.md
+++ b/docs/index.md
@@ -1,19 +1,25 @@
+---
+hide:
+ - navigation
+ - toc
+---
+
# Cheat Sheets for Data Science Learning
-This repository serves as a hub for various Cheat Sheets related to
-the field of Data Science (with Python and R). What sets these Cheat Sheets apart is their
-multidimensional approach to enhancing the learning experience.
-Each Cheat Sheet is made available in three distinct formats:
+This repository is a comprehensive resource for Data Science Cheat Sheets,
+specifically designed for Python and R.
+
+These Cheat Sheets offer a multidimensional approach to learning, available in three distinct formats:
* **PDF**:
* **Streamlit**:
* **Google Colab**:
-## Content
+## Sections
-### Python
+### 📗 Python
-::cards:: cols=3
+::cards:: cols=4
- title: Python
content: "
@@ -37,6 +43,11 @@ Each Cheat Sheet is made available in three distinct formats:
image: https://upload.wikimedia.org/wikipedia/commons/thumb/2/22/Pandas_mark.svg/1200px-Pandas_mark.svg.png
url: ./examples/pandas/pandas/
+::/cards::
+
+
+::cards:: cols=4
+
- title: Matplotlib
content: "
Matplotlib is a Python library for creating high-quality 2D plots in various formats and interactive platforms.
@@ -60,9 +71,9 @@ Each Cheat Sheet is made available in three distinct formats:
::/cards::
-### R
+### 📘 R
-::cards:: cols=3
+::cards:: cols=4
- title: Dplyr
content: "
@@ -87,9 +98,9 @@ Each Cheat Sheet is made available in three distinct formats:
::/cards::
-> **Note**: The PDF format cheat sheets included here are authored by other contributors and have been used as sources of inspiration for the content presented.
+> 🔑 **Note**: The PDF cheat sheets in this repository are created by various contributors and have inspired the content presented here.
-## References
+## 📖 References
* [Data Science Cheat Sheets - DataCamp](https://www.datacamp.com/cheat-sheet)
* [Cheatsheets and Handouts - Matplotlib](https://matplotlib.org/cheatsheets/)
diff --git a/mkdocs.yml b/mkdocs.yml
index c58fff3..f70e3af 100644
--- a/mkdocs.yml
+++ b/mkdocs.yml
@@ -44,13 +44,19 @@ theme:
name: material
language: en
logo: images/rpython.svg
- favicon: images/logo_fam.png
+ favicon: images/icon.png
features:
- - navigation.instant
- - navigation.top
- - content.code.annotate
- - search.suggest
- - search.highlight
+ - search.suggest
+ - search.highlight
+ - content.tabs.link
+ - navigation.indexes
+ - content.tooltips
+ - navigation.path
+ - content.code.annotate
+ - content.code.copy
+ - content.code.select
+ - navigation.tabs
+ - navigation.footer
palette:
# Light mode
- media: '(prefers-color-scheme: light)'
@@ -94,20 +100,18 @@ plugins:
# TOC
nav:
- - Home: index.md
- - Cheat Sheets:
- - Python:
- - Python: examples/python/python.ipynb
- - Numpy: examples/numpy/numpy.ipynb
- - Pandas: examples/pandas/pandas.ipynb
- - Matplotlib: examples/matplotlib/matplotlib.ipynb
- - Scikit-Learn: examples/scikit-learn/sklearn.ipynb
- - Polars: examples/polars/polars.ipynb
- - R:
- - Dplyr: examples/dplyr/dplyr.ipynb
- - Ggplot2: examples/ggplot2/ggplot2.ipynb
- - Forcats: examples/forcats/forcats.ipynb
-
+ - 🏠 Home: index.md
+ - 📗 Python:
+ - Python: examples/python/python.ipynb
+ - Numpy: examples/numpy/numpy.ipynb
+ - Pandas: examples/pandas/pandas.ipynb
+ - Matplotlib: examples/matplotlib/matplotlib.ipynb
+ - Scikit-Learn: examples/scikit-learn/sklearn.ipynb
+ - Polars: examples/polars/polars.ipynb
+ - 📘 R:
+ - Dplyr: examples/dplyr/dplyr.ipynb
+ - Ggplot2: examples/ggplot2/ggplot2.ipynb
+ - Forcats: examples/forcats/forcats.ipyn