nextworks 0.2.0-alpha.18 → 0.2.0-alpha.19
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/dist/kits/blocks/app/templates/aiworkflow/components/FAQ.tsx +3 -2
- package/dist/kits/blocks/app/templates/aiworkflow/components/Footer.tsx +16 -11
- package/dist/kits/blocks/app/templates/aiworkflow/components/Navbar.tsx +5 -3
- package/dist/kits/blocks/package-deps.json +3 -3
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
|
|
3
3
|
import { FAQ as SharedFAQ } from "@/components/sections/FAQ";
|
|
4
|
-
|
|
4
|
+
|
|
5
5
|
export function FAQ() {
|
|
6
6
|
return (
|
|
7
7
|
<SharedFAQ
|
|
@@ -10,7 +10,8 @@ export function FAQ() {
|
|
|
10
10
|
{
|
|
11
11
|
question: "What kinds of coding tasks can the agent handle?",
|
|
12
12
|
answer:
|
|
13
|
-
|
|
13
|
+
"Teams use MergeBeacon AI for bug fixes, refactors, routine maintenance, release prep, and other repeatable code changes.",
|
|
14
|
+
|
|
14
15
|
},
|
|
15
16
|
{
|
|
16
17
|
question: "How do reviews and approvals work?",
|
|
@@ -2,12 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
import { Footer as SharedFooter } from "@/components/sections/Footer";
|
|
4
4
|
import { Github, Linkedin, Mail, Twitter } from "lucide-react";
|
|
5
|
-
|
|
5
|
+
|
|
6
6
|
export function Footer() {
|
|
7
7
|
return (
|
|
8
8
|
<SharedFooter
|
|
9
9
|
id="footer"
|
|
10
|
-
|
|
10
|
+
footerBrandName="MergeBeacon AI"
|
|
11
|
+
|
|
11
12
|
footerNavLinks={[
|
|
12
13
|
{
|
|
13
14
|
heading: "Product",
|
|
@@ -41,30 +42,34 @@ export function Footer() {
|
|
|
41
42
|
{
|
|
42
43
|
name: "Twitter",
|
|
43
44
|
icon: Twitter,
|
|
44
|
-
|
|
45
|
+
url: "https://twitter.com/",
|
|
45
46
|
external: true,
|
|
46
|
-
label: "
|
|
47
|
+
label: "Visit Twitter",
|
|
48
|
+
|
|
47
49
|
},
|
|
48
50
|
{
|
|
49
51
|
name: "LinkedIn",
|
|
50
52
|
icon: Linkedin,
|
|
51
|
-
|
|
53
|
+
url: "https://www.linkedin.com/",
|
|
52
54
|
external: true,
|
|
53
|
-
label: "
|
|
55
|
+
label: "Visit LinkedIn",
|
|
56
|
+
|
|
54
57
|
},
|
|
55
58
|
{
|
|
56
59
|
name: "GitHub",
|
|
57
60
|
icon: Github,
|
|
58
|
-
|
|
61
|
+
url: "https://github.com/",
|
|
59
62
|
external: true,
|
|
60
|
-
label: "
|
|
63
|
+
label: "Visit GitHub",
|
|
64
|
+
|
|
61
65
|
},
|
|
62
66
|
{
|
|
63
67
|
name: "Email",
|
|
64
68
|
icon: Mail,
|
|
65
|
-
|
|
66
|
-
external:
|
|
67
|
-
label: "
|
|
69
|
+
url: "#contact",
|
|
70
|
+
external: false,
|
|
71
|
+
label: "Go to contact section",
|
|
72
|
+
|
|
68
73
|
},
|
|
69
74
|
]}
|
|
70
75
|
section={{
|
|
@@ -5,9 +5,10 @@ import { Navbar as SharedNavbar } from "@/components/sections/Navbar";
|
|
|
5
5
|
|
|
6
6
|
type SharedNavbarProps = ComponentProps<typeof SharedNavbar>;
|
|
7
7
|
type PresetOverrides = Partial<SharedNavbarProps>;
|
|
8
|
-
|
|
8
|
+
|
|
9
9
|
const defaultProps: SharedNavbarProps = {
|
|
10
|
-
|
|
10
|
+
brand: "MergeBeacon AI",
|
|
11
|
+
|
|
11
12
|
brandNode: (
|
|
12
13
|
<div className="flex h-8 w-8 items-center justify-center rounded-lg border border-[var(--navbar-border)] bg-[var(--navbar-accent)] text-[var(--navbar-toggle-bg)] shadow-sm ring-1 ring-white/20 dark:ring-white/10">
|
|
13
14
|
<span className="grid grid-cols-2 gap-[2px]">
|
|
@@ -30,7 +31,8 @@ const defaultProps: SharedNavbarProps = {
|
|
|
30
31
|
showColorModeToggle: true,
|
|
31
32
|
navHeight: "h-16",
|
|
32
33
|
sticky: true,
|
|
33
|
-
|
|
34
|
+
ariaLabel: "MergeBeacon AI main navigation",
|
|
35
|
+
|
|
34
36
|
className: "",
|
|
35
37
|
nav: {
|
|
36
38
|
className:
|
|
@@ -13,9 +13,9 @@
|
|
|
13
13
|
"next-themes": "^0.4.6",
|
|
14
14
|
"motion": "^12.24.10",
|
|
15
15
|
"sonner": "^2.0.7",
|
|
16
|
-
"@nextworks/blocks-core": "0.2.0-alpha.
|
|
17
|
-
"@nextworks/blocks-sections": "0.2.0-alpha.
|
|
18
|
-
"@nextworks/blocks-templates": "0.2.0-alpha.
|
|
16
|
+
"@nextworks/blocks-core": "0.2.0-alpha.19",
|
|
17
|
+
"@nextworks/blocks-sections": "0.2.0-alpha.19",
|
|
18
|
+
"@nextworks/blocks-templates": "0.2.0-alpha.19"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
21
|
"tailwindcss": "^4.1.12"
|