Skip to content

Commit a6cefee

Browse files
committed
feat: revisão inicial
1 parent 1e80cfb commit a6cefee

File tree

3 files changed

+22
-14
lines changed

3 files changed

+22
-14
lines changed

src/components/Header.tsx

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { Button } from "@/components/ui/button";
2-
import { Github, BookOpen, Moon, Sun } from "lucide-react";
2+
import { Github, Moon, Play, Sun } from "lucide-react";
33
import { useTheme } from "next-themes";
44
import { Link, useNavigate } from "react-router-dom";
55
import deviLogo from "@/assets/devitools-logo.png";
@@ -49,28 +49,29 @@ const Header = () => {
4949
Effulgence
5050
</Link>
5151
<Link to="/docs" className="text-muted-foreground hover:text-primary transition-colors">
52-
Todas as Ferramentas
52+
Todas as Soluções
5353
</Link>
5454
</nav>
5555

5656
<div className="flex items-center space-x-4">
5757
<Button variant="ghost" size="icon" onClick={toggleTheme}>
5858
{theme === "dark" ? <Sun className="w-4 h-4" /> : <Moon className="w-4 h-4" />}
5959
</Button>
60-
<Button
61-
variant="ghost"
60+
<Button
61+
className="hidden xs:flex"
62+
variant="ghost"
6263
size="sm"
63-
onClick={() => window.open('https://github.com/devitools', '_blank')}
64+
onClick={() => window.open("https://github.com/devitools", "_blank")}
6465
>
65-
<Github className="w-4 h-4 mr-2" />
66-
GitHub
66+
<Github className="w-4 h-4" />
67+
<span className="hidden sm:flex ml-2">GitHub</span>
6768
</Button>
68-
<Button
69-
size="sm"
69+
<Button
70+
size="sm"
7071
className="bg-gradient-primary shadow-elegant"
71-
onClick={() => navigate('/docs')}
72+
onClick={() => navigate("/docs")}
7273
>
73-
<BookOpen className="w-4 h-4 mr-2" />
74+
<Play className="w-4 h-4 mr-2" />
7475
Começar
7576
</Button>
7677
</div>

src/pages/Index.tsx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import Packages from "@/components/Packages";
33
import CodeExamples from "@/components/CodeExamples.tsx";
44
import Footer from "@/components/Footer";
55
import { Button } from "@/components/ui/button";
6-
import { ArrowRight, Code, Radar, Rocket, Sparkles, Zap } from "lucide-react";
6+
import { Code, Play, Radar, Rocket, Sparkles } from "lucide-react";
77
import { useNavigate } from "react-router-dom";
88
import Hero from "@/components/Hero.tsx";
99

@@ -39,9 +39,8 @@ const Index = () => {
3939
className="bg-gradient-primary shadow-glow text-lg px-8 py-6"
4040
onClick={() => navigate("/docs")}
4141
>
42-
<Zap className="w-5 h-5 mr-2" />
42+
<Play className="w-5 h-5 mr-2" />
4343
Começar Agora
44-
<ArrowRight className="w-5 h-5 ml-2" />
4544
</Button>
4645
<Button variant="outline" size="lg" className="text-lg px-8 py-6">
4746
<Code className="w-5 h-5 mr-2" />

tailwind.config.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,14 @@ export default {
1010
],
1111
prefix: "",
1212
theme: {
13+
screens: {
14+
'xs': '460px',
15+
'sm': '640px',
16+
'md': '768px',
17+
'lg': '1024px',
18+
'xl': '1280px',
19+
'2xl': '1536px',
20+
},
1321
container: {
1422
center: true,
1523
padding: '2rem',

0 commit comments

Comments
 (0)