Skip to content

Commit fcf4804

Browse files
feat: Removed the underlined from Need Help hyperlink and added a yelow colour to the Get in Touch hyperlink (#1054)
2 parents f0c0224 + 747bbf6 commit fcf4804

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

apps/web/layouts/OnboardLayout/OnboardLayout.tsx

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import dynamic from 'next/dynamic';
77
import { useQuery } from '@tanstack/react-query';
88

99
import { commonApi } from '@libs/api';
10-
import { API_KEYS, CONSTANTS, TEXTS } from '@config';
10+
import { API_KEYS, colors, CONSTANTS, TEXTS } from '@config';
1111
import { IErrorObject } from '@impler/shared';
1212
import DarkLogo from '@assets/images/logo-dark.png';
1313

@@ -53,12 +53,18 @@ export function OnboardLayout({ children }: OnboardLayoutProps) {
5353

5454
<Flex gap="xs" align="center">
5555
<Link href={CONSTANTS.IMPLER_DOCUMENTATION} passHref legacyBehavior>
56-
<Anchor component="a" fw={600} c="white" fz="sm">
56+
<Anchor underline={false} component="a" fw={600} c="white" fz="sm">
5757
Need Help ?
5858
</Anchor>
5959
</Link>
6060

61-
<Anchor href={CONSTANTS.IMPLER_CAL_QUICK_MEETING} fw={600} c="white" fz="sm">
61+
<Anchor
62+
underline={false}
63+
href={CONSTANTS.IMPLER_CAL_QUICK_MEETING}
64+
fw={600}
65+
c={colors.goldenYellow}
66+
fz="sm"
67+
>
6268
Get in Touch
6369
</Anchor>
6470
</Flex>

0 commit comments

Comments
 (0)