Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
e242211
fix: always use AlertTriangle, not alertCircle
Danziger Mar 20, 2026
cc15963
fix: fix build
Danziger Mar 20, 2026
f049956
Merge branch 'develop' into feat/173-alert-triangle-not-circle
Danziger Mar 30, 2026
f0ab6b0
fix: replace remaining AlertCircle except for the one in TradeButton
Danziger Mar 30, 2026
6ad1e07
fix: rename alert-circle.svg to filled-info-circle.svg
Danziger Mar 30, 2026
5c2f126
Merge branch 'develop' into feat/173-alert-triangle-not-circle
Danziger Mar 30, 2026
ef163e0
chore: rename some SVG icon assets
Danziger Mar 30, 2026
d5b8b52
feat: add rule to enforce consistent naming for SVG asset imports
Danziger Mar 30, 2026
9b9bc1d
Merge branch 'develop' into feat/173-svg-import-naming
Danziger Apr 17, 2026
1931223
Merge branch 'develop' into feat/173-svg-import-naming
Danziger May 1, 2026
64e7567
fix: update codemod
Danziger May 1, 2026
544db11
fix: update codemod
Danziger May 1, 2026
c64eb18
fix: fix codemod
Danziger May 1, 2026
aba97df
fix: undo debugging change
Danziger May 1, 2026
6b44d05
fix: update codemod
Danziger May 1, 2026
0e35c94
fix: run codemod and manually fix some imports
Danziger May 1, 2026
4bdd8e5
fix: fix incorrectly updated copy
Danziger May 3, 2026
b2e70b7
Merge branch 'develop' into feat/173-svg-import-naming
Danziger May 4, 2026
c445960
Merge branch 'develop' into feat/173-svg-import-naming
Danziger May 6, 2026
f6d5d13
Merge branch 'develop' into feat/173-svg-import-naming
Danziger May 7, 2026
2e98018
chore: merge develop and resolve conflicts
Danziger May 8, 2026
bcc4bd5
chore: merge develop and resolve conflicts
Danziger May 18, 2026
6269264
Merge branch 'develop' into feat/173-svg-import-naming
Danziger May 18, 2026
5afd7dd
Merge branch 'develop' into feat/173-svg-import-naming
Danziger May 18, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions apps/cow-fi/app/(main)/affiliate-program/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
import type { ReactNode } from 'react'

import { useCowAnalytics } from '@cowprotocol/analytics'
import IMG_ICON_COW_LENS from '@cowprotocol/assets/images/icon-cow-lens.svg'
import IMG_ICON_FAQ from '@cowprotocol/assets/images/icon-faq.svg'
import IMG_COWSWAP_HERO from '@cowprotocol/assets/images/image-affiliate-hero.svg'
import iconCowLensSrc from '@cowprotocol/assets/images/icon-cow-lens.svg'
import iconFaqSrc from '@cowprotocol/assets/images/icon-faq.svg'
import svgAffiliateHeroSrc from '@cowprotocol/assets/images/image-affiliate-hero.svg'
import { Media, ProductLogo, ProductVariant, UI } from '@cowprotocol/ui'

import { CowFiCategory } from 'src/common/analytics/types'
Expand Down Expand Up @@ -91,7 +91,7 @@ function AffiliateHero({ sendEvent }: { sendEvent: SendEvent }): ReactNode {
color={`var(${UI.COLOR_BLUE_900_PRIMARY})`}
marginMobile="24px auto 56px"
>
<LazySVG src={IMG_COWSWAP_HERO} />
<LazySVG src={svgAffiliateHeroSrc} />
</HeroImage>
</HeroContainer>
)
Expand All @@ -106,7 +106,7 @@ function HowItWorksSection(): ReactNode {
<ContainerCardSection gap={64}>
<SectionTitleWrapper color={`var(${UI.COLOR_NEUTRAL_100})`} margin="0 auto" gap={64}>
<SectionTitleIcon $multiple $size={110}>
<LazySVG src={IMG_ICON_COW_LENS} style={{ filter: 'brightness(0) saturate(100%) invert(100%)' }} />
<LazySVG src={iconCowLensSrc} style={{ filter: 'brightness(0) saturate(100%) invert(100%)' }} />
</SectionTitleIcon>
<SectionTitleText>The more you moo, the more you earn</SectionTitleText>
<SectionTitleDescription color={`var(${UI.COLOR_NEUTRAL_70})`} fontSize={30} maxWidth={760}>
Expand Down Expand Up @@ -195,7 +195,7 @@ function AffiliateFaqSection({ sendEvent }: { sendEvent: SendEvent }): ReactNode
<ContainerCardSection padding="0">
<SectionTitleWrapper margin="6rem auto 0">
<SectionTitleIcon $size={62}>
<LazySVG src={IMG_ICON_FAQ} />
<LazySVG src={iconFaqSrc} />
</SectionTitleIcon>
<SectionTitleText>FAQs</SectionTitleText>
</SectionTitleWrapper>
Expand Down
32 changes: 16 additions & 16 deletions apps/cow-fi/app/(main)/cow-amm/page.tsx
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
'use client'

import { useCowAnalytics } from '@cowprotocol/analytics'
import IMG_ICON_BULB_COW from '@cowprotocol/assets/images/icon-bulb-cow.svg'
import IMG_ICON_CROWN_COW from '@cowprotocol/assets/images/icon-crown-cow.svg'
import IMG_ICON_FAQ from '@cowprotocol/assets/images/icon-faq.svg'
import IMG_COWAMM_HERO from '@cowprotocol/assets/images/image-cowamm-hero.svg'
import IMG_COWAMM_PASSIVE from '@cowprotocol/assets/images/image-cowamm-passive.svg'
import IMG_COWAMM_RAISING from '@cowprotocol/assets/images/image-cowamm-raising.svg'
import IMG_COWAMM_REKT from '@cowprotocol/assets/images/image-cowamm-rekt.svg'
import iconBulbCowSrc from '@cowprotocol/assets/images/icon-bulb-cow.svg'
import iconCrownCowSrc from '@cowprotocol/assets/images/icon-crown-cow.svg'
import iconFaqSrc from '@cowprotocol/assets/images/icon-faq.svg'
import svgCowammHeroSrc from '@cowprotocol/assets/images/image-cowamm-hero.svg'
import svgCowammPassiveSrc from '@cowprotocol/assets/images/image-cowamm-passive.svg'
import svgCowammRaisingSrc from '@cowprotocol/assets/images/image-cowamm-raising.svg'
import svgCowammRektSrc from '@cowprotocol/assets/images/image-cowamm-rekt.svg'
import { Color, ProductLogo, ProductVariant, UI } from '@cowprotocol/ui'

import { CowFiCategory } from 'src/common/analytics/types'
Expand Down Expand Up @@ -71,7 +71,7 @@ export default function Page() {
</Link>
</HeroContent>
<HeroImage width={470} height={470} color={Color.cowamm_dark_green} marginMobile="24px auto 56px">
<LazySVG src={IMG_COWAMM_HERO} />
<LazySVG src={svgCowammHeroSrc} />
</HeroImage>
</HeroContainer>

Expand Down Expand Up @@ -114,7 +114,7 @@ export default function Page() {
<ContainerCardSection>
<SectionTitleWrapper color={`var(${UI.COLOR_NEUTRAL_100})`} maxWidth={1100} gap={56}>
<SectionTitleIcon $size={98}>
<LazySVG src={IMG_ICON_CROWN_COW} />
<LazySVG src={iconCrownCowSrc} />
</SectionTitleIcon>
<SectionTitleText>AMMs don&apos;t want you to know about LVR</SectionTitleText>
</SectionTitleWrapper>
Expand Down Expand Up @@ -165,7 +165,7 @@ export default function Page() {
color={`var(${UI.COLOR_NEUTRAL_10})`}
>
<SectionTitleIcon $size={128}>
<LazySVG src={IMG_ICON_BULB_COW} />
<LazySVG src={iconBulbCowSrc} />
</SectionTitleIcon>
<SectionTitleText textAlign="center">Finally, an AMM designed with LPs in mind</SectionTitleText>
<SectionTitleDescription textAlign="center">
Expand Down Expand Up @@ -210,7 +210,7 @@ export default function Page() {
<ContainerCardSection>
<SectionTitleWrapper color={`var(${UI.COLOR_NEUTRAL_10})`} maxWidth={1100} gap={56}>
<SectionTitleIcon $size={98}>
<LazySVG src={IMG_ICON_CROWN_COW} />
<LazySVG src={iconCrownCowSrc} />
</SectionTitleIcon>
<SectionTitleText>
Raising the <s>bar</s> curve
Expand Down Expand Up @@ -246,7 +246,7 @@ export default function Page() {
orderReverseTablet
borderRadius={32}
>
<LazySVG src={IMG_COWAMM_RAISING} />
<LazySVG src={svgCowammRaisingSrc} />
</TopicImage>
</TopicCard>
</TopicList>
Expand All @@ -257,7 +257,7 @@ export default function Page() {
<ContainerCardSection>
<SectionTitleWrapper color={`var(${UI.COLOR_NEUTRAL_10})`} maxWidth={1100} gap={56}>
<SectionTitleIcon $size={128}>
<LazySVG src={IMG_ICON_BULB_COW} />
<LazySVG src={iconBulbCowSrc} />
</SectionTitleIcon>
<SectionTitleText>CoW AMM benefits LPs of all types</SectionTitleText>
</SectionTitleWrapper>
Expand All @@ -281,7 +281,7 @@ export default function Page() {
orderReverseTablet
borderRadius={32}
>
<LazySVG src={IMG_COWAMM_REKT} />
<LazySVG src={svgCowammRektSrc} />
</TopicImage>
<TopicCardInner contentAlign="left">
<TopicTitle fontSize={52}>Provide liquidity for your token without getting rekt</TopicTitle>
Expand Down Expand Up @@ -320,7 +320,7 @@ export default function Page() {
orderReverseTablet
borderRadius={32}
>
<LazySVG src={IMG_COWAMM_PASSIVE} />
<LazySVG src={svgCowammPassiveSrc} />
</TopicImage>
</TopicCard>
</TopicList>
Expand Down Expand Up @@ -362,7 +362,7 @@ export default function Page() {
<ContainerCardSection padding={'0 0 100px'}>
<SectionTitleWrapper>
<SectionTitleIcon $size={62}>
<LazySVG src={IMG_ICON_FAQ} />
<LazySVG src={iconFaqSrc} />
</SectionTitleIcon>
<SectionTitleText>FAQs</SectionTitleText>
</SectionTitleWrapper>
Expand Down
64 changes: 32 additions & 32 deletions apps/cow-fi/app/(main)/cow-protocol/page.tsx
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
'use client'

import IMG_ICON_BUILD_WITH_COW from '@cowprotocol/assets/images/icon-build-with-cow.svg'
import IMG_ICON_BULB_COW from '@cowprotocol/assets/images/icon-bulb-cow.svg'
import IMG_COW_LENS from '@cowprotocol/assets/images/icon-cow-lens.svg'
import IMG_ICON_CROWN_COW from '@cowprotocol/assets/images/icon-crown-cow.svg'
import IMG_ICON_FAQ from '@cowprotocol/assets/images/icon-faq.svg'
import IMG_ICON_GHOST from '@cowprotocol/assets/images/icon-ghost.svg'
import IMG_LOGO_CURVE from '@cowprotocol/assets/images/icon-logo-curve.svg'
import IMG_LOGO_LIDO from '@cowprotocol/assets/images/icon-logo-lido.svg'
import IMG_LOGO_SAFE from '@cowprotocol/assets/images/icon-logo-safe.svg'
import IMG_ICON_OWL from '@cowprotocol/assets/images/icon-owl.svg'
import IMG_ICON_SECURE from '@cowprotocol/assets/images/icon-secure.svg'
import IMG_BATCHAUCTIONS from '@cowprotocol/assets/images/image-batchauctions.svg'
import IMG_COW_BITS from '@cowprotocol/assets/images/image-cow-bits.svg'
import IMG_INTENTS from '@cowprotocol/assets/images/image-intents.svg'
import IMG_LEADING from '@cowprotocol/assets/images/image-leading.svg'
import IMG_SOLVERS from '@cowprotocol/assets/images/image-solvers.svg'
import iconBuildWithCowSrc from '@cowprotocol/assets/images/icon-build-with-cow.svg'
import iconBulbCowSrc from '@cowprotocol/assets/images/icon-bulb-cow.svg'
import iconCowLensSrc from '@cowprotocol/assets/images/icon-cow-lens.svg'
import iconCrownCowSrc from '@cowprotocol/assets/images/icon-crown-cow.svg'
import iconFaqSrc from '@cowprotocol/assets/images/icon-faq.svg'
import iconGhostSrc from '@cowprotocol/assets/images/icon-ghost.svg'
import iconCurveSrc from '@cowprotocol/assets/images/icon-logo-curve.svg'
import iconLidoSrc from '@cowprotocol/assets/images/icon-logo-lido.svg'
import iconSafeSrc from '@cowprotocol/assets/images/icon-logo-safe.svg'
import iconOwlSrc from '@cowprotocol/assets/images/icon-owl.svg'
import iconSecureSrc from '@cowprotocol/assets/images/icon-secure.svg'
import svgBatchauctionsSrc from '@cowprotocol/assets/images/image-batchauctions.svg'
import svgCowBitsSrc from '@cowprotocol/assets/images/image-cow-bits.svg'
import svgIntentsSrc from '@cowprotocol/assets/images/image-intents.svg'
import svgLeadingSrc from '@cowprotocol/assets/images/image-leading.svg'
import svgSolversSrc from '@cowprotocol/assets/images/image-solvers.svg'
import { Color, ProductLogo, ProductVariant, UI } from '@cowprotocol/ui'

import { CowFiCategory, toCowFiGtmEvent } from 'src/common/analytics/types'
Expand Down Expand Up @@ -85,7 +85,7 @@ export default function Page() {
</Link>
</HeroContent>
<HeroImage width={470} height={470} color={Color.cowfi_purple3}>
<LazySVG src={IMG_COW_BITS} />
<LazySVG src={svgCowBitsSrc} />
</HeroImage>
</HeroContainer>

Expand Down Expand Up @@ -126,7 +126,7 @@ export default function Page() {
<ContainerCardSection>
<SectionTitleWrapper color={`var(${UI.COLOR_NEUTRAL_0})`} maxWidth={700} gap={56}>
<SectionTitleIcon $size={82}>
<LazySVG src={IMG_ICON_CROWN_COW} />
<LazySVG src={iconCrownCowSrc} />
</SectionTitleIcon>
<SectionTitleText>The leading intents-based DEX aggregation protocol</SectionTitleText>
<SectionTitleDescription maxWidth={900} color={`var(${UI.COLOR_NEUTRAL_50})`}>
Expand All @@ -135,7 +135,7 @@ export default function Page() {
</SectionTitleDescription>
</SectionTitleWrapper>
<SectionImage>
<LazySVG src={IMG_LEADING} />
<LazySVG src={svgLeadingSrc} />
</SectionImage>
</ContainerCardSection>
</ContainerCard>
Expand All @@ -144,7 +144,7 @@ export default function Page() {
<ContainerCardSection>
<SectionTitleWrapper>
<SectionTitleIcon $size={132}>
<LazySVG src={IMG_COW_LENS} />
<LazySVG src={iconCowLensSrc} />
</SectionTitleIcon>
<SectionTitleText>How it works</SectionTitleText>
<SectionTitleDescription maxWidth={900} color={`var(${UI.COLOR_NEUTRAL_50})`}>
Expand Down Expand Up @@ -185,7 +185,7 @@ export default function Page() {
orderReverseTablet
borderRadius={90}
>
<LazySVG src={IMG_INTENTS} />
<LazySVG src={svgIntentsSrc} />
</TopicImage>
</TopicCard>

Expand All @@ -200,7 +200,7 @@ export default function Page() {
orderReverseTablet
borderRadius={90}
>
<LazySVG src={IMG_SOLVERS} />
<LazySVG src={svgSolversSrc} />
</TopicImage>
<TopicCardInner contentAlign="left">
<TopicTitle fontSize={51}>Solvers</TopicTitle>
Expand Down Expand Up @@ -257,7 +257,7 @@ export default function Page() {
orderReverseMobile
borderRadius={90}
>
<LazySVG src={IMG_BATCHAUCTIONS} />
<LazySVG src={svgBatchauctionsSrc} />
</TopicImage>
</TopicCard>
</TopicList>
Expand Down Expand Up @@ -344,7 +344,7 @@ export default function Page() {
<ContainerCardSection>
<SectionTitleWrapper maxWidth={878} color={`var(${UI.COLOR_NEUTRAL_10})`}>
<SectionTitleIcon $size={128}>
<LazySVG src={IMG_ICON_BULB_COW} />
<LazySVG src={iconBulbCowSrc} />
</SectionTitleIcon>
<SectionTitleText textAlign="center">Powering innovation across DeFi</SectionTitleText>
</SectionTitleWrapper>
Expand All @@ -358,7 +358,7 @@ export default function Page() {
asProp="div"
>
<TopicImage iconColor={Color.cowfi_purple1} bgColor="transparent" height={96} width={'auto'}>
<LazySVG src={IMG_LOGO_CURVE} />
<LazySVG src={iconCurveSrc} />
</TopicImage>
<TopicCardInner contentAlign="left">
<TopicTitle color={`var(${UI.COLOR_NEUTRAL_100})`}>Automating advanced treasury tasks</TopicTitle>
Expand All @@ -378,7 +378,7 @@ export default function Page() {
asProp="div"
>
<TopicImage iconColor={Color.cowfi_purple1} bgColor="transparent" height={96} width={'auto'}>
<LazySVG src={IMG_LOGO_LIDO} />
<LazySVG src={iconLidoSrc} />
</TopicImage>
<TopicCardInner contentAlign="left">
<TopicTitle color={`var(${UI.COLOR_NEUTRAL_100})`}>
Expand All @@ -401,7 +401,7 @@ export default function Page() {
asProp="div"
>
<TopicImage iconColor={Color.cowfi_purple1} bgColor="transparent" height={96} width={'auto'}>
<LazySVG src={IMG_LOGO_SAFE} />
<LazySVG src={iconSafeSrc} />
</TopicImage>
<TopicCardInner contentAlign="left">
<TopicTitle color={`var(${UI.COLOR_NEUTRAL_100})`}>Powering native swaps</TopicTitle>
Expand All @@ -420,9 +420,9 @@ export default function Page() {
<ContainerCardSection>
<SectionTitleWrapper padding="150px 0 0">
<SectionTitleIcon $multiple $size={60}>
<LazySVG src={IMG_ICON_OWL} />
<LazySVG src={iconOwlSrc} />
<ProductLogo variant={ProductVariant.CowProtocol} theme="dark" logoIconOnly height={60} />
<LazySVG src={IMG_ICON_GHOST} />
<LazySVG src={iconGhostSrc} />
</SectionTitleIcon>
<SectionTitleText>Trusted by the best</SectionTitleText>
</SectionTitleWrapper>
Expand Down Expand Up @@ -522,7 +522,7 @@ export default function Page() {
<ContainerCardSection>
<SectionTitleWrapper color={`var(${UI.COLOR_NEUTRAL_10})`} maxWidth={1100}>
<SectionTitleIcon $size={78}>
<LazySVG src={IMG_ICON_BUILD_WITH_COW} />
<LazySVG src={iconBuildWithCowSrc} />
</SectionTitleIcon>
<SectionTitleText>Build with CoW Protocol</SectionTitleText>
</SectionTitleWrapper>
Expand Down Expand Up @@ -578,7 +578,7 @@ export default function Page() {
<ContainerCardSection>
<SectionTitleWrapper maxWidth={1000}>
<SectionTitleIcon $size={100}>
<LazySVG src={IMG_ICON_SECURE} />
<LazySVG src={iconSecureSrc} />
</SectionTitleIcon>
<SectionTitleText textAlign="center">Want to build a solver?</SectionTitleText>
<SectionTitleDescription fontSize={28} color={`var(${UI.COLOR_NEUTRAL_30})`}>
Expand Down Expand Up @@ -616,7 +616,7 @@ export default function Page() {
<ContainerCardSection>
<SectionTitleWrapper>
<SectionTitleIcon $size={62}>
<LazySVG src={IMG_ICON_FAQ} />
<LazySVG src={iconFaqSrc} />
</SectionTitleIcon>
<SectionTitleText>FAQs</SectionTitleText>
</SectionTitleWrapper>
Expand Down
22 changes: 11 additions & 11 deletions apps/cow-fi/app/(main)/cow-swap/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ import type { ReactNode } from 'react'
import { useEffect, useRef } from 'react'

import { useCowAnalytics } from '@cowprotocol/analytics'
import ICON_BULB from '@cowprotocol/assets/images/icon-bulb-cow.svg'
import IMG_ICON_FAQ from '@cowprotocol/assets/images/icon-faq.svg'
import IMG_ICON_FLOWER_COW from '@cowprotocol/assets/images/icon-flower-cow.svg'
import IMG_ICON_UNICORN from '@cowprotocol/assets/images/icon-unicorn.svg'
import IMG_COWSWAP_HERO from '@cowprotocol/assets/images/image-cowswap-hero.svg'
import iconBulbCowSrc from '@cowprotocol/assets/images/icon-bulb-cow.svg'
import iconFaqSrc from '@cowprotocol/assets/images/icon-faq.svg'
import iconFlowerCowSrc from '@cowprotocol/assets/images/icon-flower-cow.svg'
import iconUnicornSrc from '@cowprotocol/assets/images/icon-unicorn.svg'
import svgCowswapHeroSrc from '@cowprotocol/assets/images/image-cowswap-hero.svg'
import { Color, ProductLogo, ProductVariant, UI } from '@cowprotocol/ui'

import { CowFiCategory } from 'src/common/analytics/types'
Expand Down Expand Up @@ -100,7 +100,7 @@ export default function Page(): ReactNode {
</Link>
</HeroContent>
<HeroImage width={470} height={470} color={`var(${UI.COLOR_BLUE_900_PRIMARY})`} marginMobile="24px auto 56px">
<LazySVG src={IMG_COWSWAP_HERO} />
<LazySVG src={svgCowswapHeroSrc} />
</HeroImage>
</HeroContainer>

Expand Down Expand Up @@ -147,9 +147,9 @@ export default function Page(): ReactNode {
<ContainerCardSection gap={90}>
<SectionTitleWrapper color={`var(${UI.COLOR_NEUTRAL_10})`} maxWidth={1100} gap={56}>
<SectionTitleIcon $multiple $size={82}>
<LazySVG src={IMG_ICON_UNICORN} />
<LazySVG src={iconUnicornSrc} />
<ProductLogo variant={ProductVariant.CowProtocol} theme="dark" logoIconOnly />
<LazySVG src={IMG_ICON_UNICORN} className="image-reverse" />
<LazySVG src={iconUnicornSrc} className="image-reverse" />
</SectionTitleIcon>

<SectionTitleText>CoW Swap is different</SectionTitleText>
Expand Down Expand Up @@ -186,7 +186,7 @@ export default function Page(): ReactNode {
<ContainerCardSection>
<SectionTitleWrapper maxWidth={800}>
<SectionTitleIcon $size={126}>
<LazySVG src={ICON_BULB} />
<LazySVG src={iconBulbCowSrc} />
</SectionTitleIcon>
<SectionTitleText>CoW Swap is the first user interface built on top of CoW Protocol</SectionTitleText>
<SectionTitleDescription color={`var(${UI.COLOR_NEUTRAL_50})`}>
Expand Down Expand Up @@ -215,7 +215,7 @@ export default function Page(): ReactNode {
<ContainerCardSection>
<SectionTitleWrapper padding="150px 0 0" maxWidth={900}>
<SectionTitleIcon $size={140}>
<LazySVG src={IMG_ICON_FLOWER_COW} />
<LazySVG src={iconFlowerCowSrc} />
</SectionTitleIcon>
<SectionTitleText>S-moooo-th trading</SectionTitleText>
<SectionTitleDescription color={`var(${UI.COLOR_NEUTRAL_60})`}>
Expand Down Expand Up @@ -397,7 +397,7 @@ export default function Page(): ReactNode {
<ContainerCardSection>
<SectionTitleWrapper>
<SectionTitleIcon $size={62}>
<LazySVG src={IMG_ICON_FAQ} />
<LazySVG src={iconFaqSrc} />
</SectionTitleIcon>
<SectionTitleText>FAQs</SectionTitleText>
</SectionTitleWrapper>
Expand Down
Loading
Loading