|
| 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 |
0 commit comments