Skip to content

Commit 1858d7d

Browse files
committed
requested changes
1 parent c9b13f9 commit 1858d7d

File tree

4 files changed

+20
-15
lines changed

4 files changed

+20
-15
lines changed

items.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"href": "/docs/"
88
},
99
{
10-
"label": "Blogs",
10+
"label": "Blog",
1111
"position": "left",
1212
"prependBaseUrlToHref": true,
1313
"href": "/blog"

src/components/landing-page-components/parts/pricing-card.jsx

Lines changed: 14 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ const PricingCard = ({
1616
return (
1717
<div
1818
className={isMobile ?
19-
"w-full p-[1.25rem]"
19+
"w-full p-[1.25rem] rounded-[0.625rem]"
2020
:
21-
"p-[2rem]"
21+
"p-[2rem] rounded-[0.625rem]"
2222
}
2323

2424
style={{
@@ -41,14 +41,18 @@ const PricingCard = ({
4141
>
4242
{description}
4343
</div>
44-
<ul className="relative z-10 mt-4 list-disc list-inside">
45-
{bulletPoints.map((point, index) => (
46-
<li key={index} className="mb-2">
47-
{point}
48-
</li>
49-
))}
50-
</ul>
51-
<PrimaryButton onClick={() => window.open(href, '_blank')} className="mt-4 z-[8000]">{buttonTitle}</PrimaryButton>
44+
<PrimaryButton onClick={() => window.open(href, '_blank')} className="mt-4 z-[8000]">{buttonTitle}</PrimaryButton>
45+
<div className="relative z-10 mt-4 list-disc list-inside">
46+
{bulletPoints.map((point, index) => (
47+
<div
48+
key={`landing-page-pricing-card-${title}-bullet-${index}`}
49+
className="mb-2 text-[#A2A1A5] flex items-center"
50+
>
51+
<div className="w-1 h-1 mr-2 bg-white rounded-full"></div>
52+
{point}
53+
</div>
54+
))}
55+
</div>
5256
</div>
5357
);
5458
};

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,8 @@ const LandingPageHeader = ({
182182
}}
183183
>
184184
<div
185-
className="flex gap-[0.44rem] items-center"
185+
className="flex gap-[0.44rem] items-center cursor-pointer"
186+
onClick={() => history.push(HOME_PAGE)}
186187
>
187188
<img
188189
src={icon}

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ const FEATURES = [
3030
"Starting with 10,000,000 input credits and 2,000,000 output credits per month",
3131
"Integrate Dev-Docs into your CI/CD to fully automate the process",
3232
"Sync Dev-Docs up with your Confluence, Google Drive or Notion",
33-
"Dedicated support via a private slack channel"
33+
"Dedicated support via a private slack channel"
3434
],
3535
buttonTitle: "Get In Touch",
3636
href: "https://dub.sh/devdocs"
@@ -47,12 +47,12 @@ const PricingCards = () => {
4747

4848
>
4949
<div
50-
className={isMobile ? "font-extrabold text-[2rem] max-w-[24rem] text-center font-pixel" : "font-extrabold text-[3rem] max-w-[24rem] text-center font-pixel"}
50+
className={isMobile ? "font-extrabold text-[2rem] text-center font-pixel" : "font-extrabold text-[3rem] text-center font-pixel"}
5151
style={{
5252
fontFeatureSettings: "'liga' off, 'clig' off",
5353
}}
5454
>
55-
Plans
55+
Start using Dev-Docs for free or get in touch to learn more
5656
</div>
5757

5858
<div className={`${isMobile ? 'flex flex-col' : 'flex flex-row'} gap-[1em]`} style={{ alignItems: "stretch", background: "transparent" }}>

0 commit comments

Comments
 (0)