Skip to content

Commit e820068

Browse files
authored
Added a meeting scheduler form (supabase#44368)
1 parent 6c4c385 commit e820068

File tree

2 files changed

+59
-0
lines changed

2 files changed

+59
-0
lines changed
Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
import type { GoPageInput } from 'marketing'
2+
3+
const page: GoPageInput = {
4+
template: 'lead-gen',
5+
slug: 'stripe/schedule',
6+
metadata: {
7+
title: 'Schedule a Meeting at Stripe Sessions 2026 | Supabase',
8+
description:
9+
'Book time with the Supabase team at Stripe Sessions 2026. Learn how Supabase and Stripe work together to help you build faster.',
10+
},
11+
hero: {
12+
title: 'Meet the Supabase team at Stripe Sessions',
13+
subtitle: 'The open-source Postgres development platform',
14+
description:
15+
'Supabase gives you a Postgres database, Auth, Storage, Edge Functions, and Realtime out of the box. Book a slot below to talk with our engineers about your project, ask questions, or see a live demo.',
16+
ctas: [
17+
{
18+
label: 'Book a time',
19+
href: '#schedule',
20+
variant: 'primary',
21+
},
22+
],
23+
},
24+
sections: [
25+
{
26+
type: 'hubspot-meeting',
27+
id: 'schedule',
28+
title: 'Schedule a meeting',
29+
description: 'Pick a time that works for you to chat with our team.',
30+
meetingSlug: 'chris-caruso/event-meeting-stripe-sessions',
31+
},
32+
{
33+
type: 'single-column',
34+
title: 'Build with Supabase, monetize with Stripe',
35+
description:
36+
'Supabase gives you everything you need to go from idea to production in a weekend -- a full Postgres database, authentication, file storage, edge functions, and realtime sync. When you are ready to charge for what you have built, Stripe handles payments, subscriptions, and billing. Together they let you focus on your product instead of your infrastructure.',
37+
children: (
38+
<div className="flex flex-wrap gap-4 justify-center mt-6">
39+
<a
40+
href="https://supabase.com/dashboard"
41+
className="inline-flex items-center justify-center rounded-md bg-brand text-white px-5 py-2.5 text-sm font-medium hover:bg-brand/90 transition-colors"
42+
>
43+
Start building with Supabase
44+
</a>
45+
<a
46+
href="https://supabase.com/docs"
47+
className="inline-flex items-center justify-center rounded-md border border-foreground-muted text-foreground px-5 py-2.5 text-sm font-medium hover:bg-surface-200 transition-colors"
48+
>
49+
Read the documentation
50+
</a>
51+
</div>
52+
),
53+
},
54+
],
55+
}
56+
57+
export default page

apps/www/_go/index.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ import startupGrindContest from './events/startup-grind-2026/contest'
1313
import stripeSessionsContest from './events/stripe-sessions-2026/contest'
1414
import stripeExecDinner from './events/stripe-sessions-2026/exec-dinner'
1515
import stripeExecDinnerThankYou from './events/stripe-sessions-2026/exec-dinner-thank-you'
16+
import stripeMeetingScheduler from './events/stripe-sessions-2026/meeting-scheduler'
1617
import sxswContest from './events/sxsw-2026/contest'
1718
import exampleLeadGen from './lead-gen/example-lead-gen'
1819
import amoe from './legal/amoe'
@@ -37,6 +38,7 @@ const pages: GoPageInput[] = [
3738
boltWebinarThankYou, // remove after March 31, 2026
3839
stripeExecDinner, // remove after May 31, 2026
3940
stripeExecDinnerThankYou, // remove after May 31, 2026
41+
stripeMeetingScheduler, // remove after May 31, 2026
4042
stripeSessionsContest, // remove after May 31, 2026
4143
sxswContest, // remove after April 30, 2026
4244
accentureContest, // remove after May 31, 2026

0 commit comments

Comments
 (0)