Skip to content

Commit 602dac9

Browse files
author
Tom Softreck
committed
Release version 0.3.95
### Changes since v0.3.94 * Release version 0.3.94
1 parent 6c892a4 commit 602dac9

2 files changed

Lines changed: 35 additions & 3 deletions

File tree

README.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ chmod +x bin/reactstream-analyze.js
9292
3. **ESLint errors**
9393

9494
If you see ESLint errors, make sure you have a valid `.eslintrc.js` file in your project root.
95-
4.
95+
9696
## Commands
9797

9898
ReactStream now provides a unified command interface with subcommands:
@@ -101,6 +101,7 @@ ReactStream now provides a unified command interface with subcommands:
101101
reactstream <command> [options] [arguments]
102102
```
103103

104+
104105
### analyze
105106

106107
Analyze React components for issues and best practices.
@@ -132,8 +133,18 @@ reactstream serve <component1.js> [component2.js...] [options]
132133
- `--port=<port>`: Specify the port to run the server on (default: 3000)
133134

134135
**Examples:**
136+
137+
138+
![img_2.png](img/img_2.png)
139+
135140
```bash
136141
reactstream serve MyComponent.js
142+
```
143+
144+
![img_1.png](img/img_1.png)
145+
146+
147+
```bash
137148
reactstream serve src/components/Button.js src/components/Card.js --port=8080
138149
```
139150

index.html

Lines changed: 23 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
<header class="bg-white shadow-sm">
1414
<div class="container mx-auto px-4 py-4 flex justify-between items-center">
1515
<div class="flex items-center">
16-
<img src="/api/placeholder/48/48" alt="ReactStream Logo" class="h-12 w-auto mr-4">
17-
<span class="text-2xl font-bold text-indigo-600">ReactStream</span>
16+
<img src="img/logo-reactstream1.svg" alt="ReactStream Logo" class="h-12 w-auto mr-4">
17+
<!-- <span class="text-2xl font-bold text-indigo-600">ReactStream</span>-->
1818
</div>
1919
<nav class="hidden md:flex space-x-10">
2020
<a href="#features" class="text-gray-600 hover:text-indigo-600 transition">Features</a>
@@ -39,6 +39,7 @@
3939
<h1 class="text-4xl md:text-6xl font-bold text-white mb-6">
4040
Streamline Your React Development
4141
</h1>
42+
4243
<p class="text-xl text-gray-300 mb-8">
4344
ReactStream is a comprehensive CLI toolkit that analyzes your components and helps you debug
4445
effectively—all in one seamless workflow.
@@ -85,6 +86,26 @@ <h1 class="text-4xl md:text-6xl font-bold text-white mb-6">
8586
</div>
8687
</section>
8788

89+
<section class="py-20 md:py-32">
90+
<div class="container mx-auto px-4">
91+
92+
<img src="img/logo-reactstream1.svg" alt="ReactStream Logo" class="w-auto mr-4">
93+
<p></p>
94+
95+
<div class="text-center mb-16">
96+
<h2 class="text-3xl font-bold mb-4">Start in console</h2>
97+
<img src="img/serve-console.png" alt="ReactStream Logo" class="w-auto mr-4">
98+
</div>
99+
100+
<p></p>
101+
<div class="text-center mb-16">
102+
<h2 class="text-3xl font-bold mb-4">and ... go to browser</h2>
103+
<img src="img/serve-browser.png" alt="ReactStream Logo" class="w-auto mr-4">
104+
</div>
105+
106+
</div>
107+
</section>
108+
88109
<!-- Include other sections as separate components -->
89110
<div id="features-container"></div>
90111
<div id="how-it-works-container"></div>

0 commit comments

Comments
 (0)