Skip to content

Commit

Permalink
pitch polish
Browse files Browse the repository at this point in the history
  • Loading branch information
emilwidlund committed Jan 16, 2025
1 parent 0dd76f2 commit 9cd618a
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 2 deletions.
3 changes: 2 additions & 1 deletion clients/apps/web/src/app/pitch/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import { Footer } from '@/components/Pitch/Footer'
import { IndexSection } from '@/components/Pitch/sections/IndexSection'
import { InvestorsSection } from '@/components/Pitch/sections/InvestorsSection'
import { OpenSourceSection } from '@/components/Pitch/sections/OpenSource'
import { Polar20Section } from '@/components/Pitch/sections/Polar20'
import { TeamSection } from '@/components/Pitch/sections/TeamSection'
import { UsageBasedSection } from '@/components/Pitch/sections/UsageBasedSection'
Expand Down Expand Up @@ -35,7 +36,7 @@ export default function PitchPage() {
case 3:
return <Polar20Section />
case 4:
return <IndexSection />
return <OpenSourceSection />
case 5:
return <TeamSection />
case 6:
Expand Down
29 changes: 29 additions & 0 deletions clients/apps/web/src/components/Pitch/sections/OpenSource.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
import { Console } from '../Console'
import { Link } from '../Link'
import { Section } from '../Section'

export const OpenSourceSection = () => {
return (
<Section
header={{ index: '04', name: 'Open Source' }}
title="Building in public"
context={
<Console
className="flex aspect-video max-w-lg flex-grow"
input="$ polar-init"
output="Initializing seed round..."
/>
}
>
<p>
What used to be a simple way to pay for things has become a complex
mess.
</p>
<p>
Software as a Service (SaaS) has become the norm, but the underlying
payment infrastructure has not evolved.
</p>
<Link href="/pitch/what">What we are building →</Link>
</Section>
)
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { Section } from '../Section'

export const WhySection = () => {
return (
<Section header={{ index: '02', name: 'Why Polar' }} title="Why">
<Section header={{ index: '02', name: 'Why' }} title="Why Polar">
<p>
What used to be a simple way to pay for things has become a complex
mess.
Expand Down

0 comments on commit 9cd618a

Please sign in to comment.