@vudovn/antigravity-kit 1.0.1
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.
- package/README.md +311 -0
- package/bin/index.js +240 -0
- package/package.json +39 -0
- package/templates/.agent/.shared/ui-ux-pro-max/data/charts.csv +26 -0
- package/templates/.agent/.shared/ui-ux-pro-max/data/colors.csv +97 -0
- package/templates/.agent/.shared/ui-ux-pro-max/data/icons.csv +101 -0
- package/templates/.agent/.shared/ui-ux-pro-max/data/landing.csv +31 -0
- package/templates/.agent/.shared/ui-ux-pro-max/data/products.csv +97 -0
- package/templates/.agent/.shared/ui-ux-pro-max/data/prompts.csv +24 -0
- package/templates/.agent/.shared/ui-ux-pro-max/data/stacks/flutter.csv +53 -0
- package/templates/.agent/.shared/ui-ux-pro-max/data/stacks/html-tailwind.csv +56 -0
- package/templates/.agent/.shared/ui-ux-pro-max/data/stacks/nextjs.csv +53 -0
- package/templates/.agent/.shared/ui-ux-pro-max/data/stacks/nuxt-ui.csv +51 -0
- package/templates/.agent/.shared/ui-ux-pro-max/data/stacks/nuxtjs.csv +59 -0
- package/templates/.agent/.shared/ui-ux-pro-max/data/stacks/react-native.csv +52 -0
- package/templates/.agent/.shared/ui-ux-pro-max/data/stacks/react.csv +54 -0
- package/templates/.agent/.shared/ui-ux-pro-max/data/stacks/shadcn.csv +61 -0
- package/templates/.agent/.shared/ui-ux-pro-max/data/stacks/svelte.csv +54 -0
- package/templates/.agent/.shared/ui-ux-pro-max/data/stacks/swiftui.csv +51 -0
- package/templates/.agent/.shared/ui-ux-pro-max/data/stacks/vue.csv +50 -0
- package/templates/.agent/.shared/ui-ux-pro-max/data/styles.csv +59 -0
- package/templates/.agent/.shared/ui-ux-pro-max/data/typography.csv +58 -0
- package/templates/.agent/.shared/ui-ux-pro-max/data/ux-guidelines.csv +100 -0
- package/templates/.agent/.shared/ui-ux-pro-max/scripts/__pycache__/core.cpython-312.pyc +0 -0
- package/templates/.agent/.shared/ui-ux-pro-max/scripts/__pycache__/core.cpython-313.pyc +0 -0
- package/templates/.agent/.shared/ui-ux-pro-max/scripts/core.py +245 -0
- package/templates/.agent/.shared/ui-ux-pro-max/scripts/search.py +69 -0
- package/templates/.agent/rules/01-identity.md +17 -0
- package/templates/.agent/rules/02-task-classification.md +36 -0
- package/templates/.agent/rules/03-mode-consulting.md +54 -0
- package/templates/.agent/rules/04-mode-build.md +54 -0
- package/templates/.agent/rules/05-mode-debug.md +66 -0
- package/templates/.agent/rules/06-mode-optimize.md +64 -0
- package/templates/.agent/rules/07-technical-standards.md +61 -0
- package/templates/.agent/rules/08-communication.md +34 -0
- package/templates/.agent/rules/09-checklist.md +45 -0
- package/templates/.agent/rules/10-special-situations.md +81 -0
- package/templates/.agent/skills/accessibility-expert/SKILL.md +430 -0
- package/templates/.agent/skills/ai-sdk-expert/SKILL.md +541 -0
- package/templates/.agent/skills/auth-expert/SKILL.md +105 -0
- package/templates/.agent/skills/cli-expert/SKILL.md +848 -0
- package/templates/.agent/skills/code-review/SKILL.md +424 -0
- package/templates/.agent/skills/css-expert/SKILL.md +401 -0
- package/templates/.agent/skills/database-expert/SKILL.md +324 -0
- package/templates/.agent/skills/devops-expert/SKILL.md +784 -0
- package/templates/.agent/skills/docker-expert/SKILL.md +409 -0
- package/templates/.agent/skills/documentation-expert/SKILL.md +493 -0
- package/templates/.agent/skills/git-expert/SKILL.md +522 -0
- package/templates/.agent/skills/github-actions-expert/SKILL.md +454 -0
- package/templates/.agent/skills/jest-expert/SKILL.md +957 -0
- package/templates/.agent/skills/mongodb-expert/SKILL.md +761 -0
- package/templates/.agent/skills/nestjs-expert/SKILL.md +552 -0
- package/templates/.agent/skills/nextjs-expert/SKILL.md +443 -0
- package/templates/.agent/skills/nodejs-expert/SKILL.md +192 -0
- package/templates/.agent/skills/oracle/SKILL.md +340 -0
- package/templates/.agent/skills/playwright-expert/SKILL.md +214 -0
- package/templates/.agent/skills/postgres-expert/SKILL.md +642 -0
- package/templates/.agent/skills/prisma-expert/SKILL.md +355 -0
- package/templates/.agent/skills/react-expert/SKILL.md +310 -0
- package/templates/.agent/skills/react-performance/SKILL.md +816 -0
- package/templates/.agent/skills/refactoring-expert/SKILL.md +394 -0
- package/templates/.agent/skills/research-expert/SKILL.md +231 -0
- package/templates/.agent/skills/rest-api-expert/SKILL.md +469 -0
- package/templates/.agent/skills/state-management-expert/SKILL.md +157 -0
- package/templates/.agent/skills/testing-expert/SKILL.md +621 -0
- package/templates/.agent/skills/triage-expert/SKILL.md +419 -0
- package/templates/.agent/skills/typescript-expert/SKILL.md +429 -0
- package/templates/.agent/skills/typescript-type/SKILL.md +790 -0
- package/templates/.agent/skills/ui-ux-pro-max/SKILL.md +228 -0
- package/templates/.agent/skills/vite-expert/SKILL.md +785 -0
- package/templates/.agent/skills/vitest-expert/SKILL.md +325 -0
- package/templates/.agent/skills/webpack-expert/SKILL.md +745 -0
- package/templates/.agent/workflows/request.md +82 -0
- package/templates/.agent/workflows/ui-ux-pro-max.md +231 -0
- package/templates/web/README.md +36 -0
- package/templates/web/eslint.config.mjs +18 -0
- package/templates/web/next.config.ts +8 -0
- package/templates/web/package-lock.json +6549 -0
- package/templates/web/package.json +27 -0
- package/templates/web/postcss.config.mjs +7 -0
- package/templates/web/public/favicon.ico +0 -0
- package/templates/web/public/images/antigravity-kit-logo.png +0 -0
- package/templates/web/public/images/claudekit.png +0 -0
- package/templates/web/public/images/logo.png +0 -0
- package/templates/web/src/app/globals.css +276 -0
- package/templates/web/src/app/layout.tsx +55 -0
- package/templates/web/src/app/page.tsx +23 -0
- package/templates/web/src/components/Credits.tsx +162 -0
- package/templates/web/src/components/Features.tsx +92 -0
- package/templates/web/src/components/Footer.tsx +74 -0
- package/templates/web/src/components/Hero.tsx +117 -0
- package/templates/web/src/components/HowItWorks.tsx +96 -0
- package/templates/web/src/components/Navbar.tsx +87 -0
- package/templates/web/src/components/Skills.tsx +182 -0
- package/templates/web/tsconfig.json +34 -0
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "web",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"private": true,
|
|
5
|
+
"scripts": {
|
|
6
|
+
"dev": "next dev",
|
|
7
|
+
"build": "next build",
|
|
8
|
+
"start": "next start",
|
|
9
|
+
"lint": "eslint"
|
|
10
|
+
},
|
|
11
|
+
"dependencies": {
|
|
12
|
+
"next": "16.1.2",
|
|
13
|
+
"react": "19.2.3",
|
|
14
|
+
"react-dom": "19.2.3"
|
|
15
|
+
},
|
|
16
|
+
"devDependencies": {
|
|
17
|
+
"@tailwindcss/postcss": "^4",
|
|
18
|
+
"@types/node": "^20",
|
|
19
|
+
"@types/react": "^19",
|
|
20
|
+
"@types/react-dom": "^19",
|
|
21
|
+
"babel-plugin-react-compiler": "1.0.0",
|
|
22
|
+
"eslint": "^9",
|
|
23
|
+
"eslint-config-next": "16.1.2",
|
|
24
|
+
"tailwindcss": "^4",
|
|
25
|
+
"typescript": "^5"
|
|
26
|
+
}
|
|
27
|
+
}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,276 @@
|
|
|
1
|
+
@import "tailwindcss";
|
|
2
|
+
|
|
3
|
+
/* ========================================
|
|
4
|
+
ANTIGRAVITY KIT - DESIGN SYSTEM
|
|
5
|
+
Dark Theme with Glassmorphism
|
|
6
|
+
======================================== */
|
|
7
|
+
|
|
8
|
+
@theme {
|
|
9
|
+
/* Colors */
|
|
10
|
+
--color-bg-base: #050505;
|
|
11
|
+
--color-bg-card: rgba(255, 255, 255, 0.05);
|
|
12
|
+
--color-bg-navbar: rgba(0, 0, 0, 0.6);
|
|
13
|
+
--color-accent: #3B82F6;
|
|
14
|
+
--color-accent-hover: #60A5FA;
|
|
15
|
+
--color-accent-glow: rgba(59, 130, 246, 0.2);
|
|
16
|
+
--color-text-primary: #FFFFFF;
|
|
17
|
+
--color-text-secondary: #A1A1AA;
|
|
18
|
+
--color-text-muted: #71717A;
|
|
19
|
+
--color-border: rgba(255, 255, 255, 0.1);
|
|
20
|
+
--color-border-hover: rgba(255, 255, 255, 0.2);
|
|
21
|
+
|
|
22
|
+
/* Gradients */
|
|
23
|
+
--gradient-accent: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 100%);
|
|
24
|
+
--gradient-glow: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
|
|
25
|
+
|
|
26
|
+
/* Shadows */
|
|
27
|
+
--shadow-glow: 0 0 60px rgba(59, 130, 246, 0.3);
|
|
28
|
+
--shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
/* Base styles */
|
|
32
|
+
html {
|
|
33
|
+
scroll-behavior: smooth;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
body {
|
|
37
|
+
background-color: var(--color-bg-base);
|
|
38
|
+
color: var(--color-text-primary);
|
|
39
|
+
min-height: 100vh;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
/* Selection */
|
|
43
|
+
::selection {
|
|
44
|
+
background-color: var(--color-accent);
|
|
45
|
+
color: white;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
/* Gradient Text */
|
|
49
|
+
.gradient-text {
|
|
50
|
+
background: var(--gradient-accent);
|
|
51
|
+
-webkit-background-clip: text;
|
|
52
|
+
-webkit-text-fill-color: transparent;
|
|
53
|
+
background-clip: text;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
/* Glass Card */
|
|
57
|
+
.glass-card {
|
|
58
|
+
background: var(--color-bg-card);
|
|
59
|
+
backdrop-filter: blur(12px);
|
|
60
|
+
-webkit-backdrop-filter: blur(12px);
|
|
61
|
+
border: 1px solid var(--color-border);
|
|
62
|
+
border-radius: 1rem;
|
|
63
|
+
transition: all 0.2s ease;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.glass-card:hover {
|
|
67
|
+
border-color: var(--color-border-hover);
|
|
68
|
+
background: rgba(255, 255, 255, 0.08);
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
/* Glass Navbar */
|
|
72
|
+
.glass-navbar {
|
|
73
|
+
background: var(--color-bg-navbar);
|
|
74
|
+
backdrop-filter: blur(16px);
|
|
75
|
+
-webkit-backdrop-filter: blur(16px);
|
|
76
|
+
border: 1px solid var(--color-border);
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
/* Background Glow */
|
|
80
|
+
.bg-glow {
|
|
81
|
+
position: absolute;
|
|
82
|
+
width: 600px;
|
|
83
|
+
height: 600px;
|
|
84
|
+
background: var(--gradient-glow);
|
|
85
|
+
filter: blur(80px);
|
|
86
|
+
pointer-events: none;
|
|
87
|
+
z-index: 0;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
.bg-glow-accent {
|
|
91
|
+
background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.bg-glow-purple {
|
|
95
|
+
background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
/* Button Primary */
|
|
99
|
+
.btn-primary {
|
|
100
|
+
display: inline-flex;
|
|
101
|
+
align-items: center;
|
|
102
|
+
gap: 0.5rem;
|
|
103
|
+
padding: 0.75rem 1.5rem;
|
|
104
|
+
background: var(--color-accent);
|
|
105
|
+
color: white;
|
|
106
|
+
font-weight: 500;
|
|
107
|
+
border-radius: 0.5rem;
|
|
108
|
+
transition: all 0.2s ease;
|
|
109
|
+
cursor: pointer;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.btn-primary:hover {
|
|
113
|
+
background: var(--color-accent-hover);
|
|
114
|
+
transform: translateY(-1px);
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
/* Button Secondary */
|
|
118
|
+
.btn-secondary {
|
|
119
|
+
display: inline-flex;
|
|
120
|
+
align-items: center;
|
|
121
|
+
gap: 0.5rem;
|
|
122
|
+
padding: 0.75rem 1.5rem;
|
|
123
|
+
background: transparent;
|
|
124
|
+
color: var(--color-text-primary);
|
|
125
|
+
font-weight: 500;
|
|
126
|
+
border: 1px solid var(--color-border);
|
|
127
|
+
border-radius: 0.5rem;
|
|
128
|
+
transition: all 0.2s ease;
|
|
129
|
+
cursor: pointer;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
.btn-secondary:hover {
|
|
133
|
+
background: var(--color-bg-card);
|
|
134
|
+
border-color: var(--color-border-hover);
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
/* Badge */
|
|
138
|
+
.badge {
|
|
139
|
+
display: inline-flex;
|
|
140
|
+
align-items: center;
|
|
141
|
+
gap: 0.375rem;
|
|
142
|
+
padding: 0.375rem 0.75rem;
|
|
143
|
+
background: var(--color-bg-card);
|
|
144
|
+
border: 1px solid var(--color-border);
|
|
145
|
+
border-radius: 9999px;
|
|
146
|
+
font-size: 0.875rem;
|
|
147
|
+
color: var(--color-text-secondary);
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
.badge-accent {
|
|
151
|
+
background: var(--color-accent-glow);
|
|
152
|
+
border-color: rgba(59, 130, 246, 0.3);
|
|
153
|
+
color: var(--color-accent-hover);
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
/* Section */
|
|
157
|
+
.section {
|
|
158
|
+
position: relative;
|
|
159
|
+
padding: 5rem 1.5rem;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
@media (min-width: 768px) {
|
|
163
|
+
.section {
|
|
164
|
+
padding: 6rem 2rem;
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
/* Container */
|
|
169
|
+
.container-content {
|
|
170
|
+
max-width: 1200px;
|
|
171
|
+
margin: 0 auto;
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
/* Heading Styles */
|
|
175
|
+
.heading-xl {
|
|
176
|
+
font-size: clamp(2.5rem, 6vw, 4rem);
|
|
177
|
+
font-weight: 700;
|
|
178
|
+
line-height: 1.1;
|
|
179
|
+
letter-spacing: -0.02em;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
.heading-lg {
|
|
183
|
+
font-size: clamp(1.75rem, 4vw, 2.5rem);
|
|
184
|
+
font-weight: 700;
|
|
185
|
+
line-height: 1.2;
|
|
186
|
+
letter-spacing: -0.01em;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
.heading-md {
|
|
190
|
+
font-size: 1.25rem;
|
|
191
|
+
font-weight: 600;
|
|
192
|
+
line-height: 1.3;
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
/* Body Text */
|
|
196
|
+
.text-body {
|
|
197
|
+
color: var(--color-text-secondary);
|
|
198
|
+
line-height: 1.7;
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
/* Icon wrapper */
|
|
202
|
+
.icon-wrapper {
|
|
203
|
+
display: flex;
|
|
204
|
+
align-items: center;
|
|
205
|
+
justify-content: center;
|
|
206
|
+
width: 3rem;
|
|
207
|
+
height: 3rem;
|
|
208
|
+
background: var(--color-accent-glow);
|
|
209
|
+
border: 1px solid rgba(59, 130, 246, 0.3);
|
|
210
|
+
border-radius: 0.75rem;
|
|
211
|
+
color: var(--color-accent);
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
/* Code Block */
|
|
215
|
+
.code-block {
|
|
216
|
+
background: rgba(0, 0, 0, 0.4);
|
|
217
|
+
border: 1px solid var(--color-border);
|
|
218
|
+
border-radius: 0.5rem;
|
|
219
|
+
padding: 1rem;
|
|
220
|
+
font-family: var(--font-geist-mono);
|
|
221
|
+
font-size: 0.875rem;
|
|
222
|
+
color: var(--color-text-secondary);
|
|
223
|
+
overflow-x: auto;
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
/* Animations */
|
|
227
|
+
@keyframes float {
|
|
228
|
+
|
|
229
|
+
0%,
|
|
230
|
+
100% {
|
|
231
|
+
transform: translateY(0);
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
50% {
|
|
235
|
+
transform: translateY(-10px);
|
|
236
|
+
}
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
@keyframes pulse-glow {
|
|
240
|
+
|
|
241
|
+
0%,
|
|
242
|
+
100% {
|
|
243
|
+
opacity: 0.5;
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
50% {
|
|
247
|
+
opacity: 1;
|
|
248
|
+
}
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
.animate-float {
|
|
252
|
+
animation: float 6s ease-in-out infinite;
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
.animate-pulse-glow {
|
|
256
|
+
animation: pulse-glow 4s ease-in-out infinite;
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
/* Scrollbar */
|
|
260
|
+
::-webkit-scrollbar {
|
|
261
|
+
width: 8px;
|
|
262
|
+
height: 8px;
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
::-webkit-scrollbar-track {
|
|
266
|
+
background: var(--color-bg-base);
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
::-webkit-scrollbar-thumb {
|
|
270
|
+
background: var(--color-border);
|
|
271
|
+
border-radius: 4px;
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
::-webkit-scrollbar-thumb:hover {
|
|
275
|
+
background: var(--color-border-hover);
|
|
276
|
+
}
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import type { Metadata } from "next";
|
|
2
|
+
import { Geist, Geist_Mono } from "next/font/google";
|
|
3
|
+
import "./globals.css";
|
|
4
|
+
|
|
5
|
+
const geistSans = Geist({
|
|
6
|
+
variable: "--font-geist-sans",
|
|
7
|
+
subsets: ["latin"],
|
|
8
|
+
});
|
|
9
|
+
|
|
10
|
+
const geistMono = Geist_Mono({
|
|
11
|
+
variable: "--font-geist-mono",
|
|
12
|
+
subsets: ["latin"],
|
|
13
|
+
});
|
|
14
|
+
|
|
15
|
+
export const metadata: Metadata = {
|
|
16
|
+
title: "Antigravity Kit - AI Agent Capability Expansion Toolkit",
|
|
17
|
+
description:
|
|
18
|
+
"A comprehensive collection of skills, rules, and workflows to supercharge AI coding assistants for Antigravity. 35+ skills, 10 rules, 57 UI Styles, production-ready workflows.",
|
|
19
|
+
keywords: [
|
|
20
|
+
"AI agent",
|
|
21
|
+
"Antigravity kit",
|
|
22
|
+
"Antigravity skill",
|
|
23
|
+
"Antigravity rule",
|
|
24
|
+
"Antigravity workflow",
|
|
25
|
+
"Antigravity agent",
|
|
26
|
+
"Antigravity ide",
|
|
27
|
+
"coding assistant",
|
|
28
|
+
"skills",
|
|
29
|
+
"workflows",
|
|
30
|
+
"developer tools",
|
|
31
|
+
],
|
|
32
|
+
authors: [{ name: "VudoVN", url: "https://github.com/vudovn" }],
|
|
33
|
+
openGraph: {
|
|
34
|
+
title: "Antigravity Kit - AI Agent Capability Expansion Toolkit",
|
|
35
|
+
description:
|
|
36
|
+
"35+ skills, 10 rules, 57 UI Styles, production-ready workflows for AI coding assistants for Antigravity.",
|
|
37
|
+
type: "website",
|
|
38
|
+
},
|
|
39
|
+
};
|
|
40
|
+
|
|
41
|
+
export default function RootLayout({
|
|
42
|
+
children,
|
|
43
|
+
}: Readonly<{
|
|
44
|
+
children: React.ReactNode;
|
|
45
|
+
}>) {
|
|
46
|
+
return (
|
|
47
|
+
<html lang="en" className="dark" suppressHydrationWarning>
|
|
48
|
+
<body
|
|
49
|
+
className={`${geistSans.variable} ${geistMono.variable} font-sans antialiased`}
|
|
50
|
+
>
|
|
51
|
+
{children}
|
|
52
|
+
</body>
|
|
53
|
+
</html>
|
|
54
|
+
);
|
|
55
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import Navbar from "@/components/Navbar";
|
|
2
|
+
import Hero from "@/components/Hero";
|
|
3
|
+
import Features from "@/components/Features";
|
|
4
|
+
import Skills from "@/components/Skills";
|
|
5
|
+
import HowItWorks from "@/components/HowItWorks";
|
|
6
|
+
import Credits from "@/components/Credits";
|
|
7
|
+
import Footer from "@/components/Footer";
|
|
8
|
+
|
|
9
|
+
export default function Home() {
|
|
10
|
+
return (
|
|
11
|
+
<>
|
|
12
|
+
<Navbar />
|
|
13
|
+
<main>
|
|
14
|
+
<Hero />
|
|
15
|
+
<Features />
|
|
16
|
+
<Skills />
|
|
17
|
+
<HowItWorks />
|
|
18
|
+
<Credits />
|
|
19
|
+
</main>
|
|
20
|
+
<Footer />
|
|
21
|
+
</>
|
|
22
|
+
);
|
|
23
|
+
}
|
|
@@ -0,0 +1,162 @@
|
|
|
1
|
+
// External Link Icon
|
|
2
|
+
const ExternalLinkIcon = () => (
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" className="w-4 h-4">
|
|
4
|
+
<path fillRule="evenodd" d="M4.25 5.5a.75.75 0 0 0-.75.75v8.5c0 .414.336.75.75.75h8.5a.75.75 0 0 0 .75-.75v-4a.75.75 0 0 1 1.5 0v4A2.25 2.25 0 0 1 12.75 17h-8.5A2.25 2.25 0 0 1 2 14.75v-8.5A2.25 2.25 0 0 1 4.25 4h5a.75.75 0 0 1 0 1.5h-5Z" clipRule="evenodd" />
|
|
5
|
+
<path fillRule="evenodd" d="M6.194 12.753a.75.75 0 0 0 1.06.053L16.5 4.44v2.81a.75.75 0 0 0 1.5 0v-4.5a.75.75 0 0 0-.75-.75h-4.5a.75.75 0 0 0 0 1.5h2.553l-9.056 8.194a.75.75 0 0 0-.053 1.06Z" clipRule="evenodd" />
|
|
6
|
+
</svg>
|
|
7
|
+
);
|
|
8
|
+
|
|
9
|
+
// UI UX Icon
|
|
10
|
+
const PaletteIcon = () => (
|
|
11
|
+
<svg
|
|
12
|
+
viewBox="0 0 48 48"
|
|
13
|
+
fill="none"
|
|
14
|
+
className="w-6 h-6 min-[400px]:w-7 min-[400px]:h-7 sm:w-8 sm:h-8"
|
|
15
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
16
|
+
>
|
|
17
|
+
<defs>
|
|
18
|
+
<linearGradient id="logoGradient" x1="0%" y1="0%" x2="100%" y2="100%">
|
|
19
|
+
<stop offset="0%" stopColor="#2563EB" />
|
|
20
|
+
<stop offset="50%" stopColor="#3B82F6" />
|
|
21
|
+
<stop offset="100%" stopColor="#F97316" />
|
|
22
|
+
</linearGradient>
|
|
23
|
+
<linearGradient id="innerGradient" x1="0%" y1="100%" x2="100%" y2="0%">
|
|
24
|
+
<stop offset="0%" stopColor="#F97316" />
|
|
25
|
+
<stop offset="100%" stopColor="#2563EB" />
|
|
26
|
+
</linearGradient>
|
|
27
|
+
</defs>
|
|
28
|
+
<circle
|
|
29
|
+
cx={24}
|
|
30
|
+
cy={24}
|
|
31
|
+
r={22}
|
|
32
|
+
stroke="url(#logoGradient)"
|
|
33
|
+
strokeWidth={3}
|
|
34
|
+
fill="none"
|
|
35
|
+
/>
|
|
36
|
+
<rect
|
|
37
|
+
x={14}
|
|
38
|
+
y={14}
|
|
39
|
+
width={12}
|
|
40
|
+
height={12}
|
|
41
|
+
rx={2}
|
|
42
|
+
fill="url(#logoGradient)"
|
|
43
|
+
opacity="0.9"
|
|
44
|
+
/>
|
|
45
|
+
<rect
|
|
46
|
+
x={18}
|
|
47
|
+
y={18}
|
|
48
|
+
width={12}
|
|
49
|
+
height={12}
|
|
50
|
+
rx={2}
|
|
51
|
+
fill="url(#innerGradient)"
|
|
52
|
+
opacity="0.8"
|
|
53
|
+
/>
|
|
54
|
+
<rect
|
|
55
|
+
x={22}
|
|
56
|
+
y={22}
|
|
57
|
+
width={12}
|
|
58
|
+
height={12}
|
|
59
|
+
rx={2}
|
|
60
|
+
fill="url(#logoGradient)"
|
|
61
|
+
opacity="0.9"
|
|
62
|
+
/>
|
|
63
|
+
<circle cx={36} cy={12} r={2} fill="#F97316" />
|
|
64
|
+
<circle cx={12} cy={36} r="1.5" fill="#3B82F6" />
|
|
65
|
+
</svg>
|
|
66
|
+
|
|
67
|
+
);
|
|
68
|
+
|
|
69
|
+
// ClaudeKit Icon
|
|
70
|
+
const CpuChipIcon = () => (
|
|
71
|
+
<img src="/images/claudekit.png" />
|
|
72
|
+
);
|
|
73
|
+
|
|
74
|
+
const credits = [
|
|
75
|
+
{
|
|
76
|
+
icon: <PaletteIcon />,
|
|
77
|
+
name: "UI UX Pro Max",
|
|
78
|
+
description:
|
|
79
|
+
"Design Intelligence for Claude Code - 50 styles, 21 color palettes, 50 font pairings, 20 chart types",
|
|
80
|
+
link: "https://ui-ux-pro-max-skill.nextlevelbuilder.io/",
|
|
81
|
+
color: "",
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
icon: <CpuChipIcon />,
|
|
85
|
+
name: "ClaudeKit",
|
|
86
|
+
description:
|
|
87
|
+
"Production-ready AI subagents, workflows, and integrations for software development",
|
|
88
|
+
link: "https://claudekit.cc/",
|
|
89
|
+
color: "",
|
|
90
|
+
},
|
|
91
|
+
];
|
|
92
|
+
|
|
93
|
+
export default function Credits() {
|
|
94
|
+
return (
|
|
95
|
+
<section id="credits" className="section relative overflow-hidden">
|
|
96
|
+
{/* Background Glow */}
|
|
97
|
+
<div className="bg-glow bg-glow-purple left-1/2 bottom-0 -translate-x-1/2 translate-y-1/2" />
|
|
98
|
+
|
|
99
|
+
<div className="container-content relative z-10">
|
|
100
|
+
{/* Section Header */}
|
|
101
|
+
<div className="text-center mb-12">
|
|
102
|
+
<h2 className="heading-lg mb-4">
|
|
103
|
+
Built Upon <span className="gradient-text">Amazing Tools</span>
|
|
104
|
+
</h2>
|
|
105
|
+
<p className="text-body max-w-2xl mx-auto">
|
|
106
|
+
Special thanks to the creators of these incredible projects that
|
|
107
|
+
make Antigravity Kit possible.
|
|
108
|
+
</p>
|
|
109
|
+
</div>
|
|
110
|
+
|
|
111
|
+
{/* Credit Cards */}
|
|
112
|
+
<div className="grid md:grid-cols-2 gap-6 max-w-4xl mx-auto">
|
|
113
|
+
{credits.map((credit, index) => (
|
|
114
|
+
<a
|
|
115
|
+
key={index}
|
|
116
|
+
href={credit.link}
|
|
117
|
+
target="_blank"
|
|
118
|
+
rel="noopener noreferrer"
|
|
119
|
+
className="glass-card p-6 group cursor-pointer block"
|
|
120
|
+
>
|
|
121
|
+
{/* Icon with gradient background */}
|
|
122
|
+
<div
|
|
123
|
+
className={`
|
|
124
|
+
w-16 h-16 rounded-xl mb-4 flex items-center justify-center
|
|
125
|
+
bg-gradient-to-br ${credit.color} text-white
|
|
126
|
+
`}
|
|
127
|
+
>
|
|
128
|
+
{credit.icon}
|
|
129
|
+
</div>
|
|
130
|
+
|
|
131
|
+
{/* Name with external link */}
|
|
132
|
+
<div className="flex items-center gap-2 mb-2">
|
|
133
|
+
<h3 className="heading-md">{credit.name}</h3>
|
|
134
|
+
<ExternalLinkIcon />
|
|
135
|
+
</div>
|
|
136
|
+
|
|
137
|
+
{/* Description */}
|
|
138
|
+
<p className="text-body text-sm">{credit.description}</p>
|
|
139
|
+
|
|
140
|
+
{/* Link hint */}
|
|
141
|
+
<div className="mt-4 text-sm text-[var(--color-accent)] flex items-center gap-1 opacity-0 group-hover:opacity-100 transition-opacity">
|
|
142
|
+
Visit project
|
|
143
|
+
<svg
|
|
144
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
145
|
+
viewBox="0 0 20 20"
|
|
146
|
+
fill="currentColor"
|
|
147
|
+
className="w-4 h-4"
|
|
148
|
+
>
|
|
149
|
+
<path
|
|
150
|
+
fillRule="evenodd"
|
|
151
|
+
d="M3 10a.75.75 0 0 1 .75-.75h10.638L10.23 5.29a.75.75 0 1 1 1.04-1.08l5.5 5.25a.75.75 0 0 1 0 1.08l-5.5 5.25a.75.75 0 1 1-1.04-1.08l4.158-3.96H3.75A.75.75 0 0 1 3 10Z"
|
|
152
|
+
clipRule="evenodd"
|
|
153
|
+
/>
|
|
154
|
+
</svg>
|
|
155
|
+
</div>
|
|
156
|
+
</a>
|
|
157
|
+
))}
|
|
158
|
+
</div>
|
|
159
|
+
</div>
|
|
160
|
+
</section>
|
|
161
|
+
);
|
|
162
|
+
}
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
// SVG Icons
|
|
2
|
+
const BrainIcon = () => (
|
|
3
|
+
<svg
|
|
4
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
viewBox="0 0 24 24"
|
|
6
|
+
fill="currentColor"
|
|
7
|
+
className="w-6 h-6"
|
|
8
|
+
>
|
|
9
|
+
<path d="M11.645 20.91l-.007-.003-.022-.012a15.247 15.247 0 0 1-.383-.218 25.18 25.18 0 0 1-4.244-3.17C4.688 15.36 2.25 12.174 2.25 8.25 2.25 5.322 4.714 3 7.688 3A5.5 5.5 0 0 1 12 5.052 5.5 5.5 0 0 1 16.313 3c2.973 0 5.437 2.322 5.437 5.25 0 3.925-2.438 7.111-4.739 9.256a25.175 25.175 0 0 1-4.244 3.17 15.247 15.247 0 0 1-.383.219l-.022.012-.007.004-.003.001a.752.752 0 0 1-.704 0l-.003-.001Z" />
|
|
10
|
+
</svg>
|
|
11
|
+
);
|
|
12
|
+
|
|
13
|
+
const BookOpenIcon = () => (
|
|
14
|
+
<svg
|
|
15
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
16
|
+
viewBox="0 0 24 24"
|
|
17
|
+
fill="currentColor"
|
|
18
|
+
className="w-6 h-6"
|
|
19
|
+
>
|
|
20
|
+
<path d="M11.25 4.533A9.707 9.707 0 0 0 6 3a9.735 9.735 0 0 0-3.25.555.75.75 0 0 0-.5.707v14.25a.75.75 0 0 0 1 .707A8.237 8.237 0 0 1 6 18.75c1.995 0 3.823.707 5.25 1.886V4.533ZM12.75 20.636A8.214 8.214 0 0 1 18 18.75c.966 0 1.89.166 2.75.47a.75.75 0 0 0 1-.708V4.262a.75.75 0 0 0-.5-.707A9.735 9.735 0 0 0 18 3a9.707 9.707 0 0 0-5.25 1.533v16.103Z" />
|
|
21
|
+
</svg>
|
|
22
|
+
);
|
|
23
|
+
|
|
24
|
+
const BoltIcon = () => (
|
|
25
|
+
<svg
|
|
26
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
27
|
+
viewBox="0 0 24 24"
|
|
28
|
+
fill="currentColor"
|
|
29
|
+
className="w-6 h-6"
|
|
30
|
+
>
|
|
31
|
+
<path
|
|
32
|
+
fillRule="evenodd"
|
|
33
|
+
d="M14.615 1.595a.75.75 0 0 1 .359.852L12.982 9.75h7.268a.75.75 0 0 1 .548 1.262l-10.5 11.25a.75.75 0 0 1-1.272-.71l1.992-7.302H3.75a.75.75 0 0 1-.548-1.262l10.5-11.25a.75.75 0 0 1 .913-.143Z"
|
|
34
|
+
clipRule="evenodd"
|
|
35
|
+
/>
|
|
36
|
+
</svg>
|
|
37
|
+
);
|
|
38
|
+
|
|
39
|
+
const features = [
|
|
40
|
+
{
|
|
41
|
+
icon: <BrainIcon />,
|
|
42
|
+
title: "35+ Domain Skills",
|
|
43
|
+
description:
|
|
44
|
+
"Expert knowledge in React, Next.js, Node.js, databases, testing, DevOps, and more. The agent automatically applies relevant expertise.",
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
icon: <BookOpenIcon />,
|
|
48
|
+
title: "10 Behavior Rules",
|
|
49
|
+
description:
|
|
50
|
+
"Structured guidelines that direct agent behavior including task classification, communication style, and quality checklists.",
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
icon: <BoltIcon />,
|
|
54
|
+
title: "Production Workflows",
|
|
55
|
+
description:
|
|
56
|
+
"Step-by-step procedures for common tasks. Invoke with slash commands like /request or /ui-ux-pro-max.",
|
|
57
|
+
},
|
|
58
|
+
];
|
|
59
|
+
|
|
60
|
+
export default function Features() {
|
|
61
|
+
return (
|
|
62
|
+
<section id="features" className="section">
|
|
63
|
+
<div className="container-content">
|
|
64
|
+
{/* Section Header */}
|
|
65
|
+
<div className="text-center mb-16">
|
|
66
|
+
<h2 className="heading-lg mb-4">
|
|
67
|
+
Everything You Need to{" "}
|
|
68
|
+
<span className="gradient-text">Level Up</span>
|
|
69
|
+
</h2>
|
|
70
|
+
<p className="text-body max-w-2xl mx-auto">
|
|
71
|
+
A complete toolkit combining skills, rules, and workflows to
|
|
72
|
+
transform your AI coding assistant into a domain expert.
|
|
73
|
+
</p>
|
|
74
|
+
</div>
|
|
75
|
+
|
|
76
|
+
{/* Feature Cards */}
|
|
77
|
+
<div className="grid md:grid-cols-3 gap-6">
|
|
78
|
+
{features.map((feature, index) => (
|
|
79
|
+
<div
|
|
80
|
+
key={index}
|
|
81
|
+
className="glass-card p-6 cursor-pointer"
|
|
82
|
+
>
|
|
83
|
+
<div className="icon-wrapper mb-4">{feature.icon}</div>
|
|
84
|
+
<h3 className="heading-md mb-3">{feature.title}</h3>
|
|
85
|
+
<p className="text-body text-sm">{feature.description}</p>
|
|
86
|
+
</div>
|
|
87
|
+
))}
|
|
88
|
+
</div>
|
|
89
|
+
</div>
|
|
90
|
+
</section>
|
|
91
|
+
);
|
|
92
|
+
}
|