Skip to content

Commit c2dcb4c

Browse files
committed
style(docs): remove all emojis for professional consistency
- Remove emojis from README.md section headers and content - Remove emojis from docs/index.md navigation and headers - Remove emoji icons from theme toggle example in implementation guide - Maintain professional, clean documentation style throughout - Improve compatibility with various documentation systems All functionality and content preserved, only visual emoji elements removed.
1 parent b8073c3 commit c2dcb4c

3 files changed

Lines changed: 17 additions & 17 deletions

File tree

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
A production-ready micro frontend shell with comprehensive design system, form molecules, and accessibility-first components.
44

5-
## 🚀 Quick Start
5+
## Quick Start
66

77
```bash
88
npm install @jonmatum/react-mfe-shell
@@ -28,7 +28,7 @@ function App() {
2828
}
2929
```
3030

31-
## 📦 What's Included
31+
## What's Included
3232

3333
### Core Components (10)
3434
- **Button**: All variants, sizes, states, and icons
@@ -59,7 +59,7 @@ function App() {
5959
- **Design Tokens**: Consistent colors, spacing, typography
6060
- **TypeScript**: Complete type safety and IntelliSense
6161

62-
## 🎯 Key Features
62+
## Key Features
6363

6464
- **Zero Configuration**: Works out of the box
6565
- **Tree Shakeable**: Import only what you need
@@ -69,7 +69,7 @@ function App() {
6969
- **Form Ready**: Complete form ecosystem with validation
7070
- **Production Ready**: Used in real applications
7171

72-
## 📖 Usage Examples
72+
## Usage Examples
7373

7474
### Basic Form
7575
```tsx
@@ -164,7 +164,7 @@ function App() {
164164
}
165165
```
166166

167-
## 🔧 API Reference
167+
## API Reference
168168

169169
### Component Props Patterns
170170

@@ -206,7 +206,7 @@ const error = validateField(password, {
206206
});
207207
```
208208

209-
## 🎨 Styling & Customization
209+
## Styling & Customization
210210

211211
The library uses Tailwind CSS with CSS custom properties for theming:
212212

@@ -224,26 +224,26 @@ The library uses Tailwind CSS with CSS custom properties for theming:
224224
}
225225
```
226226

227-
## 📊 Bundle Size
227+
## Bundle Size
228228

229229
- **Core Library**: ~47KB (15KB gzipped)
230230
- **Tree Shakeable**: Import only what you use
231231
- **Zero Dependencies**: No external runtime dependencies
232232
- **Modern Build**: ESM and CJS formats included
233233

234-
## 🔗 Links
234+
## Links
235235

236236
- **[Live Demo](https://jonmatum.github.io/react-mfe-shell/)**: Interactive component showcase
237237
- **[NPM Package](https://www.npmjs.com/package/@jonmatum/react-mfe-shell)**: Install and version info
238238
- **[GitHub](https://github.com/jonmatum/react-mfe-shell)**: Source code and issues
239239

240-
## 📄 License
240+
## License
241241

242242
MIT License - see [LICENSE](LICENSE) for details.
243243

244244
---
245245

246-
**Built with ❤️ for scalable React applications**
246+
**Built with care for scalable React applications**
247247
```
248248
249249
### Using in Your MFE

docs/implementation-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ function ThemeToggle() {
210210

211211
return (
212212
<Button variant="ghost" onClick={toggleTheme}>
213-
{settings.theme === 'light' ? '🌙' : '☀️'}
213+
Toggle Theme
214214
</Button>
215215
);
216216
}

docs/index.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Complete documentation for React MFE Shell - a production-ready micro frontend component library.
44

5-
## 📚 Documentation Index
5+
## Documentation Index
66

77
### Getting Started
88
- **[Implementation Guide](implementation-guide.md)** - Step-by-step setup and integration
@@ -12,7 +12,7 @@ Complete documentation for React MFE Shell - a production-ready micro frontend c
1212
### Design System
1313
- **[Design Tokens](design-tokens.md)** - Colors, spacing, typography, and theme system
1414

15-
## 🚀 Quick Links
15+
## Quick Links
1616

1717
### For Developers
1818
- **Installation**: `npm install @jonmatum/react-mfe-shell`
@@ -27,7 +27,7 @@ This library provides:
2727
- **Theme System** with light/dark/system modes
2828
- **Form Ecosystem** with validation and error handling
2929

30-
## 📦 Component Overview
30+
## Component Overview
3131

3232
### Core Components (10)
3333
| Component | Purpose | Key Features |
@@ -55,7 +55,7 @@ This library provides:
5555
| Textarea | Multi-line text | Auto-resize, character counting |
5656
| FileUpload | File selection | Drag-and-drop, preview, validation |
5757

58-
## 🎯 Key Features
58+
## Key Features
5959

6060
- **Zero Configuration**: Works out of the box
6161
- **Tree Shakeable**: Import only what you need
@@ -65,7 +65,7 @@ This library provides:
6565
- **Form Ready**: Complete form ecosystem with validation
6666
- **Production Ready**: Used in real applications
6767

68-
## 🔧 Quick Start
68+
## Quick Start
6969

7070
```tsx
7171
import {
@@ -87,7 +87,7 @@ function App() {
8787
}
8888
```
8989

90-
## 📖 Documentation Structure
90+
## Documentation Structure
9191

9292
### Implementation Guide
9393
Complete setup instructions with:

0 commit comments

Comments
 (0)