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
2 changes: 2 additions & 0 deletions apps/docs/public/humans.txt
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@ Illia Basalaiev
Inian P
Ivan Vasilov
Jamie Boyd
Jared Patterson
Jason Farber
Jean-Paul Argudo
Jeezy
Expand Down Expand Up @@ -203,6 +204,7 @@ Ruan Maia
Sam Meech-Ward
Sam Rome
Sam Rose
Samir Ketema
Sana Cordeaux
Sara Read
Sean Oliver
Expand Down
57 changes: 57 additions & 0 deletions apps/www/_go/events/stripe-sessions-2026/meeting-scheduler.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
import type { GoPageInput } from 'marketing'

const page: GoPageInput = {
template: 'lead-gen',
slug: 'stripe/schedule',
metadata: {
title: 'Schedule a Meeting at Stripe Sessions 2026 | Supabase',
description:
'Book time with the Supabase team at Stripe Sessions 2026. Learn how Supabase and Stripe work together to help you build faster.',
},
hero: {
title: 'Meet the Supabase team at Stripe Sessions',
subtitle: 'The open-source Postgres development platform',
description:
'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.',
ctas: [
{
label: 'Book a time',
href: '#schedule',
variant: 'primary',
},
],
},
sections: [
{
type: 'hubspot-meeting',
id: 'schedule',
title: 'Schedule a meeting',
description: 'Pick a time that works for you to chat with our team.',
meetingSlug: 'chris-caruso/event-meeting-stripe-sessions',
},
{
type: 'single-column',
title: 'Build with Supabase, monetize with Stripe',
description:
'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.',
children: (
<div className="flex flex-wrap gap-4 justify-center mt-6">
<a
href="https://supabase.com/dashboard"
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"
>
Start building with Supabase
</a>
<a
href="https://supabase.com/docs"
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"
>
Read the documentation
</a>
</div>
),
},
],
}

export default page
2 changes: 2 additions & 0 deletions apps/www/_go/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ import startupGrindContest from './events/startup-grind-2026/contest'
import stripeSessionsContest from './events/stripe-sessions-2026/contest'
import stripeExecDinner from './events/stripe-sessions-2026/exec-dinner'
import stripeExecDinnerThankYou from './events/stripe-sessions-2026/exec-dinner-thank-you'
import stripeMeetingScheduler from './events/stripe-sessions-2026/meeting-scheduler'
import sxswContest from './events/sxsw-2026/contest'
import exampleLeadGen from './lead-gen/example-lead-gen'
import amoe from './legal/amoe'
Expand All @@ -37,6 +38,7 @@ const pages: GoPageInput[] = [
boltWebinarThankYou, // remove after March 31, 2026
stripeExecDinner, // remove after May 31, 2026
stripeExecDinnerThankYou, // remove after May 31, 2026
stripeMeetingScheduler, // remove after May 31, 2026
stripeSessionsContest, // remove after May 31, 2026
sxswContest, // remove after April 30, 2026
accentureContest, // remove after May 31, 2026
Expand Down
Loading