Skip to content

Commit f1489b8

Browse files
committed
feat: complete Effulgence page review and code examples update
- Expand features from 3 to 6 Laravel-specific items - Improve hero section with clearer description and Soon badge - Implement installation section following Constructo pattern - Add functional buttons for Packagist and documentation links - Create comprehensive 'When to Use' section with comparison table - Enhance benefits section with metrics and performance cards - Update code examples to follow 'Em breve [filename] ... 🚀' pattern - Add complete comparison between Effulgence and pure Constructo - Implement responsive design and consistent visual styling - Clean up TypeScript imports and ensure zero compilation errors
1 parent d91d17a commit f1489b8

2 files changed

Lines changed: 374 additions & 88 deletions

File tree

src/pages/Constructo.tsx

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ const Constructo = () => {
119119
<div className="flex flex-col sm:flex-row gap-4 justify-center mb-12">
120120
<Button
121121
size="lg"
122-
className="bg-gradient-constructo text-constructo-foreground shadow-glow"
122+
className="bg-gradient-constructo text-constructo-foreground transition-all hover:shadow-glow"
123123
onClick={handleInstallClick}
124124
>
125125
<Download className="w-5 h-5 mr-2" />
@@ -159,7 +159,7 @@ const Constructo = () => {
159159
</Button>
160160
<Button
161161
onClick={handleDocsClick}
162-
className="bg-gradient-constructo text-constructo-foreground shadow-glow gap-2"
162+
className="bg-gradient-constructo text-constructo-foreground transition-all hover:shadow-glow gap-2"
163163
>
164164
<BookOpen className="w-4 h-4" />
165165
Primeiros Passos
@@ -472,6 +472,17 @@ $user = UserFactory::create();`}
472472
</div>
473473
</div>
474474
</div>
475+
476+
<div className="flex items-center justify-center space-x-4 pt-10">
477+
<Button
478+
onClick={handleDocsClick}
479+
size="lg"
480+
className="bg-gradient-constructo text-constructo-foreground transition-all hover:shadow-glow gap-2"
481+
>
482+
<BookOpen className="w-4 h-4" />
483+
Primeiros Passos
484+
</Button>
485+
</div>
475486
</Hero>
476487

477488
<Footer />

0 commit comments

Comments
 (0)