Skip to content

Commit 44d5583

Browse files
committed
feat: revisão inicial
1 parent 81f4cb2 commit 44d5583

File tree

2 files changed

+11
-18
lines changed

2 files changed

+11
-18
lines changed

src/pages/Index.tsx

Lines changed: 8 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +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 {
7-
ArrowRight,
8-
Car,
9-
Code,
10-
Diamond,
11-
FerrisWheel,
12-
Newspaper,
13-
Presentation,
14-
Radar,
15-
Rocket,
16-
Sparkles,
17-
Zap,
18-
} from "lucide-react";
6+
import { ArrowRight, Code, Radar, Rocket, Sparkles, Zap } from "lucide-react";
197
import { useNavigate } from "react-router-dom";
208
import Hero from "@/components/Hero.tsx";
219

@@ -37,12 +25,11 @@ const Index = () => {
3725
</div>
3826

3927
<h1 className="text-5xl md:text-7xl font-bold mb-6 bg-gradient-hero bg-clip-text text-transparent leading-tight">
40-
Simplifique seu ambiente de desenvolvimento
28+
Eleve seu nível de desenvolvimento
4129
</h1>
4230

43-
<p className="text-xl md:text-2xl text-muted-foreground mb-8 max-w-3xl mx-auto">
44-
Ferramentas modernas e elegantes para acelerar seu workflow. Foque no que importa: o
45-
negócio do cliente!
31+
<p className="text-xl md:text-2xl text-muted-foreground m-8 max-w-3xl mx-auto">
32+
Utilize ferramentas modernas e elegantes para acelerar seu fluxo de trabalho e melhorar a experiência de desenvolvimento
4633
</p>
4734

4835
<div className="flex flex-col sm:flex-row gap-4 justify-center mb-12">
@@ -63,6 +50,10 @@ const Index = () => {
6350
</Button>
6451
</div>
6552

53+
<p className="text-xl md:text-2xl font-bold bg-gradient-hero bg-clip-text text-transparent mb-8 max-w-3xl mx-auto">
54+
Foque no que importa: o negócio do cliente
55+
</p>
56+
6657
<div className="grid grid-cols-1 md:grid-cols-3 gap-8 mt-16">
6758
<div className="text-center">
6859
<div className="w-12 h-12 bg-gradient-primary rounded-xl mx-auto mb-4 flex items-center justify-center">

tailwind.config.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@ export default {
1919
},
2020
extend: {
2121
fontSize: {
22-
'6xl': ['3.75rem', { lineHeight: '1.5' }],
22+
'5xl': ['3rem', { lineHeight: '1.1' }],
23+
'6xl': ['3.75rem', { lineHeight: '1.1' }],
24+
'7xl': ['4.5rem', { lineHeight: '1.1' }],
2325
},
2426
colors: {
2527
border: 'hsl(var(--border))',

0 commit comments

Comments
 (0)