From ec36f44fb62d997c5eb57397d2b502e2489af884 Mon Sep 17 00:00:00 2001
From: Natxo <1172351+natxocc@users.noreply.github.com>
Date: Sat, 28 Mar 2026 19:11:13 +0100
Subject: [PATCH] Update README.md
---
docs/README.md | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/docs/README.md b/docs/README.md
index 5651d77..3cd1182 100644
--- a/docs/README.md
+++ b/docs/README.md
@@ -2,7 +2,7 @@
FUNCTIONAL
No strings. No templates. Pure JS function calls for instant DOM mounting.
ATOMIC
Fine-grained signals update exactly what changes. No V-DOM diffing overhead.
ULTRA-THIN
Sub-2KB runtime. Infinitely smaller bundle than React, Vue or even Svelte.
COMPILER-FREE
Standard Vanilla JS. What you write is what the browser executes. Period.
-## 🛠️ Functional DOM Construction
+## Functional DOM Construction
SigPro replaces the slow "Template Parsing" with **High-Efficiency Function Calls**.
@@ -15,7 +15,7 @@ While other frameworks force the browser to parse strings of HTML or execute com
| **Overhead** | High (V-DOM / Parser) | **Zero** |
| **Reactivity** | Component-wide | **Atomic (Node-level)** |
-### ⚡ Less Code, More Power
+### Less Code, More Power
By sharing a miniscule runtime, your final application bundle is **infinitely smaller**.
* **React/Vue:** You ship a heavy orchestrator (~30-90KB) just to say "Hello World".
@@ -24,7 +24,7 @@ By sharing a miniscule runtime, your final application bundle is **infinitely sm
---
-## 🔬 Precision Engineering
+## Precision Engineering
### 1. Functional Efficiency
`Div()`, `Button()`, `Span()`... These aren't just wrappers; they are pre-optimized constructors. When you call `Div({ class: 'btn' }, "Click")`, SigPro creates the element and attaches its reactive listeners in a single, surgical operation.
@@ -39,4 +39,4 @@ All components share the same atomic engine. One signal can update a single char
Kill the Bloat.
Stop shipping 100KB of "Framework" for 2KB of business logic. SigPro gives you the tools to build ultra-fast, modern apps with True Vanilla Performance.
-Precision Reactive Engine — NatxoCC
\ No newline at end of file
+Precision Reactive Engine — NatxoCC