fix: make icons no longer rounded on pricing hero card
This commit is contained in:
parent
f3613f024b
commit
91f7b43028
1 changed files with 3 additions and 5 deletions
|
@ -48,17 +48,15 @@ const HeroCards = () => {
|
||||||
features: [
|
features: [
|
||||||
{
|
{
|
||||||
title: "Unlimited Projects",
|
title: "Unlimited Projects",
|
||||||
icons: <Infinity className="rounded-full" width={25} height={25} />
|
icons: <Infinity width={25} height={25} />
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Priority Support",
|
title: "Priority Support",
|
||||||
icons: (
|
icons: <ArchiveRestore width={25} height={25} />
|
||||||
<ArchiveRestore className="rounded-full" width={25} height={25} />
|
|
||||||
)
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Free Updates",
|
title: "Free Updates",
|
||||||
icons: <Headset className="rounded-full" width={25} height={25} />
|
icons: <Headset width={25} height={25} />
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
curlyText: "Best Value!"
|
curlyText: "Best Value!"
|
||||||
|
|
Loading…
Reference in a new issue