Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions apps/web/app/(landing)/home/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ const navigation = {
{ name: "Customer Support", href: "/support" },
{ name: "E-commerce", href: "/ecommerce" },
],
compare: [{ name: "vs Fyxer.ai", href: "/best-fyxer-alternative" }],
Copy link
Contributor

@cubic-dev-ai cubic-dev-ai bot Sep 18, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Broken internal link: "/best-fyxer-alternative" appears to have no page or redirect, likely leading to a 404. Create the route or update the href to a valid path.

Prompt for AI agents
Address the following comment on apps/web/app/(landing)/home/Footer.tsx at line 27:

<comment>Broken internal link: &quot;/best-fyxer-alternative&quot; appears to have no page or redirect, likely leading to a 404. Create the route or update the href to a valid path.</comment>

<file context>
@@ -24,6 +24,7 @@ const navigation = {
     { name: &quot;Customer Support&quot;, href: &quot;/support&quot; },
     { name: &quot;E-commerce&quot;, href: &quot;/ecommerce&quot; },
   ],
+  compare: [{ name: &quot;vs Fyxer.ai&quot;, href: &quot;/best-fyxer-alternative&quot; }],
   support: [
     { name: &quot;Pricing&quot;, href: &quot;/#pricing&quot; },
</file context>
Fix with Cubic

support: [
{ name: "Pricing", href: "/#pricing" },
{ name: "Contact", href: "mailto:elie@getinboxzero.com", target: "_blank" },
Expand Down Expand Up @@ -114,6 +115,10 @@ export function Footer() {
</div>
<div>
<FooterList title="Use Cases" items={navigation.useCases} />

<div className="mt-6">
<FooterList title="Compare" items={navigation.compare} />
</div>
</div>
<div>
<FooterList title="Support" items={navigation.support} />
Expand Down
2 changes: 1 addition & 1 deletion apps/web/app/(marketing)
Submodule (marketing) updated from 9b2e52 to 394cae
6 changes: 5 additions & 1 deletion apps/web/next.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@ import withSerwistInit from "@serwist/next";
import { env } from "./env";
import type { NextConfig } from "next";

const withMDX = nextMdx();
const withMDX = nextMdx({
options: {
remarkPlugins: [[require.resolve("remark-gfm")]],
Copy link
Contributor

@cubic-dev-ai cubic-dev-ai bot Sep 18, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

remarkPlugins should receive the plugin function, not require.resolve(...) which returns a path string; import and pass the remark-gfm plugin function instead.

Prompt for AI agents
Address the following comment on apps/web/next.config.ts at line 10:

<comment>remarkPlugins should receive the plugin function, not require.resolve(...) which returns a path string; import and pass the remark-gfm plugin function instead.</comment>

<file context>
@@ -5,7 +5,11 @@ import withSerwistInit from &quot;@serwist/next&quot;;
-const withMDX = nextMdx();
+const withMDX = nextMdx({
+  options: {
+    remarkPlugins: [[require.resolve(&quot;remark-gfm&quot;)]],
+  },
+});
</file context>
Fix with Cubic

},
});

const nextConfig: NextConfig = {
reactStrictMode: true,
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v2.9.47
v2.9.48
Loading