Skip to content

Commit fa4a729

Browse files
committed
adds pricing link
1 parent 269789c commit fa4a729

File tree

2 files changed

+5
-23
lines changed

2 files changed

+5
-23
lines changed

src/components/landing-page-components/sections/landing-page-header.jsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,15 +58,15 @@ const LandingPageHeader = () => {
5858
How it works
5959
</LandingPageLink>
6060

61-
{/* <LandingPageLink
61+
<LandingPageLink
6262
className="px-[0.5rem] py-[1.5rem]"
6363
style={{
6464
borderBottom: "1px solid #3741AC",
6565
}}
6666
href={LINK_PRICING}
6767
>
6868
Pricing
69-
</LandingPageLink> */}
69+
</LandingPageLink>
7070

7171
<LandingPageLink
7272
className="px-[0.5rem] py-[1.5rem]"
@@ -141,11 +141,11 @@ const scrollToHeader = (headerId) => {
141141
Blog
142142
</LandingPageLink>
143143

144-
{/* <LandingPageLink
144+
<LandingPageLink
145145
href='/pricing'
146146
>
147147
Pricing
148-
</LandingPageLink> */}
148+
</LandingPageLink>
149149
</div>
150150
<div
151151
className='flex gap-[1.25rem] items-center'

src/components/landing-page-components/sections/pricing-cards.jsx

Lines changed: 1 addition & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ const PricingCards = () => {
5252
fontFeatureSettings: "'liga' off, 'clig' off",
5353
}}
5454
>
55-
Benefits built for your success
55+
Plans
5656
</div>
5757

5858
<div className={`${isMobile ? 'flex flex-col' : 'flex flex-row'} gap-[1em]`} style={{ alignItems: "stretch", background: "transparent" }}>
@@ -72,24 +72,6 @@ const PricingCards = () => {
7272
</div>
7373
))}
7474
</div>
75-
""
76-
<div
77-
className={isMobile ? "flex flex-col gap-[1rem] pt-[1.5rem]" : "flex gap-[1rem] pt-[2rem]"}
78-
>
79-
<PrimaryButton
80-
className="inline-flex !w-auto px-[1.5rem] py-[0.75rem]"
81-
onClick={() => history.push(LINK_GET_STARTED)}
82-
>
83-
Get started
84-
</PrimaryButton>
85-
86-
<SecondaryButton
87-
className="inline-flex !w-auto px-[1.5rem] py-[0.75rem]"
88-
onClick={() => window.open(LINK_CHAT_WITH_FOUNDERS, '_blank')}
89-
>
90-
Chat with us
91-
</SecondaryButton>
92-
</div>
9375
</LandingPageCard>
9476
);
9577
};

0 commit comments

Comments
 (0)