File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/components/Hero/HomeHero Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ import { ButtonLink } from "@/components/Buttons"
7
7
import { Image } from "@/components/Image"
8
8
import Morpher from "@/components/Morpher"
9
9
10
- export interface HomeHeroProps extends Pick < CommonHeroProps , "heroImg" > { }
10
+ export type HomeHeroProps = Pick < CommonHeroProps , "heroImg" >
11
11
12
12
const HomeHero = ( { heroImg } : HomeHeroProps ) => {
13
13
const { t } = useTranslation ( "page-index" )
@@ -37,7 +37,7 @@ const HomeHero = ({ heroImg }: HomeHeroProps) => {
37
37
{ t ( "page-index:page-index-title" ) }
38
38
</ Heading >
39
39
< Text size = "xl" > { t ( "page-index:page-index-description" ) } </ Text >
40
- < ButtonLink to = "/learn/" >
40
+ < ButtonLink href = "/learn/" >
41
41
{ t ( "page-index:page-index-title-button" ) }
42
42
</ ButtonLink >
43
43
</ VStack >
You can’t perform that action at this time.
0 commit comments