@@ -14,7 +14,6 @@ import GetStartedGrid from "@/components/Homepage/GetStartedGrid"
1414import TrustLogos from "@/components/Homepage/TrustLogos"
1515import I18nProvider from "@/components/I18nProvider"
1616import MainArticle from "@/components/MainArticle"
17- import { TrackedSection } from "@/components/TrackedSection"
1817import { LinkWithArrow } from "@/components/ui/Link"
1918import { SectionHeader , SectionTag } from "@/components/ui/section"
2019
@@ -82,63 +81,48 @@ const Page = async (props: { params: Promise<PageParams> }) => {
8281 < HomeHero eventCategory = { eventCategory } />
8382
8483 < div className = "my-24 w-full space-y-24 px-4 md:mx-6 lg:my-32 lg:space-y-32" >
85- < TrackedSection id = "kpi" eventCategory = { eventCategory } >
86- < KPISection
87- accountHolders = { accountHolders }
88- transactionsToday = { transactionsToday }
89- className = "py-12"
90- />
91- </ TrackedSection >
92-
93- < TrackedSection id = "savings_carousel" eventCategory = { eventCategory } >
94- < SavingsCarousel
95- className = "py-12"
96- eventCategory = { eventCategory }
97- />
98- </ TrackedSection >
99-
100- < TrackedSection id = "trust_logos" eventCategory = { eventCategory } >
101- < TrustLogos className = "py-12" eventCategory = { eventCategory } />
102- </ TrackedSection >
103-
104- < TrackedSection id = "simulator" eventCategory = { eventCategory } >
105- < SimulatorSection
106- className = "py-12"
107- header = {
108- < div className = "flex flex-col items-center gap-4 text-center" >
109- < SectionTag variant = "plain" >
110- { t ( "page-index-simulator-tag" ) }
111- </ SectionTag >
112- < SectionHeader className = "mt-0 mb-0 leading-tight lg:text-6xl" >
113- { t ( "page-index-simulator-title" ) }
114- </ SectionHeader >
115- < p className = "text-lg text-body-medium md:text-xl" >
116- { t ( "page-index-simulator-subtitle" ) }
117- </ p >
118- </ div >
119- }
120- footer = {
121- < LinkWithArrow
122- href = "/guides/"
123- customEventOptions = { {
124- eventCategory,
125- eventAction : "section_click" ,
126- eventName : "simulator/explore_guides" ,
127- } }
128- >
129- { t ( "page-index-simulator-cta" ) }
130- </ LinkWithArrow >
131- }
132- />
133- </ TrackedSection >
134-
135- < TrackedSection id = "feature_cards" eventCategory = { eventCategory } >
136- < FeatureCards eventCategory = { eventCategory } />
137- </ TrackedSection >
138-
139- < TrackedSection id = "get_started" eventCategory = { eventCategory } >
140- < GetStartedGrid eventCategory = { eventCategory } />
141- </ TrackedSection >
84+ < KPISection
85+ accountHolders = { accountHolders }
86+ transactionsToday = { transactionsToday }
87+ className = "py-12"
88+ />
89+
90+ < SavingsCarousel className = "py-12" eventCategory = { eventCategory } />
91+
92+ < TrustLogos className = "py-12" eventCategory = { eventCategory } />
93+
94+ < SimulatorSection
95+ className = "py-12"
96+ header = {
97+ < div className = "flex flex-col items-center gap-4 text-center" >
98+ < SectionTag variant = "plain" >
99+ { t ( "page-index-simulator-tag" ) }
100+ </ SectionTag >
101+ < SectionHeader className = "mt-0 mb-0 leading-tight lg:text-6xl" >
102+ { t ( "page-index-simulator-title" ) }
103+ </ SectionHeader >
104+ < p className = "text-lg text-body-medium md:text-xl" >
105+ { t ( "page-index-simulator-subtitle" ) }
106+ </ p >
107+ </ div >
108+ }
109+ footer = {
110+ < LinkWithArrow
111+ href = "/guides/"
112+ customEventOptions = { {
113+ eventCategory,
114+ eventAction : "section_click" ,
115+ eventName : "simulator/explore_guides" ,
116+ } }
117+ >
118+ { t ( "page-index-simulator-cta" ) }
119+ </ LinkWithArrow >
120+ }
121+ />
122+
123+ < FeatureCards eventCategory = { eventCategory } />
124+
125+ < GetStartedGrid eventCategory = { eventCategory } />
142126 </ div >
143127 </ MainArticle >
144128 </ I18nProvider >
0 commit comments