-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* AI landing page. Update contact forms * Clone durable workflows page * Adjust pricing breakpoint
- Loading branch information
1 parent
19fc5d9
commit 955323a
Showing
25 changed files
with
305 additions
and
142 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,3 +35,5 @@ | |
# Nix | ||
/.direnv/ | ||
.env*.local | ||
|
||
cdn |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
import type { Metadata } from "next"; | ||
import { AIPage } from "src/app/ai/page"; | ||
import ContactForm from "src/components/ContactForm"; | ||
import { generateMetadata } from "src/utils/social"; | ||
import { H2 } from "src/components/LandingPage/Heading"; | ||
|
||
export const metadata: Metadata = generateMetadata({ | ||
// Prevent Google from indexing landing pages which may have | ||
// duplicate and/or temporary content | ||
robots: "noindex", | ||
title: "AI", | ||
description: | ||
"Orchestration for AI workflows and AI agents. Build, iterate and ship to production with confidence.", | ||
}); | ||
|
||
export default function Page() { | ||
return ( | ||
<> | ||
<AIPage | ||
heroCTAs={[]} | ||
heroFeature={ | ||
<ContactForm | ||
className="max-w-md w-full mx-auto" | ||
eventName="contact.form.sent" | ||
eventVersion="2023-12-12.1" | ||
gtmEvent="Sales Lead Form Submitted" | ||
button="Schedule a call" | ||
redirectTo="https://savvycal.com/inngest/demo" | ||
/> | ||
} | ||
showCTAs={false} | ||
/> | ||
<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>Schedule a call</H2> | ||
<p className="text-lg md:text-xl text-balance"> | ||
We're here to help you with any questions you have about Inngest | ||
and AI. | ||
</p> | ||
<div className="text-left"> | ||
<ContactForm | ||
className="max-w-md w-full mx-auto" | ||
eventName="contact.form.sent" | ||
eventVersion="2023-12-12.1" | ||
gtmEvent="Sales Lead Form Submitted" | ||
button="Schedule a call" | ||
redirectTo="https://savvycal.com/inngest/demo" | ||
/> | ||
</div> | ||
</div> | ||
</div> | ||
<img | ||
className="max-w-6xl w-full mx-auto" | ||
src="/assets/ai/early-access-isometric-ui-image.png" | ||
/> | ||
</section> | ||
</> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
import type { Metadata } from "next"; | ||
import { DurableWorkflowsPage } from "src/app/uses/durable-workflows/page"; | ||
import { generateMetadata } from "src/utils/social"; | ||
import ContactForm from "src/components/ContactForm"; | ||
|
||
export const metadata: Metadata = generateMetadata({ | ||
// Prevent Google from indexing landing pages which may have | ||
// duplicate and/or temporary content | ||
robots: "noindex", | ||
title: "Durable Workflows", | ||
description: | ||
"Write complex workflows as code and let Inngest handle the rest. Inngest manages state, retries, logging and observability for you.", | ||
}); | ||
|
||
const baseCTA = "landing-durable-workflows"; | ||
|
||
export default function Page() { | ||
return ( | ||
<> | ||
<DurableWorkflowsPage | ||
cta={{ | ||
href: `/contact?ref=${baseCTA}`, | ||
text: "Schedule a demo", | ||
}} | ||
/> | ||
</> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.