diff --git a/plugins/example-plugin/plugin.php b/plugins/example-plugin/plugin.php
deleted file mode 100644
index 8427119..0000000
--- a/plugins/example-plugin/plugin.php
+++ /dev/null
@@ -1,27 +0,0 @@
-get('/plugin-test', function() {
- echo "
Hello from Example Plugin!
";
- echo "This page is registered via router_init hook.
";
- echo "Back to Home";
- });
-});
-
-// 2. Hook into Head to add custom CSS
-Hooks::addAction('mivo_head', function() {
- echo "";
- echo "";
-});
-
-// 3. Hook into Footer to add custom JS or Text
-Hooks::addAction('mivo_footer', function() {
- echo "";
- echo "
- Plugin System is Working! 🚀
-
";
-});