aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/@next/components/aboutPageLayout.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'packages/website/ts/@next/components/aboutPageLayout.tsx')
-rw-r--r--packages/website/ts/@next/components/aboutPageLayout.tsx3
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/website/ts/@next/components/aboutPageLayout.tsx b/packages/website/ts/@next/components/aboutPageLayout.tsx
index 71cb7ef85..58ac2ff83 100644
--- a/packages/website/ts/@next/components/aboutPageLayout.tsx
+++ b/packages/website/ts/@next/components/aboutPageLayout.tsx
@@ -14,7 +14,7 @@ interface Props {
description: React.ReactNode | string;
linkLabel?: string;
linkUrl?: string;
- children?: Node;
+ children?: React.ReactNode;
}
export const AboutPageLayout = (props: Props) => (
@@ -41,6 +41,7 @@ export const AboutPageLayout = (props: Props) => (
<AnimatedLink
to={props.linkUrl}
isWithArrow={true}
+ isAccentColor={true}
>
{props.linkLabel}
</AnimatedLink>