web: basic fixes

This commit is contained in:
Abdullah Atta
2026-07-23 13:18:26 +05:00
parent 1dcdef2abb
commit d51c8b5ddd
2 changed files with 18 additions and 32 deletions

View File

@@ -558,17 +558,6 @@ export function Footer() {
))}
</Flex>
</Flex>
<Button
variant="new_accent"
sx={{ alignSelf: "center", mt: "spacing2", mb: "spacing13" }}
onClick={() =>
document
.getElementById("select-plan")
?.scrollIntoView({ behavior: "smooth" })
}
>
Upgrade now
</Button>
</>
);
}
@@ -619,23 +608,24 @@ function RecurringPricing(props: PricingProps) {
}}
>
{getCurrencySymbol(plan.currency)}
{monthlyPrice}
{monthlyPrice}{" "}
{isZero ? (
""
) : (
<Text
as="span"
sx={{
fontSize: "md",
color: "paragraph-secondary",
fontWeight: 400
}}
>
{" "}
/Month
</Text>
)}
</Text>
{isZero ? (
""
) : (
<Text
as="span"
sx={{
fontSize: "md",
color: "paragraph-secondary",
fontWeight: 400
}}
>
{" "}
/ month
</Text>
)}
<Text
as="div"
sx={{ fontSize: "xxs", color: "paragraph-secondary", fontWeight: 400 }}

View File

@@ -120,11 +120,7 @@ function Plans() {
}}
>
Skip
<ChevronLeft
size={14}
sx={{ transform: "rotate(180deg)" }}
color="heading"
/>
<ChevronLeft size={14} color="heading" />
</Button>
<Flex
sx={{