@@ -2,7 +2,6 @@ import { Fragment, lazy, Suspense } from "react"
2
2
import type { GetStaticProps , InferGetStaticPropsType } from "next"
3
3
import { serverSideTranslations } from "next-i18next/serverSideTranslations"
4
4
import { FaDiscord , FaGithub } from "react-icons/fa6"
5
- import { MdChevronRight } from "react-icons/md"
6
5
7
6
import type {
8
7
AllMetricData ,
@@ -13,6 +12,7 @@ import type {
13
12
} from "@/lib/types"
14
13
15
14
import SvgButtonLink from "@/components/Buttons/SvgButtonLink"
15
+ import { ChevronNext } from "@/components/Chevron"
16
16
import CodeModal from "@/components/CodeModal"
17
17
import HomeHero from "@/components/Hero/HomeHero"
18
18
import BentoCard from "@/components/Homepage/BentoCard"
@@ -189,7 +189,7 @@ const HomePage = ({
189
189
/>
190
190
< TranslatathonBanner pathname = { asPath } />
191
191
< HomeHero heroImg = { Hero } className = "w-full" />
192
- < div className = "w-full space-y-32 lg:space-y-48" >
192
+ < div className = "w-full space-y-32 px-4 md:mx-6 lg:space-y-48" >
193
193
< div className = "my-20 grid w-full grid-cols-2 gap-x-4 gap-y-8 md:grid-cols-4 md:gap-x-10" >
194
194
{ subHeroCTAs . map ( ( { label, description, href, className, Svg } ) => (
195
195
< Fragment key = { label } >
@@ -329,7 +329,7 @@ const HomePage = ({
329
329
< div className = "flex justify-center py-8 md:justify-start" >
330
330
< ButtonLink href = "/learn/" size = "lg" variant = "outline" >
331
331
{ t ( "page-index:page-index-popular-topics-action" ) } { " " }
332
- < MdChevronRight />
332
+ < ChevronNext />
333
333
</ ButtonLink >
334
334
</ div >
335
335
</ div >
@@ -356,7 +356,7 @@ const HomePage = ({
356
356
< div className = "flex flex-wrap gap-6 py-8" >
357
357
< ButtonLink href = "/developers/" size = "lg" className = "w-fit" >
358
358
{ t ( "page-index:page-index-builders-action-primary" ) } { " " }
359
- < MdChevronRight />
359
+ < ChevronNext />
360
360
</ ButtonLink >
361
361
< ButtonLink
362
362
href = "/developers/docs/"
@@ -430,7 +430,7 @@ const HomePage = ({
430
430
</ div >
431
431
< div className = "flex flex-wrap gap-3 py-8" >
432
432
< ButtonLink href = "/community/" size = "lg" >
433
- { t ( "page-index:page-index-community-action" ) } < MdChevronRight />
433
+ { t ( "page-index:page-index-community-action" ) } < ChevronNext />
434
434
</ ButtonLink >
435
435
< div className = "flex gap-3" >
436
436
< ButtonLink
@@ -623,7 +623,7 @@ const HomePage = ({
623
623
</ div >
624
624
< div className = "flex justify-center py-8 md:justify-start" >
625
625
< ButtonLink href = "/community/events/" size = "lg" className = "mx-auto" >
626
- { t ( "page-index:page-index-events-action" ) } < MdChevronRight />
626
+ { t ( "page-index:page-index-events-action" ) } < ChevronNext />
627
627
</ ButtonLink >
628
628
</ div >
629
629
</ Section >
0 commit comments