@leonardofirme/deploy-nextjs16 1.1.7 → 1.1.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/app/page.tsx +16 -8
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leonardofirme/deploy-nextjs16",
3
- "version": "1.1.7",
3
+ "version": "1.1.8",
4
4
  "private": false,
5
5
  "description": "Estruturas profissionais de ERP e SaaS - Leonardo Firme",
6
6
  "bin": {
package/src/app/page.tsx CHANGED
@@ -14,6 +14,13 @@ import { ITEM_VARIANTS, CONTAINER_VARIANTS } from '@/core/animations';
14
14
  import { StarfieldBackground } from '@/components/ui/StarfieldBackground';
15
15
 
16
16
  export default function HomePage() {
17
+ /**
18
+ * Redireciona para o pacote NPM em uma nova aba
19
+ */
20
+ const handleRedirect = () => {
21
+ window.open("https://www.npmjs.com/package/@leonardofirme/deploy-nextjs16", "_blank");
22
+ };
23
+
17
24
  return (
18
25
  <DefaultLayout>
19
26
  <StarfieldBackground>
@@ -27,15 +34,15 @@ export default function HomePage() {
27
34
  >
28
35
  {/* Badge de Versão */}
29
36
  <motion.div variants={ITEM_VARIANTS}>
30
- <Badge className="bg-v0-50 px-5 py-1.5 font-orbitron tracking-[0.2em] text-v0-600 border-v0-200 dark:bg-v0-950/30 dark:border-v0-900">
31
- ESTRUTURA V1.1.7 VALIDADA
37
+ <Badge className="bg-white px-5 py-1.5 font-orbitron tracking-[0.2em] text-gray-800 border-gray-200 dark:bg-gray-950/30 dark:border-gray-800 dark:text-gray-50">
38
+ ESTRUTURA V1.1.8 VALIDADA
32
39
  </Badge>
33
40
  </motion.div>
34
41
 
35
42
  {/* Headline Principal */}
36
43
  <motion.div variants={ITEM_VARIANTS} className="space-y-6">
37
44
  <h1 className="font-orbitron text-6xl font-bold uppercase leading-[0.9] tracking-tight text-gray-800 md:text-8xl dark:text-gray-50">
38
- FALA <span className="text-v0-600">DEV!</span>
45
+ FALA <span className="text-v0-500">DEV!</span>
39
46
  </h1>
40
47
  <p className="mx-auto max-w-2xl font-sans text-lg leading-relaxed text-gray-500 md:text-xl dark:text-gray-100">
41
48
  Sua infraestrutura está pronta para escala. Desenvolva com a precisão e a suavidade do
@@ -43,7 +50,7 @@ export default function HomePage() {
43
50
  </p>
44
51
  </motion.div>
45
52
 
46
- {/* Botão com as cores exatas do seu padrão */}
53
+ {/* Botão com lógica de redirecionamento */}
47
54
  <motion.div variants={ITEM_VARIANTS} className="flex flex-col items-center gap-6 pt-6">
48
55
  <motion.div
49
56
  whileHover={{ scale: 1.05 }}
@@ -51,7 +58,8 @@ export default function HomePage() {
51
58
  transition={{ type: "spring", stiffness: 400, damping: 10 }}
52
59
  >
53
60
  <Button
54
- className="rounded-full px-14 py-5 font-orbitron text-xs uppercase tracking-[0.3em] shadow-2xl transition-all bg-gray-800 text-white hover:bg-gray-950 dark:bg-gray-50 dark:text-v0-500 dark:hover:bg-gray-200"
61
+ onClick={handleRedirect}
62
+ className="rounded-full px-14 py-5 font-orbitron text-xs tracking-[0.3em] shadow-2xl transition-all bg-gray-800 text-white hover:bg-gray-950 dark:bg-gray-50 dark:text-v0-500 dark:hover:bg-gray-200"
55
63
  >
56
64
  Começar Desenvolvimento
57
65
  </Button>
@@ -60,7 +68,7 @@ export default function HomePage() {
60
68
  <motion.span
61
69
  animate={{ opacity: [0.3, 0.7, 0.3] }}
62
70
  transition={{ repeat: Infinity, duration: 3, ease: "easeInOut" }}
63
- className="font-orbitron text-[10px] uppercase tracking-[0.5em] text-gray-400"
71
+ className="font-orbitron text-[10px] uppercase tracking-[0.5em] text-v0-500 dark:text-gray-400"
64
72
  >
65
73
  System Online
66
74
  </motion.span>
@@ -76,7 +84,7 @@ export default function HomePage() {
76
84
  <span className="font-orbitron text-[10px] uppercase tracking-[0.6em] text-gray-400">
77
85
  Leonardo Firme
78
86
  </span>
79
- <span className="text-center font-sans text-[9px] font-bold uppercase tracking-[0.2em] text-v0-600 opacity-80">
87
+ <span className="text-center font-sans text-[9px] font-bold uppercase tracking-[0.2em] text-gray-500 dark:text-gray-100 opacity-80">
80
88
  FRAMEWORK V1 • 2026
81
89
  </span>
82
90
  </div>
@@ -86,7 +94,7 @@ export default function HomePage() {
86
94
 
87
95
  {/* Efeito Visual de Background */}
88
96
  <div className="pointer-events-none absolute inset-0 z-0">
89
- <div className="absolute top-1/2 left-1/2 h-200 w-200 -translate-x-1/2 -translate-y-1/2 rounded-full bg-v0-600/5 blur-[120px] dark:bg-v0-600/10" />
97
+ <div className="absolute top-1/2 left-1/2 h-200 w-200 -translate-x-1/2 -translate-y-1/2 rounded-full bg-gray-200/20 blur-[120px] dark:bg-gray-800/20" />
90
98
  </div>
91
99
 
92
100
  </main>