Skip to content

Commit

Permalink
Try to fix rss route. Update copy/ctas
Browse files Browse the repository at this point in the history
  • Loading branch information
djfarrelly committed Feb 12, 2025
1 parent 20f3d57 commit 01e4605
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 14 deletions.
16 changes: 6 additions & 10 deletions app/ai/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -366,16 +366,12 @@ export default inngest.createFunction(
<section>
<div className="mt-12 px-6 flex items-center justify-center tracking-tight text-basis text-center">
<div className="max-w-xl mx-auto mt-4 flex flex-col gap-6">
<H2>AI early access program</H2>
<H2>This is AI product development, redefined</H2>
<p className="text-lg md:text-xl text-balance">
Be the first to get access to and stay in the loop about our
latest AI features, including <code>step.ai</code>,{" "}
<strong>AgentKit</strong> and more.
Want to know more about how Inngest can level up your
production? Let's talk.
</p>
<CTA
href={`ai/early-access?ref=${ref}`}
text="Sign up for early access"
/>
<CTA href={`/contact?ref=${ref}`} text="Book a demo" />
</div>
</div>
<img
Expand All @@ -392,8 +388,8 @@ export default inngest.createFunction(
function Hero({
ctas = [
{
href: `/ai/early-access?ref=${ref}`,
text: "Sign up for early access",
href: `/contact?ref=${ref}`,
text: "Book a demo",
variant: "primary",
},
{
Expand Down
6 changes: 2 additions & 4 deletions next.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -143,11 +143,9 @@ const nextConfig = {
experimental: {
scrollRestoration: true,
},
outputFileTracingIncludes: {
"/api/og": ["./public/assets/fonts/**"],
},
outputFileTracingExcludes: {
"*": ["./.git/*", "./.next/*", "./public/**/*"],
"*": ["./.git/*", "./public/**/*"],
"!(/api)": ["./.next/*"],
},
webpack: (config, { dev, isServer }) => {
// Exclude old-style _prefix directories from being rendered (ex. mdx pages)
Expand Down

0 comments on commit 01e4605

Please sign in to comment.