|
1 | 1 | import { Button } from "@/components/ui/button"; |
2 | | -import { Github, BookOpen, Moon, Sun } from "lucide-react"; |
| 2 | +import { Github, Moon, Play, Sun } from "lucide-react"; |
3 | 3 | import { useTheme } from "next-themes"; |
4 | 4 | import { Link, useNavigate } from "react-router-dom"; |
5 | 5 | import deviLogo from "@/assets/devitools-logo.png"; |
@@ -49,28 +49,29 @@ const Header = () => { |
49 | 49 | Effulgence |
50 | 50 | </Link> |
51 | 51 | <Link to="/docs" className="text-muted-foreground hover:text-primary transition-colors"> |
52 | | - Todas as Ferramentas |
| 52 | + Todas as Soluções |
53 | 53 | </Link> |
54 | 54 | </nav> |
55 | 55 |
|
56 | 56 | <div className="flex items-center space-x-4"> |
57 | 57 | <Button variant="ghost" size="icon" onClick={toggleTheme}> |
58 | 58 | {theme === "dark" ? <Sun className="w-4 h-4" /> : <Moon className="w-4 h-4" />} |
59 | 59 | </Button> |
60 | | - <Button |
61 | | - variant="ghost" |
| 60 | + <Button |
| 61 | + className="hidden xs:flex" |
| 62 | + variant="ghost" |
62 | 63 | size="sm" |
63 | | - onClick={() => window.open('https://github.com/devitools', '_blank')} |
| 64 | + onClick={() => window.open("https://github.com/devitools", "_blank")} |
64 | 65 | > |
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> |
67 | 68 | </Button> |
68 | | - <Button |
69 | | - size="sm" |
| 69 | + <Button |
| 70 | + size="sm" |
70 | 71 | className="bg-gradient-primary shadow-elegant" |
71 | | - onClick={() => navigate('/docs')} |
| 72 | + onClick={() => navigate("/docs")} |
72 | 73 | > |
73 | | - <BookOpen className="w-4 h-4 mr-2" /> |
| 74 | + <Play className="w-4 h-4 mr-2" /> |
74 | 75 | Começar |
75 | 76 | </Button> |
76 | 77 | </div> |
|
0 commit comments