nextworks 0.2.0-alpha.19 → 0.2.0-alpha.20
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 +2 -3
- package/dist/cli_manifests/blocks_manifest.json +2 -20
- package/dist/kits/blocks/.nextworks/docs/BLOCKS_QUICKSTART.md +0 -2
- package/dist/kits/blocks/.nextworks/docs/BLOCKS_README.md +0 -2
- package/dist/kits/blocks/app/templates/gallery/page.tsx +1 -333
- package/dist/kits/blocks/package-deps.json +3 -3
- package/package.json +1 -1
- package/dist/kits/blocks/app/templates/aiworkflow/PresetThemeVars.tsx +0 -1
- package/dist/kits/blocks/app/templates/aiworkflow/README.md +0 -48
- package/dist/kits/blocks/app/templates/aiworkflow/components/CTA.tsx +0 -44
- package/dist/kits/blocks/app/templates/aiworkflow/components/Contact.tsx +0 -104
- package/dist/kits/blocks/app/templates/aiworkflow/components/FAQ.tsx +0 -67
- package/dist/kits/blocks/app/templates/aiworkflow/components/FeatureMockups.tsx +0 -562
- package/dist/kits/blocks/app/templates/aiworkflow/components/Features.tsx +0 -67
- package/dist/kits/blocks/app/templates/aiworkflow/components/Footer.tsx +0 -118
- package/dist/kits/blocks/app/templates/aiworkflow/components/Hero.tsx +0 -883
- package/dist/kits/blocks/app/templates/aiworkflow/components/Navbar.tsx +0 -91
- package/dist/kits/blocks/app/templates/aiworkflow/components/Pricing.tsx +0 -91
- package/dist/kits/blocks/app/templates/aiworkflow/components/ProcessTimeline.tsx +0 -102
- package/dist/kits/blocks/app/templates/aiworkflow/components/Testimonials.tsx +0 -60
- package/dist/kits/blocks/app/templates/aiworkflow/components/TrustBadges.tsx +0 -62
- package/dist/kits/blocks/app/templates/aiworkflow/page.tsx +0 -43
- package/dist/kits/blocks/app/templates/aiworkflow/themes/animation.tsx +0 -151
- package/dist/kits/blocks/app/templates/aiworkflow/themes/default.tsx +0 -158
- package/dist/kits/blocks/app/templates/aiworkflow/themes/test.tsx +0 -163
- package/dist/kits/blocks/public/placeholders/aiworkflow/live.svg +0 -92
- package/dist/kits/blocks/public/placeholders/aiworkflow/review.svg +0 -80
- package/dist/kits/blocks/public/placeholders/aiworkflow/task.svg +0 -71
|
@@ -1,67 +0,0 @@
|
|
|
1
|
-
"use client";
|
|
2
|
-
|
|
3
|
-
import { Features as SharedFeatures } from "@/components/sections/Features";
|
|
4
|
-
|
|
5
|
-
const featuresData = [
|
|
6
|
-
{
|
|
7
|
-
imageSrc: "/placeholders/aiworkflow/task.svg",
|
|
8
|
-
imageAlt: "Task navigator and repo context view",
|
|
9
|
-
headingText: "Turn plain-language tasks into code changes",
|
|
10
|
-
subheadingText:
|
|
11
|
-
"The agent reads the repo, traces the issue, and shapes a safe patch with clear context.",
|
|
12
|
-
},
|
|
13
|
-
{
|
|
14
|
-
imageSrc: "/placeholders/aiworkflow/live.svg",
|
|
15
|
-
imageAlt: "Transcript, live diff, and editor output",
|
|
16
|
-
headingText: "Watch the transcript and diff move independently",
|
|
17
|
-
subheadingText:
|
|
18
|
-
"The agent can keep reading, edit the file, and land a result without forcing both panes to move in lockstep.",
|
|
19
|
-
},
|
|
20
|
-
{
|
|
21
|
-
imageSrc: "/placeholders/aiworkflow/review.svg",
|
|
22
|
-
imageAlt: "Review queue and patch summary panel",
|
|
23
|
-
headingText: "Review only the changes that matter",
|
|
24
|
-
subheadingText:
|
|
25
|
-
"Keep the agent moving on routine edits while exceptions surface only when a human needs to step in.",
|
|
26
|
-
},
|
|
27
|
-
];
|
|
28
|
-
|
|
29
|
-
export function Features() {
|
|
30
|
-
return (
|
|
31
|
-
<SharedFeatures
|
|
32
|
-
sectionHeading="One system for requests, code, execution, and visibility"
|
|
33
|
-
sectionSubheading="Turn a task into context, a patch, and a live result without losing the thread."
|
|
34
|
-
featuresData={featuresData}
|
|
35
|
-
section={{
|
|
36
|
-
className: "bg-[var(--section-bg)] py-18 md:py-22 lg:py-24",
|
|
37
|
-
}}
|
|
38
|
-
container={{ className: "max-w-7xl mx-auto px-6 md:px-8 lg:px-10" }}
|
|
39
|
-
header={{ className: "mb-12 text-center md:mb-14" }}
|
|
40
|
-
heading={{
|
|
41
|
-
className:
|
|
42
|
-
"font-outfit text-3xl font-semibold text-[var(--heading-fg)] md:text-4xl lg:text-5xl",
|
|
43
|
-
}}
|
|
44
|
-
subheading={{
|
|
45
|
-
className:
|
|
46
|
-
"mx-auto max-w-3xl font-inter text-base leading-7 text-[var(--subheading-fg)] md:text-lg",
|
|
47
|
-
}}
|
|
48
|
-
grid={{
|
|
49
|
-
className: "grid grid-cols-1 gap-6 md:grid-cols-2 lg:grid-cols-3",
|
|
50
|
-
}}
|
|
51
|
-
card={{
|
|
52
|
-
className:
|
|
53
|
-
"h-full rounded-2xl border border-[var(--card-border)] bg-[var(--card-bg)] text-[var(--card-fg)] shadow-[var(--card-shadow)] transition-all duration-300 hover:-translate-y-1 hover:shadow-xl",
|
|
54
|
-
}}
|
|
55
|
-
image={{ className: "h-52 w-full object-cover" }}
|
|
56
|
-
cardHeading={{
|
|
57
|
-
className:
|
|
58
|
-
"font-inter text-xl font-semibold leading-tight text-[var(--card-title-fg)]",
|
|
59
|
-
}}
|
|
60
|
-
cardSubheading={{
|
|
61
|
-
className:
|
|
62
|
-
"font-inter text-sm leading-6 text-[var(--card-muted-fg)] md:text-base",
|
|
63
|
-
}}
|
|
64
|
-
ariaLabel="AI coding agent features"
|
|
65
|
-
/>
|
|
66
|
-
);
|
|
67
|
-
}
|
|
@@ -1,118 +0,0 @@
|
|
|
1
|
-
"use client";
|
|
2
|
-
|
|
3
|
-
import { Footer as SharedFooter } from "@/components/sections/Footer";
|
|
4
|
-
import { Github, Linkedin, Mail, Twitter } from "lucide-react";
|
|
5
|
-
|
|
6
|
-
export function Footer() {
|
|
7
|
-
return (
|
|
8
|
-
<SharedFooter
|
|
9
|
-
id="footer"
|
|
10
|
-
footerBrandName="MergeBeacon AI"
|
|
11
|
-
|
|
12
|
-
footerNavLinks={[
|
|
13
|
-
{
|
|
14
|
-
heading: "Product",
|
|
15
|
-
links: [
|
|
16
|
-
{ name: "Features", href: "#features" },
|
|
17
|
-
{ name: "Pricing", href: "#pricing" },
|
|
18
|
-
{ name: "FAQ", href: "#faq" },
|
|
19
|
-
{ name: "Contact", href: "#contact" },
|
|
20
|
-
],
|
|
21
|
-
},
|
|
22
|
-
{
|
|
23
|
-
heading: "Use cases",
|
|
24
|
-
links: [
|
|
25
|
-
{ name: "Bug fixes", href: "#features" },
|
|
26
|
-
{ name: "Refactors", href: "#features" },
|
|
27
|
-
{ name: "Reviews", href: "#faq" },
|
|
28
|
-
{ name: "Tooling", href: "#features" },
|
|
29
|
-
],
|
|
30
|
-
},
|
|
31
|
-
{
|
|
32
|
-
heading: "Resources",
|
|
33
|
-
links: [
|
|
34
|
-
{ name: "About", href: "#home" },
|
|
35
|
-
{ name: "Security", href: "#faq" },
|
|
36
|
-
{ name: "Status", href: "#contact" },
|
|
37
|
-
{ name: "Privacy", href: "#contact" },
|
|
38
|
-
],
|
|
39
|
-
},
|
|
40
|
-
]}
|
|
41
|
-
footerSocialLinks={[
|
|
42
|
-
{
|
|
43
|
-
name: "Twitter",
|
|
44
|
-
icon: Twitter,
|
|
45
|
-
url: "https://twitter.com/",
|
|
46
|
-
external: true,
|
|
47
|
-
label: "Visit Twitter",
|
|
48
|
-
|
|
49
|
-
},
|
|
50
|
-
{
|
|
51
|
-
name: "LinkedIn",
|
|
52
|
-
icon: Linkedin,
|
|
53
|
-
url: "https://www.linkedin.com/",
|
|
54
|
-
external: true,
|
|
55
|
-
label: "Visit LinkedIn",
|
|
56
|
-
|
|
57
|
-
},
|
|
58
|
-
{
|
|
59
|
-
name: "GitHub",
|
|
60
|
-
icon: Github,
|
|
61
|
-
url: "https://github.com/",
|
|
62
|
-
external: true,
|
|
63
|
-
label: "Visit GitHub",
|
|
64
|
-
|
|
65
|
-
},
|
|
66
|
-
{
|
|
67
|
-
name: "Email",
|
|
68
|
-
icon: Mail,
|
|
69
|
-
url: "#contact",
|
|
70
|
-
external: false,
|
|
71
|
-
label: "Go to contact section",
|
|
72
|
-
|
|
73
|
-
},
|
|
74
|
-
]}
|
|
75
|
-
section={{
|
|
76
|
-
className:
|
|
77
|
-
"w-full border-t border-[var(--footer-border)] bg-[var(--footer-bg)] text-[var(--footer-fg)]",
|
|
78
|
-
}}
|
|
79
|
-
container={{ className: "max-w-7xl mx-auto px-6" }}
|
|
80
|
-
brand={{
|
|
81
|
-
className:
|
|
82
|
-
"font-outfit text-xl font-semibold text-[var(--footer-heading-fg)] md:text-2xl",
|
|
83
|
-
}}
|
|
84
|
-
brandWrapper={{
|
|
85
|
-
className: "flex flex-col items-start text-left lg:pr-8",
|
|
86
|
-
}}
|
|
87
|
-
navSection={{
|
|
88
|
-
className:
|
|
89
|
-
"flex flex-col items-start justify-between gap-8 pt-10 pb-12 lg:flex-row",
|
|
90
|
-
}}
|
|
91
|
-
navGroup={{
|
|
92
|
-
className: "flex min-w-[150px] flex-col items-start text-left",
|
|
93
|
-
}}
|
|
94
|
-
navHeading={{
|
|
95
|
-
className:
|
|
96
|
-
"mb-4 font-inter text-sm font-semibold uppercase tracking-wider text-[var(--footer-heading-fg)]",
|
|
97
|
-
}}
|
|
98
|
-
navLink={{
|
|
99
|
-
className:
|
|
100
|
-
"mb-3 block font-inter text-sm text-[var(--footer-link-fg)] transition-colors duration-200 hover:text-[var(--footer-link-hover-fg)]",
|
|
101
|
-
}}
|
|
102
|
-
socialSection={{
|
|
103
|
-
className:
|
|
104
|
-
"flex items-center justify-center gap-5 border-t border-[var(--footer-border)] py-8",
|
|
105
|
-
}}
|
|
106
|
-
socialLink={{
|
|
107
|
-
className:
|
|
108
|
-
"rounded-lg p-3 text-[var(--footer-link-fg)] transition-all duration-200 hover:bg-[var(--footer-link-hover-bg)] hover:text-[var(--footer-link-hover-fg)]",
|
|
109
|
-
}}
|
|
110
|
-
socialIcon={{ className: "h-5 w-5" }}
|
|
111
|
-
copyright={{
|
|
112
|
-
className:
|
|
113
|
-
"border-t border-[var(--footer-border)] py-6 text-center font-inter text-sm text-[var(--footer-muted-fg)]",
|
|
114
|
-
}}
|
|
115
|
-
ariaLabel="AI coding agent footer"
|
|
116
|
-
/>
|
|
117
|
-
);
|
|
118
|
-
}
|