diff --git a/README.md b/README.md
deleted file mode 100644
index 04d0d70..0000000
--- a/README.md
+++ /dev/null
@@ -1,26 +0,0 @@
-
-# Minitrace Python Library
-Shorten those verbose Python tracebacks to something more compact, comes with saving!
-
-Ever seen thove __long__ tracebacks? Welp, this is for you!
-There are requirements:
-# REQUIREMENTS
-- __Colorama__ colorcodes the line with the error.
-- __Tkinter__ for the file dialouge, probably installed but best to check.
-# SETUP
-1. First import the library. ___DO NOT USE `import minitrace` USE `from minitrace import MiniTrace`___
-2. Initialize the library using the init function
- `MiniTrace.init()`
-# `Full script`:
- ```Python
- from minitrace import MiniTrace
- MiniTrace.init()
- ```
-# HOW TO CUSTOMIZE
-Use `MiniTrace.settracelengthto()` to set the length
-### Example:
-```Python
-MiniTrace.settracelengthto(10)
-```
-# NOTES:
-Pip does not support minitrace, you will need to download the file from raw code to activate it.
diff --git a/X b/X
new file mode 100644
index 0000000..8b13789
--- /dev/null
+++ b/X
@@ -0,0 +1 @@
+
diff --git a/XX b/XX
new file mode 100644
index 0000000..d3f5a12
--- /dev/null
+++ b/XX
@@ -0,0 +1 @@
+
diff --git a/XXX b/XXX
new file mode 100644
index 0000000..d3f5a12
--- /dev/null
+++ b/XXX
@@ -0,0 +1 @@
+
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..a5ceb46
--- /dev/null
+++ b/index.html
@@ -0,0 +1,203 @@
+
+
+
+
+
+ Minitrace Python Library
+
+
+
+
+
+
+
Minitrace
+
Minimal tracebacks. Maximum clarity.
+
+
+
+
+
About the Project
+
+ Minitrace is a focused debugging utility that compresses and simplifies Python tracebacks
+ so that developers can immediately spot the root cause of runtime errors.
+
+
+ With built-in highlighting and optional GUI prompts, it is especially handy for developers
+ working across environments, from terminal sessions to small GUI-based applications.
+
Download minitrace.py from the repository and place it in your project folder.
+
+
+
+
+
Usage Example
+
Import and initialize the library:
+
+
+
from minitrace import MiniTrace
+
+MiniTrace.init()
+# Your code here...
+
+
+
+
+
Customization
+
Adjust the length of visible traceback:
+
+
+
MiniTrace.settracelengthto(10)
+
+
+
+
+
Project Philosophy
+
+ Minitrace helps reduce noise. Instead of adding complexity, it strips Python's traceback output down
+ to what’s essential. Built for speed and clarity, Minitrace stays out of the way until it’s needed.
+
+
+
+
+
Support and Contributions
+
+ Have a suggestion, bug report, or idea? Open an issue or submit a pull request on GitHub.
+